Skip to content

Commit ffcc983

Browse files
committed
mcu -> bare-metal
1 parent a694513 commit ffcc983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/generate.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ pub fn device(
7373
}
7474

7575
items.push(quote! {
76-
extern crate mcu;
76+
extern crate bare_metal;
7777
extern crate vcell;
7878

7979
use core::ops::Deref;
8080

81-
use mcu::Peripheral;
81+
use bare_metal::Peripheral;
8282
});
8383

8484
if let Some(cpu) = d.cpu.as_ref() {
@@ -155,7 +155,7 @@ pub fn interrupt(
155155
let mut pos = 0;
156156
let mut mod_items = vec![];
157157
mod_items.push(quote! {
158-
use mcu::Nr;
158+
use bare_metal::Nr;
159159
});
160160
for interrupt in &interrupts {
161161
while pos < interrupt.value {

0 commit comments

Comments
 (0)