aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/examples/state.rs (follow)
AgeCommit message (Collapse)AuthorFilesLines
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-31fix soundness issue; change the syntax of the `exception` attributeGravatar Jorge Aparicio 1-2/+4
2018-08-31turn macros into attributesGravatar Jorge Aparicio 1-7/+5
2018-08-11v0.5.2Gravatar Jorge Aparicio 1-14/+0
2018-05-11add CI, add device specific check of the vector table size, ..Gravatar Jorge Aparicio 1-0/+38
- 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.