aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/examples/device.rs (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-11-04c-m-rt: mark Vector as repr(C)Gravatar Adam Greig 1-0/+1
2021-03-02Fix examples build for nightlyGravatar Adam Greig 1-0/+1
2018-09-18use panic-halt instead of panic-{abort,semihosting}Gravatar Jorge Aparicio 1-1/+1
the former requires a feature gate; the later pulls in the cortex-m crate
2018-08-31turn macros into attributesGravatar Jorge Aparicio 1-3/+2
2018-08-11v0.5.2Gravatar Jorge Aparicio 1-15/+1
2018-05-11add CI, add device specific check of the vector table size, ..Gravatar Jorge Aparicio 1-0/+50
- document the `main` symbol as an alternative to `entry!` - document `ResetTrampoline` - fix: `PendSV` is available on ARMv6-M - document that `entry!` and `exception!` must be called from accessible modules. - add a deny lint to `entry!` and `exception!` to prevent them from being invoked from inaccessible modules.