aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/tests/compile-fail/interrupt-twice.rs
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2021-01-21 02:39:12 +0000
committerGravatar Jonas Schievink <jonasschievink@gmail.com> 2021-01-21 13:18:26 +0100
commit4426f26ab0aed70ae2cc433f55ee48f62d7eb46b (patch)
tree57a88f00c50b1f9d22c368c22ef828b8bd1b7d26 /cortex-m-rt/tests/compile-fail/interrupt-twice.rs
parent0e82907ca384d10a7fb1f2b8cc70fdb58c0b2fcf (diff)
downloadcortex-m-4426f26ab0aed70ae2cc433f55ee48f62d7eb46b.tar.gz
cortex-m-4426f26ab0aed70ae2cc433f55ee48f62d7eb46b.tar.zst
cortex-m-4426f26ab0aed70ae2cc433f55ee48f62d7eb46b.zip
Update Reset-in-asm.
* Use arm-none-eabi-gcc to assemble, allowing use of preprocessor to conditionally enable the FPU for eabihf targets. * Remove has_fpu configuration from build.rs. * Remove FpuTrampoline as no longer required. * Remove the Rust Reset method entirely, since the asm Reset can now enable FPU and jump to user main.
Diffstat (limited to 'cortex-m-rt/tests/compile-fail/interrupt-twice.rs')
0 files changed, 0 insertions, 0 deletions
&follow=1'>Broke out async dispatchers into their own placeGravatar Emil Fresk 18-273/+426 2022-08-27RA fixesGravatar Emil Fresk 1-0/+3 2022-08-27Fix interrupt enum path in monotonicGravatar Emil Fresk 1-2/+2 2022-08-05Run tests on stableGravatar Emil Fresk 1-2/+2 2022-08-05Fix comment in exampleGravatar Emil Fresk 1-1/+1 2022-08-05Fix xtask for asyncGravatar Emil Fresk 8-18/+42 2022-08-05Fix UB in the access of `Priority` for asyc executorsGravatar Emil Fresk 5-15/+42 The `Priority` was generated on the stack in the dispatcher which caused it to be dropped after usage. This is now fixed by having the `Priority` being a static variable for executors 2022-08-05Fix codegen when having executor at multiple prioritiesGravatar Emil Fresk 4-20/+109 The codegen generated code for all executors in all dispatchers, which caused some weird bugs. Also the definition of an executor was not generated globally, this caused use after free errors when having multiple priority levels. 2022-08-03Revert async idleGravatar Emil Fresk 2-67/+4 2022-08-03async idle workingGravatar Emil Fresk 3-4/+121 2022-08-03Fix error based on retry queueGravatar Emil Fresk 3-10/+12 2022-08-03Fix styleGravatar Emil Fresk 2-1/+2