⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 使用iccavr的例子
💻 C
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -