aboutsummaryrefslogtreecommitdiff
path: root/homogeneous/examples
diff options
context:
space:
mode:
Diffstat (limited to 'homogeneous/examples')
-rw-r--r--homogeneous/examples/smallest.rs2
-rw-r--r--homogeneous/examples/x-init-2.rs2
-rw-r--r--homogeneous/examples/x-init.rs2
-rw-r--r--homogeneous/examples/x-schedule.rs2
-rw-r--r--homogeneous/examples/x-spawn.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/homogeneous/examples/smallest.rs b/homogeneous/examples/smallest.rs
index b99476c7..913e489f 100644
--- a/homogeneous/examples/smallest.rs
+++ b/homogeneous/examples/smallest.rs
@@ -3,5 +3,5 @@
use panic_halt as _;
-#[rtfm::app(cores = 2, device = homogeneous)]
+#[rtic::app(cores = 2, device = homogeneous)]
const APP: () = {};
diff --git a/homogeneous/examples/x-init-2.rs b/homogeneous/examples/x-init-2.rs
index de35cf6f..11caacd4 100644
--- a/homogeneous/examples/x-init-2.rs
+++ b/homogeneous/examples/x-init-2.rs
@@ -7,7 +7,7 @@
use panic_halt as _;
-#[rtfm::app(cores = 2, device = homogeneous)]
+#[rtic::app(cores = 2, device = homogeneous)]
const APP: () = {
struct Resources {
// owned by core #1 but initialized by core #0
diff --git a/homogeneous/examples/x-init.rs b/homogeneous/examples/x-init.rs
index c359901c..0574279c 100644
--- a/homogeneous/examples/x-init.rs
+++ b/homogeneous/examples/x-init.rs
@@ -7,7 +7,7 @@
use panic_halt as _;
-#[rtfm::app(cores = 2, device = homogeneous)]
+#[rtic::app(cores = 2, device = homogeneous)]
const APP: () = {
struct Resources {
x: u32,
diff --git a/homogeneous/examples/x-schedule.rs b/homogeneous/examples/x-schedule.rs
index 12b5cb80..7c0b3840 100644
--- a/homogeneous/examples/x-schedule.rs
+++ b/homogeneous/examples/x-schedule.rs
@@ -3,7 +3,7 @@
use panic_halt as _;
-#[rtfm::app(cores = 2, device = homogeneous, monotonic = homogeneous::MT)]
+#[rtic::app(cores = 2, device = homogeneous, monotonic = homogeneous::MT)]
const APP: () = {
#[init(core = 0, spawn = [ping])]
fn init(c: init::Context) {
diff --git a/homogeneous/examples/x-spawn.rs b/homogeneous/examples/x-spawn.rs
index a76ac61c..45bc9003 100644
--- a/homogeneous/examples/x-spawn.rs
+++ b/homogeneous/examples/x-spawn.rs
@@ -3,7 +3,7 @@
use panic_halt as _;
-#[rtfm::app(cores = 2, device = homogeneous)]
+#[rtic::app(cores = 2, device = homogeneous)]
const APP: () = {
#[init(core = 0, spawn = [foo])]
fn init(c: init::Context) {