mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-25 08:12:30 +00:00
Merge pull request #2785 from barnabywalters/stm32-multiprio
[embassy-stm32] added comments explaining multiprio interrupts
This commit is contained in:
commit
a4eebdcc68
@ -126,6 +126,11 @@ fn main() -> ! {
|
||||
// Initialize and create handle for devicer peripherals
|
||||
let _p = embassy_stm32::init(Default::default());
|
||||
|
||||
// STM32s don’t have any interrupts exclusively for software use, but they can all be triggered by software as well as
|
||||
// by the peripheral, so we can just use any free interrupt vectors which aren’t used by the rest of your application.
|
||||
// In this case we’re using UART1 and UART2, but there’s nothing special about them. Any otherwise unused interrupt
|
||||
// vector would work exactly the same.
|
||||
|
||||
// High-priority executor: USART1, priority level 6
|
||||
interrupt::USART1.set_priority(Priority::P6);
|
||||
let spawner = EXECUTOR_HIGH.start(interrupt::USART1);
|
||||
|
@ -127,6 +127,11 @@ fn main() -> ! {
|
||||
|
||||
let _p = embassy_stm32::init(Default::default());
|
||||
|
||||
// STM32s don’t have any interrupts exclusively for software use, but they can all be triggered by software as well as
|
||||
// by the peripheral, so we can just use any free interrupt vectors which aren’t used by the rest of your application.
|
||||
// In this case we’re using UART4 and UART5, but there’s nothing special about them. Any otherwise unused interrupt
|
||||
// vector would work exactly the same.
|
||||
|
||||
// High-priority executor: UART4, priority level 6
|
||||
interrupt::UART4.set_priority(Priority::P6);
|
||||
let spawner = EXECUTOR_HIGH.start(interrupt::UART4);
|
||||
|
@ -127,6 +127,11 @@ fn main() -> ! {
|
||||
|
||||
let _p = embassy_stm32::init(Default::default());
|
||||
|
||||
// STM32s don’t have any interrupts exclusively for software use, but they can all be triggered by software as well as
|
||||
// by the peripheral, so we can just use any free interrupt vectors which aren’t used by the rest of your application.
|
||||
// In this case we’re using UART4 and UART5, but there’s nothing special about them. Any otherwise unused interrupt
|
||||
// vector would work exactly the same.
|
||||
|
||||
// High-priority executor: UART4, priority level 6
|
||||
interrupt::UART4.set_priority(Priority::P6);
|
||||
let spawner = EXECUTOR_HIGH.start(interrupt::UART4);
|
||||
|
@ -127,6 +127,11 @@ fn main() -> ! {
|
||||
|
||||
let _p = embassy_stm32::init(Default::default());
|
||||
|
||||
// STM32s don’t have any interrupts exclusively for software use, but they can all be triggered by software as well as
|
||||
// by the peripheral, so we can just use any free interrupt vectors which aren’t used by the rest of your application.
|
||||
// In this case we’re using UART4 and UART5, but there’s nothing special about them. Any otherwise unused interrupt
|
||||
// vector would work exactly the same.
|
||||
|
||||
// High-priority executor: UART4, priority level 6
|
||||
interrupt::UART4.set_priority(Priority::P6);
|
||||
let spawner = EXECUTOR_HIGH.start(interrupt::UART4);
|
||||
|
Loading…
Reference in New Issue
Block a user