diff options
| author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-21 19:15:18 +0000 |
|---|---|---|
| committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-21 19:15:18 +0000 |
| commit | fafeeb27270ef24fc3852711c6032f65aa7dbcc0 (patch) | |
| tree | 97991e8071455759d6e1aba49dd191f9c24d8bfb /src/export.rs | |
| parent | 16614919c0b9c7f398f773afc7bde091a05608a6 (diff) | |
| parent | 30d6327001e35476f306b6cd8185396293b41f1d (diff) | |
Merge #194
194: bump heapless dependency to v0.5.0; remove "nightly" feature r=japaric a=japaric
with the upcoming version of heapless we are able to initialize all internal
queues in const context removing the need for late initialization
this commit also removes the "nightly" feature because all the optimization
provided by it are now enabled by default
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'src/export.rs')
| -rw-r--r-- | src/export.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/export.rs b/src/export.rs index ee4df52..afed909 100644 --- a/src/export.rs +++ b/src/export.rs @@ -8,8 +8,8 @@ pub use cortex_m::{ asm::wfi, interrupt, peripheral::scb::SystemHandler, peripheral::syst::SystClkSource, peripheral::Peripherals, }; -pub use heapless::consts; -use heapless::spsc::{Queue, SingleCore}; +use heapless::spsc::SingleCore; +pub use heapless::{consts, i, spsc::Queue}; #[cfg(feature = "timer-queue")] pub use crate::tq::{NotReady, TimerQueue}; |
