aboutsummaryrefslogtreecommitdiff
path: root/examples/cancel-reschedule.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-04 21:10:24 +0000
committerGitHub <noreply@github.com>2023-03-04 21:10:24 +0000
commit7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b (patch)
tree80a47f0dc40059014e9448c4c2eb34c54dff45fe /examples/cancel-reschedule.rs
parent1c5db277e4161470136dbd2a11e914ff1d383581 (diff)
parent98c5490d94950608d31cd5ad9dd260f2f853735c (diff)
Merge #694
694: RTIC 2 r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com> Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
Diffstat (limited to 'examples/cancel-reschedule.rs')
-rw-r--r--examples/cancel-reschedule.rs74
1 files changed, 0 insertions, 74 deletions
diff --git a/examples/cancel-reschedule.rs b/examples/cancel-reschedule.rs
deleted file mode 100644
index 36c496b..0000000
--- a/examples/cancel-reschedule.rs
+++ /dev/null
@@ -1,74 +0,0 @@
-//! examples/cancel-reschedule.rs
-
-#![deny(unsafe_code)]
-#![deny(warnings)]
-#![deny(missing_docs)]
-#![no_main]
-#![no_std]
-
-use panic_semihosting as _;
-
-#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
-mod app {
- use cortex_m_semihosting::{debug, hprintln};
- use systick_monotonic::*;
-
- #[monotonic(binds = SysTick, default = true)]
- type MyMono = Systick<100>; // 100 Hz / 10 ms granularity
-
- #[shared]
- struct Shared {}
-
- #[local]
- struct Local {}
-
- #[init]
- fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
- let systick = cx.core.SYST;
-
- // Initialize the monotonic (SysTick rate in QEMU is 12 MHz)
- let mono = Systick::new(systick, 12_000_000);
-
- hprintln!("init");
-
- // Schedule `foo` to run 1 second in the future
- foo::spawn_after(1.secs()).unwrap();
-
- (
- Shared {},
- Local {},
- init::Monotonics(mono), // Give the monotonic to RTIC
- )
- }
-
- #[task]
- fn foo(_: foo::Context) {
- hprintln!("foo");
-
- // Schedule `bar` to run 2 seconds in the future (1 second after foo runs)
- let spawn_handle = baz::spawn_after(2.secs()).unwrap();
- bar::spawn_after(1.secs(), spawn_handle, false).unwrap(); // Change to true
- }
-
- #[task]
- fn bar(_: bar::Context, baz_handle: baz::SpawnHandle, do_reschedule: bool) {
- hprintln!("bar");
-
- if do_reschedule {
- // Reschedule baz 2 seconds from now, instead of the original 1 second
- // from now.
- baz_handle.reschedule_after(2.secs()).unwrap();
- // Or baz_handle.reschedule_at(/* time */)
- } else {
- // Or cancel it
- baz_handle.cancel().unwrap();
- debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
- }
- }
-
- #[task]
- fn baz(_: baz::Context) {
- hprintln!("baz");
- debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
- }
-}