Files
morse_code_trainer/f103c8t6_keil/MDK-ARM/MYDEIVERS/mymain.c
T
kevin 41c3c361ca OLED 驱动
Signed-off-by: kevin <kevin@lmve.net>
2022-04-15 17:38:45 +08:00

31 lines
313 B
C

/*
* mymain.c
*
* Created on: 2022年4月15日
* Author: wuwen
*/
#include "mymain.h"
#include "hread_interface.h"
void mymain()
{
uint32_t run_tick=0;
OLED_Init();
while(1)
{
OLED_Cache_to_hardware();
if(HAL_GetTick()>run_tick)
{
run_tick+=500;
RUNLED_TICK();
}
}
}