diff options
author | 2020-10-15 16:01:07 +0000 | |
---|---|---|
committer | 2020-10-15 16:01:07 +0000 | |
commit | 1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e (patch) | |
tree | a17b4ec23f91483649f928021303ebf234727326 /examples/static.rs | |
parent | ee0885063d5b1cc4eddd3918ff425796f6213464 (diff) | |
parent | 37ee3a47afbbbf57751243d6d32aaac78073780c (diff) | |
download | rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.tar.gz rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.tar.zst rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.zip |
Merge #371
371: task_local and lock_free r=korken89 a=AfoHT
Getting this going to test with GHA
For further discussion see https://github.com/rtic-rs/rfcs/issues/30
Co-authored-by: Per <Per Lindgren>
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to 'examples/static.rs')
-rw-r--r-- | examples/static.rs | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/examples/static.rs b/examples/static.rs new file mode 100644 index 00000000..9c3110c0 --- /dev/null +++ b/examples/static.rs @@ -0,0 +1,59 @@ +//! examples/static.rs + +#![deny(unsafe_code)] +#![deny(warnings)] +#![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 crate::U4; + use crate::{Consumer, Producer}; + + // Late resources + #[resources] + struct Resources { + p: Producer<'static, u32, U4>, + c: Consumer<'static, u32, U4>, + } + + #[init] + fn init(_: init::Context) -> init::LateResources { + static mut Q: Queue<u32, U4> = Queue(i::Queue::new()); + + let (p, c) = Q.split(); + + // Initialization of late resources + init::LateResources { p, c } + } + + #[idle(resources = [c])] + fn idle(c: idle::Context) -> ! { + loop { + if let Some(byte) = c.resources.c.dequeue() { + hprintln!("received message: {}", byte).unwrap(); + + debug::exit(debug::EXIT_SUCCESS); + } else { + rtic::pend(Interrupt::UART0); + } + } + } + + #[task(binds = UART0, resources = [p])] + fn uart0(c: uart0::Context) { + static mut KALLE: u32 = 0; + *KALLE += 1; + c.resources.p.enqueue(42).unwrap(); + } +} |