main.~c

来自「使用iccavr的例子」· ~C 代码 · 共 31 行

~C
31
字号
/* ATmega103 main.c file 

   Author : Robert Stuart 
   Company : PDL Industries 
   Date of Creation : 13 April 2000
   Tested : Not yet
 
   Function : 
   	Updates the LCD when not servicing interrupts.
*/

/* include */ 
#include "main.h"

int main( void )
{
  AVRInitialise();			/* initial all ports, registers and parameters */

  while ( TRUE )			/* forever */
  {
    GID;
    
    RefreshLCD();			/* update the lcd */

    GIE;
  }

  return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?