File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.5.8] - 2018-10-27
11
+
12
+ ### Added
13
+
14
+ - ` SCB ` gained methods to set, clear and check the pending state of the PendSV
15
+ exception.
16
+
17
+ - ` SCB ` gained methods to set, clear and check the pending state of the SysTick
18
+ exception.
19
+
20
+ - ` SCB ` gained methods to set and get the priority of system handlers like
21
+ SVCall and SysTick.
22
+
23
+ - ` NVIC ` gained * static* methods, ` pend ` and ` unpend ` , to set and clear the
24
+ pending state of interrupts.
25
+
26
+ ### Changed
27
+
28
+ - The ` NVIC.{clear,set}_pending ` methods have been deprecated in favor of
29
+ ` NVIC::{unpend,pend} ` .
30
+
10
31
## [ v0.5.7] - 2018-09-06
11
32
12
33
### Added
@@ -508,7 +529,8 @@ fn main() {
508
529
- Functions to get the vector table
509
530
- Wrappers over miscellaneous instructions like ` bkpt `
510
531
511
- [ Unreleased ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.7...HEAD
532
+ [ Unreleased ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.8...HEAD
533
+ [ v0.5.8 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.7...v0.5.8
512
534
[ v0.5.7 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.6...v0.5.7
513
535
[ v0.5.6 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.5...v0.5.6
514
536
[ v0.5.5 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.4...v0.5.5
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
8
8
name = " cortex-m"
9
9
readme = " README.md"
10
10
repository = " https://github.com/japaric/cortex-m"
11
- version = " 0.5.7 "
11
+ version = " 0.5.8 "
12
12
13
13
[dependencies ]
14
14
aligned = " 0.2.0"
You can’t perform that action at this time.
0 commit comments