aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-04 22:14:13 -0500
committerGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-04 22:14:42 -0500
commitd383d40459d1b6cba7ec2fd9f45b10439a6dbac4 (patch)
tree36ecbde73ee3d0173c793d3e921010a93519d922 /src/lib.rs
parent9828d7c4f3eddde66526df183acfb9360ee2bece (diff)
downloadcortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.tar.gz
cortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.tar.zst
cortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.zip
move non Cortex-M specific bits into a crate
closes #50
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5480599..d4d019e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -15,6 +15,7 @@
#![no_std]
extern crate aligned;
+extern crate mcu;
extern crate volatile_register;
#[macro_use]