diff options
author | 2017-09-06 19:06:43 +0200 | |
---|---|---|
committer | 2017-09-06 19:06:43 +0200 | |
commit | 57ed0963ff3f64754935913943e6c7b20591a905 (patch) | |
tree | 006e862de2ccdb992d88093d455a9ed96b8726d4 /src | |
parent | c8bdb7329f860697602f98983917aaf84d8741d4 (diff) | |
download | rtic-57ed0963ff3f64754935913943e6c7b20591a905.tar.gz rtic-57ed0963ff3f64754935913943e6c7b20591a905.tar.zst rtic-57ed0963ff3f64754935913943e6c7b20591a905.zip |
Use `untagged_option` crate
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -80,12 +80,14 @@ extern crate cortex_m; extern crate cortex_m_rtfm_macros; extern crate rtfm_core; +extern crate untagged_option; use core::u8; -pub use rtfm_core::{Resource, LateResource, Static, Threshold}; +pub use rtfm_core::{Resource, Static, Threshold}; pub use cortex_m::asm::{bkpt, wfi}; pub use cortex_m_rtfm_macros::app; +pub use untagged_option::UntaggedOption; use cortex_m::interrupt::{self, Nr}; #[cfg(not(armv6m))] use cortex_m::register::basepri; |