rust-embedded / cortex-m-quickstart

Template to develop bare metal applications for Cortex-M microcontrollers
809 stars 167 forks source link

Exception override #2

Closed teachop closed 7 years ago

teachop commented 7 years ago

What would be the example syntax to replace a default exception now? In particular SysTick. It isn't a big problem as I switched to a Timx periodic interrupt for the time being. Huge thanks to you for so much good useful work on Rust embedded!

japaric commented 7 years ago

I have added an example! :-)

teachop commented 7 years ago

Ah, it was disable the default feature I didn't catch. Works fine, thanks.