File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.3.0] - 2017-07-07
11
+
10
12
### Changed
11
13
12
14
- [ breaking-change] Renamed ` StackedRergisters ` to ` ExceptionFrame ` to better
@@ -18,6 +20,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
18
20
- [ breaking-change] Renamed ` Exception::current ` to ` Exception::active ` and
19
21
changed the signature to return ` None ` when no exception is being serviced.
20
22
23
+ - Moved bits non specific to the Cortex-M architecture into the [ ` bare-metal ` ]
24
+ crate with the goal of sharing code between this crate and crates tailored for
25
+ other (microcontroller) architectures.
26
+
27
+ [ `bare-metal` ] : https://crates.io/crates/bare-metal
28
+
21
29
### Removed
22
30
23
31
- [ breaking-change] The ` ctxt ` module along with the exception "tokens" in the
@@ -337,7 +345,8 @@ fn main() {
337
345
- Functions to get the vector table
338
346
- Wrappers over miscellaneous instructions like ` bkpt `
339
347
340
- [ Unreleased ] : https://github.com/japaric/cortex-m/compare/v0.2.11...HEAD
348
+ [ Unreleased ] : https://github.com/japaric/cortex-m/compare/v0.3.0...HEAD
349
+ [ v0.3.0 ] : https://github.com/japaric/cortex-m/compare/v0.2.11...v0.3.0
341
350
[ v0.2.11 ] : https://github.com/japaric/cortex-m/compare/v0.2.10...v0.2.11
342
351
[ v0.2.10 ] : https://github.com/japaric/cortex-m/compare/v0.2.9...v0.2.10
343
352
[ v0.2.9 ] : https://github.com/japaric/cortex-m/compare/v0.2.8...v0.2.9
Original file line number Diff line number Diff line change 5
5
//! - Access to core peripherals like NVIC, SCB and SysTick.
6
6
//! - Access to core registers like CONTROL, MSP and PSR.
7
7
//! - Interrupt manipulation mechanisms
8
- //! - Data structures like the vector table
9
8
//! - Safe wrappers around assembly instructions like `bkpt`
10
9
11
10
#![ deny( missing_docs) ]
You can’t perform that action at this time.
0 commit comments