aboutsummaryrefslogtreecommitdiff
path: root/examples/baseline.rs
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2021-02-20 19:22:45 +0100
committerGravatar Emil Fresk <emil.fresk@gmail.com> 2021-02-20 19:22:45 +0100
commit555f36857ec93bed26ff4249593992f500b7c4ab (patch)
tree97db7bea39684b64f33d208bc4c413f469ae53e5 /examples/baseline.rs
parentd02f9a02411de1bc79490c86541e95879b7b19b8 (diff)
downloadrtic-555f36857ec93bed26ff4249593992f500b7c4ab.tar.gz
rtic-555f36857ec93bed26ff4249593992f500b7c4ab.tar.zst
rtic-555f36857ec93bed26ff4249593992f500b7c4ab.zip
Test fixes
Diffstat (limited to 'examples/baseline.rs')
-rw-r--r--examples/baseline.rs50
1 files changed, 0 insertions, 50 deletions
diff --git a/examples/baseline.rs b/examples/baseline.rs
deleted file mode 100644
index 17278748..00000000
--- a/examples/baseline.rs
+++ /dev/null
@@ -1,50 +0,0 @@
-//! examples/baseline.rs
-
-#![deny(unsafe_code)]
-#![deny(warnings)]
-#![no_main]
-#![no_std]
-
-use panic_semihosting as _;
-
-// NOTE: does NOT properly work on QEMU
-#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT, dispatchers = [SSI0])]
-mod app {
- use cortex_m_semihosting::{debug, hprintln};
- use lm3s6965::Interrupt;
-
- #[init]
- fn init(cx: init::Context) -> init::LateResources {
- // omitted: initialization of `CYCCNT`
-
- hprintln!("init(baseline = {:?})", cx.start).unwrap();
-
- // `foo` inherits the baseline of `init`: `Instant(0)`
- foo::spawn().unwrap();
-
- init::LateResources {}
- }
-
- #[task]
- fn foo(cx: foo::Context) {
- static mut ONCE: bool = true;
-
- hprintln!("foo(baseline = {:?})", cx.scheduled).unwrap();
-
- if *ONCE {
- *ONCE = false;
-
- rtic::pend(Interrupt::UART0);
- } else {
- debug::exit(debug::EXIT_SUCCESS);
- }
- }
-
- #[task(binds = UART0)]
- fn uart0(cx: uart0::Context) {
- hprintln!("UART0(baseline = {:?})", cx.start).unwrap();
-
- // `foo` inherits the baseline of `UART0`: its `start` time
- foo::spawn().unwrap();
- }
-}