aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-01-23 20:27:06 +0100
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-01-23 20:27:06 +0100
commitd30209fa372831d819607e6a324b7512f8d1cfaa (patch)
treeed29ab4b5932438f4244a0efab4869231967d7d3 /src/lib.rs
parentc921d43f58db6ac4050e53c6b372d530fce073b7 (diff)
downloadcortex-m-d30209fa372831d819607e6a324b7512f8d1cfaa.tar.gz
cortex-m-d30209fa372831d819607e6a324b7512f8d1cfaa.tar.zst
cortex-m-d30209fa372831d819607e6a324b7512f8d1cfaa.zip
initialize singletons at runtime
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 694d1b2..6af60d7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -15,6 +15,7 @@
extern crate aligned;
extern crate bare_metal;
+extern crate untagged_option;
extern crate volatile_register;
#[macro_use]
@@ -31,3 +32,4 @@ pub mod peripheral;
pub mod register;
pub use peripheral::Peripherals;
+pub use untagged_option::UntaggedOption;