-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix RTOS2 priority value mapping (#96)
- FreeRTOS handles priorities from 0 to configMAX_PRIORITIES-1 - RTOS2 defines priorities from 1(osPriorityIdle) to osPriorityISR(56) - Till now RTOS2 passed priorities 1:1 to FreeRTOS, i.e. FreeRTOS priority matched osPriority_t. This commit changes priority mapping: FreeRTOS priority is now (osPriority_t - 1).
- Loading branch information
1 parent
d0b0b50
commit 9cdbe17
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters