msp430-rt
msp430-rt copied to clipboard
Minimal startup / runtime for MSP430 microcontrollers
Per convo w/ @dragonmux: > [ELF] section headers are used specifically and only for linking and that kind of thing - they're there to allow compilers and manipulation tooling easier...
Many MSP430 have an info segment. In particular, the MSP430i20x1 has an info segment at address `0x1000` that is 1 KB in length. It would make sense to create a...
I currently have a branch of embassy that I am using successfully for an MSP430i2041-based project over here: https://github.com/vadixidav/embassy/tree/msp430. This issue is related to the note I left in this...
The docs don't build on doc.rs due to [this error](https://docs.rs/crate/msp430-rt/0.3.0/builds/499068)
The interrupt vector table for a generic application is [hardcoded](https://github.com/rust-embedded/msp430-rt/blob/master/src/lib.rs#L404-L414) to be 15 entries, which is not universal across all msp430 devices. With this complication, I'm not sure whether a...
Hello, I've been working on trying out Rust on the MSP430 Launchpad. I'm currently working through a bug and so I've been looking through the disassembly. Among the output from...