Skip to content

Commit 4042946

Browse files
committed
mcu -> bare-metal
1 parent d383d40 commit 4042946

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ repository = "https://github.com/japaric/cortex-m"
1010
version = "0.3.0"
1111

1212
[dependencies]
13-
mcu = { git = "https://github.com/japaric/mcu" }
1413
aligned = "0.1.1"
14+
bare-metal = { git = "https://github.com/japaric/bare-metal" }
1515
volatile-register = "0.2.0"

src/interrupt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Interrupts
22
3-
pub use mcu::{CriticalSection, Mutex, Nr};
3+
pub use bare_metal::{CriticalSection, Mutex, Nr};
44

55
/// Disables all interrupts
66
#[inline(always)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#![no_std]
1616

1717
extern crate aligned;
18-
extern crate mcu;
18+
extern crate bare_metal;
1919
extern crate volatile_register;
2020

2121
#[macro_use]

src/peripheral/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use core::cell::UnsafeCell;
88
use core::ptr;
99

10-
pub use mcu::Peripheral;
10+
pub use bare_metal::Peripheral;
1111
use volatile_register::{RO, RW, WO};
1212

1313
use interrupt::Nr;

0 commit comments

Comments
 (0)