[황대근] C8051F330 Blinky.c 공부 중입니다. 근데 초보라서 지금 개념이 이해가 안갑니다. 도움 주실분 부탁드립니다.

ddaggen의 이미지

//-----------------------------------------------------------------------------
// Blinky.c
//-----------------------------------------------------------------------------
// Copyright (C) 2005 Silicon Laboratories, Inc.
//
// AUTH: HF
// DATE: 04 FEB 2003
//
// This program flashes the green LED on the C8051F33x target board about 
// five times a second using the interrupt handler for Timer2.
//
// Target: C8051F33x
//
// Tool chain: KEIL Eval 'c'
//
 
//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------
#include <c8051f330.h>                    // SFR declarations SFR선언을 포함?? 저처리기 지시자
 
//-----------------------------------------------------------------------------
// 16-bit SFR Definitions for 'F33x 
//-----------------------------------------------------------------------------
 
sfr16 TMR2RL   = 0xca;                    // Timer2 reload value TIMER/COUNTER 2 RELOAD LOW TMR2RLL holds the low byte of the reload value for timer2 PU 내부에 존재하는 16비트 기억 장소에 TMR2RL 이라는 변수에 0xca라는 값을 저장? *******여기의 의미는?
sfr16 TMR2     = 0xcc;                    // Timer2 counter TIMER/COUNTER 2 LOW  CPU 내부에 존재하는 16비트 기억 장소에 TMR2라는 변수에 0xcc라는 값을 저장?  *******여기의 의미는?
 
// 헤더 파일에 저장된 식별자  byte sbit
//-----------------------------------------------------------------------------
// Global CONSTANTS
//-----------------------------------------------------------------------------
 
#define SYSCLK       24500000 / 8     // SYSCLK frequency in Hz   => 시스템 클락을 24.5MHz로 설정한후 8로 나눈 3062500 3MHz???  24.5 mhz internal scillator  / 8
 
 
sbit LED = P1^3;   // LED='1' means ON sbit형태의  LED라는 이름의 변수로 메모리를 잡아두고  P1의 값과 3을 XOR해서 결과값을  LED에 저장 P1의 값이 3이면 LED꺼지고 나머지 상태에서는 켜진다. P1값은 0x90  PORT 1 LATCH *******여기의 의미는?
sbit SW2 = P0^7;   // sbit형태의  SW2라는 이름의 변수로 메모리를 잡아두고  P0 값과 7 XOR해서 결과값을 SW2에 저장P0 값이 7이면 SW2는 꺼지고 나머지 상태를 켜진다. P0 0x80  PORT 0 LATCH *******여기의 의미는?
sbit PW = P2^0;    // SW2='0' means switch pressed ?? sbit형태의 PW라는 이름의 변수로 메모리를 잡아두고  P2 값과 0 XOR해서 결과값을 SW2에 저장 P2 값이 0이면 PW는 꺼지고 나머지 상태일때는 켜진다. P2 0xA0 PORT 2 LATCH *******여기의 의미는?
 
//-----------------------------------------------------------------------------
// Function PROTOTYPES
//-----------------------------------------------------------------------------
void SYSCLK_Init (void);
void PORT_Init (void);
void Timer2_Init (int counts);
void Timer2_ISR (void);
 
//-----------------------------------------------------------------------------
// MAIN Routine
//-----------------------------------------------------------------------------
void main (void) {
 
   // disable watchdog timer
   PCA0MD &= ~0x40;                       // WDTE = 0 (clear watchdog timer enable) 0xD9  PCA MODE   PCA0MD= PCA0MD & 0x40  *******여기의 의미는?
 
 
 
   SYSCLK_Init ();                        // Initialize system clock to 
                                          // 24.5MHz
   PORT_Init ();                          // Initialize crossbar and GPIO
   Timer2_Init (SYSCLK / 12 / 1);        // Init Timer2 to generate => 이부분을 바꾸니까 되는데... 왜 되는지... 어떻게 되는지 잘모르겠다 ㅠ.ㅠ  
                                          // interrupts => 
 
   EA = 1;							      // enable global interrupts
 
   while (1) {                            // spin forever
   }
}
 
//-----------------------------------------------------------------------------
// SYSCLK_Init
//-----------------------------------------------------------------------------
//
// This routine initializes the system clock to use the internal 24.5MHz / 8 
// oscillator as its clock source.  Also enables missing clock detector reset.
//
void SYSCLK_Init (void)
{
 
   OSCICN = 0x80;                         // configure internal oscillator for sfr P0 = 0x80 PORT 0 LATCH 여기서 서스팬드 모드 진입?? 키 입력에 의해 깨어나면 ? *******여기의 의미는?
 
                                          // its lowest frequency
   RSTSRC = 0x04;                         // enable missing clock detector sfr RSTSRC  = 0xEF RESET SOURCE CONFIGURATION/STATUS  *******여기의 의미는?
}
 
//-----------------------------------------------------------------------------
// PORT_Init
//-----------------------------------------------------------------------------
//
// Configure the Crossbar and GPIO ports.
// P3.3 - LED (push-pull)
//
void PORT_Init (void)
{
 
   XBR0     = 0x00;                       // no digital peripherals selected sfr XBR0 = 0xE1 PORT I/O CROSSBAR CONTROL 0  *******여기의 의미는?
   XBR1     = 0x40;                       // Enable crossbar and weak pull-ups sfr XBR1 = 0xE2 PORT I/O CROSSBAR CONTROL 1 *******여기의 의미는?
   P1MDOUT |= 0x08;                       // enable LED as a push-pull output sfr P1MDOUT = 0xA5 PORT 1 OUTPUT MODE CONFIGURATION *******여기의 의미는?
}
 
//-----------------------------------------------------------------------------
// Timer2_Init
//-----------------------------------------------------------------------------
//
// Configure Timer2 to 16-bit auto-reload and generate an interrupt at 
// interval specified by <counts> using SYSCLK/48 as its time base.
//
void Timer2_Init (int counts)
{
   TMR2CN  = 0x00;                        // Stop Timer2; Clear TF2;
                                          // use SYSCLK/12 as timebase sfr TMR2CN        = 0xC8; TIMER/COUNTER 2 CONTROL sbit T2XCLK =     0xC8 ;   TIMER 2 EXTERNAL CLOCK SELECT *******여기의 의미는?
 
   CKCON  &= ~0x60;                       // Timer2 clocked based on T2XCLK  sfr CKCON         = 0x8E;  CLOCK CONTROL sbit TR1 =        0x8E TIMER 1 ON/OFF CONTROL *******여기의 의미는?
 
   TMR2RL  = -counts;                     // Init reload values
   TMR2    = 0xffff;                      // set to reload immediately
   ET2     = 1;                           // enable Timer2 interrupts
   TR2     = 1;                           // start Timer2
}
 
//-----------------------------------------------------------------------------
// Interrupt Service Routines
//-----------------------------------------------------------------------------
 
//-----------------------------------------------------------------------------
// Timer2_ISR
//-----------------------------------------------------------------------------
// This routine changes the state of the LED whenever Timer2 overflows.
//
void Timer2_ISR (void) interrupt 5            
{
   TF2H = 0;                              // clear Timer2 interrupt flag sbit TF2H =       0xCF ;   TIMER 2 HIGH BYTE OVERFLOW FLAG *******여기의 의미는?
 
   LED = ~LED;                          // 토클테스트? *******여기의 의미는?
   PW = ~PW;                           // change state of LED
}

요거입니다.

*******여기의 의미는? 이라고 쓴부위.. 도움이 필요합니다.

가자 쉬움 프로그램을 가지고 C8051을 이해하라고 해서 지금 공부하는데 제가 개념이 없어서....도움좀 주세용

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.