File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ repository = "https://github.com/japaric/cortex-m"
10
10
version = " 0.3.0"
11
11
12
12
[dependencies ]
13
- mcu = { git = " https://github.com/japaric/mcu" }
14
13
aligned = " 0.1.1"
14
+ bare-metal = { git = " https://github.com/japaric/bare-metal" }
15
15
volatile-register = " 0.2.0"
Original file line number Diff line number Diff line change 1
1
//! Interrupts
2
2
3
- pub use mcu :: { CriticalSection , Mutex , Nr } ;
3
+ pub use bare_metal :: { CriticalSection , Mutex , Nr } ;
4
4
5
5
/// Disables all interrupts
6
6
#[ inline( always) ]
Original file line number Diff line number Diff line change 15
15
#![ no_std]
16
16
17
17
extern crate aligned;
18
- extern crate mcu ;
18
+ extern crate bare_metal ;
19
19
extern crate volatile_register;
20
20
21
21
#[ macro_use]
Original file line number Diff line number Diff line change 7
7
use core:: cell:: UnsafeCell ;
8
8
use core:: ptr;
9
9
10
- pub use mcu :: Peripheral ;
10
+ pub use bare_metal :: Peripheral ;
11
11
use volatile_register:: { RO , RW , WO } ;
12
12
13
13
use interrupt:: Nr ;
You can’t perform that action at this time.
0 commit comments