first commit

This commit is contained in:
liyp
2026-08-25 21:50:12 -04:00
commit 800a6761a1
152 changed files with 21525 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
/* MCU INCLUDE */
#include "stm32f10x.h"
/* BSP INCLUDE */
#include "Bsp.h"
/* OPEN_SOURCE_LIB INCLUDE */
#include "LetterShell.h"
int main(void)
{
//bsp初始化
BspConfigInit();
//LetterShell初始化
LetterShellInit(TTY_COM,115200);
while (1){
IoCtlLedToggle(LED0);
DelayMs(100);
}
}