共享一个STM32 的IAP工程
源码:
在线升级IAP功能.rar
- #include "mainInclude.h"
- int main(void)
- {
- NVIC_Group_Init();//系统默认中断分组
- Debug_Serial_Init(115200);
- Delay_Init();
- Led_Init();
- Command_Init(100);//100ms
- while(1)
- {
- CommandScan();//命令处理
- Led_Set(0,0);
- Delay_Ms(50);
- Led_Set(0,1);
- Delay_Ms(50);
- }
- }
|