本文來源電子發(fā)燒友社區(qū),作者:華仔stm32, 帖子地址:https://bbs.elecfans.com/jishu_2293202_1_1.html
1、進(jìn)入helloworld目錄下面,看到有man.c,進(jìn)入查看:
/* FreeRTOS kernel includes. */
#include "FreeRTOS.h"
#include "semphr.h"
#include "task.h"
#include "ts_device.h"
#include "ts_hal_device.h"
#include "console.h"
這個開發(fā)板跑的是freeRTOS
helloworld初始化了4個任務(wù),分別是打印helloworld。
/**************************************************************************
FreeRTOS task init
*************************************************************************/
void vTestSysTick_0(void *parameters)
{
for (;;) {
if (xSemaphore != NULL) {
if (xSemaphoreTake(xSemaphore, 10) == pdTRUE) {
ts_tiny_printf("task0:hello world!n");
xSemaphoreGive(xSemaphore);
taskYIELD();
}
}
}
}
最后主函數(shù)開啟這四個任務(wù),分別打印taskN:helloworld.
-
時擎科技
+關(guān)注
關(guān)注
0文章
76瀏覽量
3290 -
開發(fā)板試用
+關(guān)注
關(guān)注
3文章
301瀏覽量
2111
發(fā)布評論請先 登錄
相關(guān)推薦
評論