aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/examples/data_overflow.rs (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-07-21Run rustfmt to make CI happierGravatar Daniel Egger 1-2/+2
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
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-2/+2
2018-08-12remove exception handler overridesGravatar Jorge Aparicio 1-13/+1
they are not required anymore
2018-08-12Update linker script to put .data into FLASHGravatar Adam Greig 1-0/+42
Previously .data's LMA was specified by a computated address instead of placing it into FLASH explicitly, which means FLASH overflows caused by .data would not be detected by the linker. Fixes #86.