File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-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
+ - Update ` bare-metal ` to ` v1.0.0 ` removing ` Nr ` trait
11
+
10
12
### Changed
11
13
12
14
- Build targets on ` docs.rs ` are now RISC-V targets other than default ones
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ targets = [
16
16
]
17
17
18
18
[dependencies ]
19
- bare-metal = " 0.2.5 "
19
+ bare-metal = " 1.0.0 "
20
20
bit_field = " 0.10.0"
21
21
22
22
[build-dependencies ]
Original file line number Diff line number Diff line change 1
1
//! Interrupts
2
2
3
3
// NOTE: Adapted from cortex-m/src/interrupt.rs
4
- pub use bare_metal:: { CriticalSection , Mutex , Nr } ;
4
+ pub use bare_metal:: { CriticalSection , Mutex } ;
5
5
use register:: mstatus;
6
6
7
7
/// Disables all interrupts
You can’t perform that action at this time.
0 commit comments