添加工程应用文件

This commit is contained in:
2026-07-05 13:20:02 +08:00
parent 47079ae36a
commit a9fc53c97b
6 changed files with 175 additions and 1 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
//
// Created by anonymous on 2026/5/24.
//
/* C标准库头文件 */
#include <stdio.h>
#include <stdint.h>
/* BSP文件 */
#include "main.h"
#include "Bsp.h"
int main(void) {
BspInit();
while (1) {
LedToggle(LED0);
DelayMs(100);
}
return 0;
}