mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Made relation between priority and number explicit
When quickly reading through the priorities chapter, I couldn't find in which order the priorities were, so I assumed it was the same as in the hardware. In the cortex-m hardware, interrupts with the **lower** priority number will preempt the other interrupts. RTIC does the reverse, so I think it's good to be more explicit about it.
This commit is contained in:
parent
ee0885063d
commit
7a57f16860
1 changed files with 6 additions and 3 deletions
|
@ -119,10 +119,13 @@ The static priority of each handler can be declared in the `task` attribute
|
||||||
using the `priority` argument. Tasks can have priorities in the range `1..=(1 <<
|
using the `priority` argument. Tasks can have priorities in the range `1..=(1 <<
|
||||||
NVIC_PRIO_BITS)` where `NVIC_PRIO_BITS` is a constant defined in the `device`
|
NVIC_PRIO_BITS)` where `NVIC_PRIO_BITS` is a constant defined in the `device`
|
||||||
crate. When the `priority` argument is omitted, the priority is assumed to be
|
crate. When the `priority` argument is omitted, the priority is assumed to be
|
||||||
`1`. The `idle` task has a non-configurable static priority of `0`, the lowest
|
`1`. The `idle` task has a non-configurable static priority of `0`, the lowest priority.
|
||||||
priority.
|
|
||||||
|
|
||||||
When several tasks are ready to be executed the one with *highest* static
|
> A higher number means a higher priority in RTIC, which is the opposite from what
|
||||||
|
> Cortex-M does in the NVIC peripheral.
|
||||||
|
> Explicitly, this means that number `10` has a **higher** priority than number `9`.
|
||||||
|
|
||||||
|
When several tasks are ready to be executed the one with highest static
|
||||||
priority will be executed first. Task prioritization can be observed in the
|
priority will be executed first. Task prioritization can be observed in the
|
||||||
following scenario: an interrupt signal arrives during the execution of a low
|
following scenario: an interrupt signal arrives during the execution of a low
|
||||||
priority task; the signal puts the higher priority task in the pending state.
|
priority task; the signal puts the higher priority task in the pending state.
|
||||||
|
|
Loading…
Reference in a new issue