FreeRTOS task priority versus CMIS_RTOS v1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-01-03 3:12 PM
I'm using FreeRTOS v10.2.1, CMSIS RTOS v1
main.c (generated by CubeMX) has:
...
osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 128);
...
where osPriorityNormal is zero as defined in cmsis_os.h
I spawn all other tasks using the FreeRTOS xTaskCreate call where task priority is from 0..MAX_PRIORITIES-1. How does FreeRTOS task priority maps to CMSIS task priority if it maps at all? The reason i ask is that if i keep StartDefaultTask alive, how does it get scheduled against those tasks created with xTaskCreate?
Solved! Go to Solution.
- Labels:
-
FreeRTOS
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-01-04 11:51 AM
The cmsis->FreeRTOS priority map is done in cmsis_os.c, makeFreeRtosPriority().
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-01-04 1:39 AM
You may check the source code to find out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-01-04 11:51 AM
The cmsis->FreeRTOS priority map is done in cmsis_os.c, makeFreeRtosPriority().
