编译成功

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