初始化仓库

This commit is contained in:
2025-08-31 21:37:24 +08:00
commit 7477a25070
45 changed files with 22852 additions and 0 deletions

18
Source/main.c Normal file
View File

@@ -0,0 +1,18 @@
#include "common.h"
#include "delay.h"
void main()
{
board_init(); // 初始化板子
delay_ms(1000);
printf("System Init...\r\n");
while(1)
{
delay_ms(1000);
printf("System Running...\r\n");
}
}