📄 main.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 + -