aboutsummaryrefslogtreecommitdiff
path: root/examples/static.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/static.rs')
-rw-r--r--examples/static.rs59
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();
+ }
+}