What's Changed
- cortex-m v0.7.7: add documentation for critical-section-single-core by @adamgreig in https://github.com/rust-embedded/cortex-m/pull/458
Full Changelog: https://github.com/rust-embedded/cortex-m/compare/v0.7.6...v0.7.7
Unclaimed project
Are you a maintainer of cortex-m? Claim this project to take control of your public changelog and roadmap.
Changelog
Low level access to Cortex-M processors
Last updated 9 days ago
Full Changelog: https://github.com/rust-embedded/cortex-m/compare/v0.7.6...v0.7.7
critical-section-single-core feature which provides an implementation for the critical-section crate for single-core systems, based on disabling all interrupts. (#448)ptr() function on all peripherals register blocks in favor of
the associated constant PTR (#386).inline-asm feature no longer requires a nightly Rust compiler, but
does require Rust 1.59 or above.singleton!() statics sometimes ending up in .data instead of .bss (#364, #380).
(Backported from upcoming 0.8 rel...DWT.set_cycle_count (#347).cm7 to enable access to these (#352).Delay struct now offers direct delay_us() and delay_ms() methods
without having to go through the embedded-hal traits (#344).