23 lines
230 B
C
23 lines
230 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();
|
|
OLED_ShowStr(0,0,"test");
|
|
while(1)
|
|
{
|
|
|
|
|
|
|
|
}
|
|
}
|