first commit

This commit is contained in:
liyp
2026-08-25 21:46:36 -04:00
commit 23ea3387df
15 changed files with 768 additions and 0 deletions
+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;
}