aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-22 17:11:21 +0000
committerGitHub <noreply@github.com>2020-10-22 17:11:21 +0000
commitb3aa9e99a975eca637582f31de20fe11ae8f7d64 (patch)
tree312e7313d052be9233fd9c2be9b52a091aac9ae6 /examples
parent9fb5a223cb8adb01381650b66eab28ea5abc98ed (diff)
parent86699039e99229049ee3c739eaf860acc70a1bf7 (diff)
Merge #398
398: Add the cfgs on a task to the module for that task r=korken89 a=AfoHT Applying a `#[cfg(never)]` on a task: before: ``` #[allow(non_snake_case)] #[doc = "Software task"] pub mod foo2 { #[doc(inline)] pub use super::foo2Resources as Resources; #[doc = r" Execution context"] pub struct Context<'a> { #[doc = r" Resources this task has access to"] pub resources: Resources<'a>, } impl<'a> Context<'a> { #[inline(always)] pub unsafe fn new(priority: &'a rtic::export::Priority) -> Self { Context { resources: Resources::new(priority), } } } <...> ``` After: ``` #[allow(non_snake_case)] #[cfg(never)] #[doc = "Software task"] pub mod foo2 { #[doc(inline)] pub use super::foo2Resources as Resources; #[doc = r" Execution context"] pub struct Context<'a> { #[doc = r" Resources this task has access to"] pub resources: Resources<'a>, } impl<'a> Context<'a> { #[inline(always)] pub unsafe fn new(priority: &'a rtic::export::Priority) -> Self { Context { resources: Resources::new(priority), } } } <...> ``` Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/cfg-whole-task.rs94
1 files changed, 94 insertions, 0 deletions
diff --git a/examples/cfg-whole-task.rs b/examples/cfg-whole-task.rs
new file mode 100644
index 0000000..7a7fc48
--- /dev/null
+++ b/examples/cfg-whole-task.rs
@@ -0,0 +1,94 @@
+//! examples/cfg-whole-task.rs
+
+#![deny(unsafe_code)]
+#![deny(warnings)]
+#![no_main]
+#![no_std]
+
+use panic_semihosting as _;
+
+#[rtic::app(device = lm3s6965)]
+mod app {
+ use cortex_m_semihosting::debug;
+ #[cfg(debug_assertions)]
+ use cortex_m_semihosting::hprintln;
+
+ #[resources]
+ struct Resources {
+ #[cfg(debug_assertions)] // <- `true` when using the `dev` profile
+ #[init(0)]
+ count: u32,
+ #[cfg(never)]
+ #[init(0)]
+ unused: u32,
+ }
+
+ #[init]
+ fn init(_: init::Context) -> init::LateResources {
+ foo::spawn().unwrap();
+ foo::spawn().unwrap();
+
+ init::LateResources {}
+ }
+
+ #[idle]
+ fn idle(_: idle::Context) -> ! {
+ debug::exit(debug::EXIT_SUCCESS);
+
+ loop {
+ cortex_m::asm::nop();
+ }
+ }
+
+ #[task(capacity = 2, resources = [count])]
+ fn foo(_cx: foo::Context) {
+ #[cfg(debug_assertions)]
+ {
+ *_cx.resources.count += 1;
+
+ log::spawn(*_cx.resources.count).unwrap();
+ }
+
+ // this wouldn't compile in `release` mode
+ // *_cx.resources.count += 1;
+
+ // ..
+ }
+
+ // The whole task should disappear,
+ // currently still present in the Tasks enum
+ #[cfg(never)]
+ #[task(capacity = 2, resources = [count])]
+ fn foo2(_cx: foo2::Context) {
+ #[cfg(debug_assertions)]
+ {
+ *_cx.resources.count += 10;
+
+ log::spawn(*_cx.resources.count).unwrap();
+ }
+
+ // this wouldn't compile in `release` mode
+ // *_cx.resources.count += 1;
+
+ // ..
+ }
+
+ #[cfg(debug_assertions)]
+ #[task(capacity = 2)]
+ fn log(_: log::Context, n: u32) {
+ hprintln!(
+ "foo has been called {} time{}",
+ n,
+ if n == 1 { "" } else { "s" }
+ )
+ .ok();
+ }
+
+ // RTIC requires that unused interrupts are declared in an extern block when
+ // using software tasks; these free interrupts will be used to dispatch the
+ // software tasks.
+ extern "C" {
+ fn SSI0();
+ fn QEI0();
+ }
+}