aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-14Bump cortex-m-rt version to 0.7.3Ian McIntyre
The reset handler of 0.7.2 pushes four bytes onto the stack, resulting in a misaligned stack pointer once the next procedure (main) is called. Compilers are free to assume that the stack is eight byte aligned when optimizing code. We depend on this reset handler, so this affects imxrt-rt users. Take the approach recommended in the cortex-m-rt advisory and update to 0.7.3. I tested this by building and running the two examples in this repo on a 1010EVK. Also tested in imxrt-hal by building and running examples on a 1010EVK. cortex-m-rt 0.7.2 is yanked. Since imxrt-rt 0.1.0 fixes its cortex-m-rt version, it will no longer build. I have no plan to also yank imxrt-rt 0.1.0; the upstream yank already signals that something is broken.
2022-12-02Fix tag URLs in CHANGELOGIan McIntyre
2022-12-02Add CHANGELOG for release trackingIan McIntyre
2022-12-01Update to cmrt 0.7.2, and use new featuresIan McIntyre
No need for us to set VTOR and the stack pointer anymore.
2022-12-01Explicitly match family variants in host implIan McIntyre
Might help the next person who wants to add a new family. There's a way to defeat this lint when the enum is (Partial)Eq: use if / else to emulate a fallthrough. I can't find _another_ lint that would prevent that pattern, so I'll try to be vigilent here.
2022-12-01First commitIan McIntyre