mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-08-23 09:23:39 +00:00
26 lines
369 B
C
26 lines
369 B
C
![]() |
/*
|
||
|
* ************************************************
|
||
|
*
|
||
|
* STM32 blink demo
|
||
|
*
|
||
|
* CPU: STM32F103C8
|
||
|
* PIN: PA1
|
||
|
*
|
||
|
* ************************************************
|
||
|
*/
|
||
|
|
||
|
#include "stm32f10x.h"
|
||
|
#include "bsp_usart.h"
|
||
|
#include "menu.h"
|
||
|
#include "SEGGER_RTT.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
USART_Config();
|
||
|
Menu_Init();
|
||
|
for(;;)
|
||
|
{
|
||
|
Menu_Task();
|
||
|
}
|
||
|
}
|