mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
Clarify BASEPRI and NVIC interaction
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
This commit is contained in:
parent
60132495d9
commit
70ebcc409f
1 changed files with 4 additions and 2 deletions
|
@ -28,8 +28,10 @@ This implementation is covered in depth by Chapter 4.5 of this book.
|
||||||
|
|
||||||
## Source Masking
|
## Source Masking
|
||||||
|
|
||||||
Since there is no hardware support for a priority ceiling, RTIC must instead rely on the Nested
|
Without a `BASEPRI` register which allows for directly setting a priority ceiling in the Nested
|
||||||
Vectored Interrupt Controller (NVIC) present in the core architecture. Consider Figure 1 below,
|
Vectored Interrupt Controller (NVIC), RTIC must instead rely on disabling (masking) interrupts.
|
||||||
|
|
||||||
|
Consider Figure 1 below,
|
||||||
showing two tasks A and B where A has higher priority but shares a resource with B.
|
showing two tasks A and B where A has higher priority but shares a resource with B.
|
||||||
|
|
||||||
#### *Figure 1: Shared Resources and Source Masking*
|
#### *Figure 1: Shared Resources and Source Masking*
|
||||||
|
|
Loading…
Reference in a new issue