diff options
author | 2017-04-08 09:54:59 -0500 | |
---|---|---|
committer | 2017-04-08 09:54:59 -0500 | |
commit | 6ee9676db2456081481f1da3e10466d108fa7af6 (patch) | |
tree | 2b2a4499f681ba63cbadf745de60de09ba7d8487 | |
parent | e47c04aa4b1e7adab2760ce5408b22d78e6a45e5 (diff) | |
download | cortex-m-6ee9676db2456081481f1da3e10466d108fa7af6.tar.gz cortex-m-6ee9676db2456081481f1da3e10466d108fa7af6.tar.zst cortex-m-6ee9676db2456081481f1da3e10466d108fa7af6.zip |
fix CHANGELOG
-rw-r--r-- | CHANGELOG.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 264ca26..90a89d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,8 +21,8 @@ static FOO: Mutex<bool> = Mutex::new(false); fn main() { cortex_m::interrupt::free(|mut cs1| { cortex_m::interrupt::free(|mut cs2| { - let foo = FOO.borrow_mut(&mut cs1); - let and_foo = FOO.borrow_mut(&mut cs2); + let foo: &mut bool = FOO.borrow_mut(&mut cs1); + let and_foo: &mut bool = FOO.borrow_mut(&mut cs2); }); }); } @@ -134,7 +134,8 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.2.1...HEAD +[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.2.2...HEAD +[v0.2.2]: https://github.com/japaric/cortex-m/compare/v0.2.1...v0.2.2 [v0.2.1]: https://github.com/japaric/cortex-m/compare/v0.2.0...v0.2.1 [v0.2.0]: https://github.com/japaric/cortex-m/compare/v0.1.6...v0.2.0 [v0.1.6]: https://github.com/japaric/cortex-m/compare/v0.1.5...v0.1.6 |