diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-10-15 18:50:17 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-10-21 20:25:05 +0200 |
| commit | f96b25fdf2d7421cc16830a4ccac4ebb3e69cc5d (patch) | |
| tree | a782f21ca0659eda6b9b667e197c4927490a7bc4 /examples/late.rs | |
| parent | 355cb82d0693fe108ac28ec8a0d77e8aab4e6e06 (diff) | |
Updated examples
More work
Diffstat (limited to 'examples/late.rs')
| -rw-r--r-- | examples/late.rs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/examples/late.rs b/examples/late.rs index 761c68f..d20a69c 100644 --- a/examples/late.rs +++ b/examples/late.rs @@ -5,21 +5,18 @@ #![no_main] #![no_std] -use cortex_m_semihosting::{debug, hprintln}; -use heapless::{ - consts::*, - i, - spsc::{Consumer, Producer, Queue}, -}; -use lm3s6965::Interrupt; use panic_semihosting as _; #[rtic::app(device = lm3s6965)] mod app { + use cortex_m_semihosting::{debug, hprintln}; use heapless::{ consts::*, - spsc::{Consumer, Producer}, + i, + spsc::{Consumer, Producer, Queue}, }; + use lm3s6965::Interrupt; + // Late resources #[resources] struct Resources { |
