mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-26 05:29:38 +01:00
fix name of interrupt section
cortex-m-rt version 3.0 changed the name of the interrupts section to .vector_table.interrupts. Change cortex-m-rtfm accordingly.
This commit is contained in:
parent
2bf5401439
commit
d08926bb84
1 changed files with 1 additions and 1 deletions
|
@ -937,7 +937,7 @@ macro_rules! tasks {
|
|||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
#[link_section = ".rodata.interrupts"]
|
||||
#[link_section = ".vector_table.interrupts"]
|
||||
#[used]
|
||||
static INTERRUPTS: ::$device::interrupt::Handlers =
|
||||
::$device::interrupt::Handlers {
|
||||
|
|
Loading…
Reference in a new issue