diff options
author | 2017-09-03 18:05:48 +0200 | |
---|---|---|
committer | 2017-09-03 18:19:21 +0200 | |
commit | 7ebba49644eda963106cc51d13fc016a577fc934 (patch) | |
tree | 17e14d26dd4a5cbaaf7b4b2e4907f1640aaf15ea /src | |
parent | 27fc7e99d20252318152973e1c617c3da92b2bf8 (diff) | |
download | rtic-7ebba49644eda963106cc51d13fc016a577fc934.tar.gz rtic-7ebba49644eda963106cc51d13fc016a577fc934.tar.zst rtic-7ebba49644eda963106cc51d13fc016a577fc934.zip |
Allow initialization of resources in `init`.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -80,11 +80,10 @@ extern crate cortex_m; extern crate cortex_m_rtfm_macros; extern crate rtfm_core; -extern crate static_ref; use core::u8; -pub use rtfm_core::{Resource, Static, Threshold}; +pub use rtfm_core::{Resource, LateResource, Static, Threshold}; pub use cortex_m::asm::{bkpt, wfi}; pub use cortex_m_rtfm_macros::app; use cortex_m::interrupt::{self, Nr}; |