mirror of
https://github.com/eggman/ameba-gcc-sample-rtos.git
synced 2025-02-16 17:15:21 +00:00
28 lines
450 B
C
28 lines
450 B
C
|
#include "cmsis_os.h"
|
||
|
|
||
|
osThreadId main_tid = 0;
|
||
|
|
||
|
void main_task(void const *arg)
|
||
|
{
|
||
|
int i=0;
|
||
|
|
||
|
while (1) {
|
||
|
DiagPrintf("Hello World : %d\r\n", i++);
|
||
|
HalDelayUs(1000000);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
osKernelInitialize();
|
||
|
|
||
|
DiagPrintf("Starting main task\n");
|
||
|
|
||
|
osThreadDef(main_task, osPriorityHigh, 1, 8152);
|
||
|
main_tid = osThreadCreate (osThread (main_task), NULL);
|
||
|
|
||
|
osKernelStart();
|
||
|
while(1);
|
||
|
return 0;
|
||
|
}
|