diff options
Diffstat (limited to 'rtic/examples/async-channel-try.rs')
| -rw-r--r-- | rtic/examples/async-channel-try.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic/examples/async-channel-try.rs b/rtic/examples/async-channel-try.rs index 26c8a4f..54a51d9 100644 --- a/rtic/examples/async-channel-try.rs +++ b/rtic/examples/async-channel-try.rs @@ -12,7 +12,7 @@ use panic_semihosting as _; #[rtic::app(device = lm3s6965, dispatchers = [SSI0])] mod app { use cortex_m_semihosting::{debug, hprintln}; - use rtic_channel::*; + use rtic_sync::{channel::*, make_channel}; #[shared] struct Shared {} |
