Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-07-21 | Run rustfmt to make CI happier | 1 | -2/+2 | ||
Signed-off-by: Daniel Egger <daniel@eggers-club.de> | |||||
2018-09-18 | use panic-halt instead of panic-{abort,semihosting} | 1 | -1/+1 | ||
the former requires a feature gate; the later pulls in the cortex-m crate | |||||
2018-08-31 | turn macros into attributes | 1 | -2/+2 | ||
2018-08-12 | remove exception handler overrides | 1 | -13/+1 | ||
they are not required anymore | |||||
2018-08-12 | Update linker script to put .data into FLASH | 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. |