»
(008) CubeIDE Implementation of USB Peripherals*
(018) C99 pointer*
(019) C99 With only value assignment*
(022) POSIX pthread multi-threads mutex*
(023) POSIX pthread multi-threads programming*
(027) C99 time and wait*
(028) High-precision calculation with GMP*
(029) Web Service Lib*
(030) International Components for Unicode (ICU)*
(031) Performance of C is higher than C++, because...*
🕹️(014) FreeRTOS common method of create tasks
嵌入式程序员FreeRTOS常用任务创建方式为:
main创建一个最高优先级的一次性任务,在这个一次性任务中,由低到高创建其他各任务。
最后,删除这个一次性任务。
TaskHandle_t hTaskCreation = xTaskGetHandle("task_creation");
vTaskDelete(hTaskCreation);