init: 项目初始化,添加基础文件

This commit is contained in:
2025-07-29 11:47:52 +08:00
commit 58bd311005
184 changed files with 55800 additions and 0 deletions

13
循迹/User/main.c Normal file
View File

@@ -0,0 +1,13 @@
#include "stm32f10x.h" // Device header
#include "Delay.h"
#include "Key.h"
int main(void)
{
Gpio_Init();
PWM_Init( 100-1,720-1,70);
while (1)
{
}
}