aboutsummaryrefslogtreecommitdiff
path: root/homogeneous/examples
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2020-06-11 17:18:29 +0000
committerHenrik Tjäder <henrik@tjaders.com>2020-06-11 17:18:29 +0000
commit602a5b4374961dbcf7f3290053ab9b01f0622c67 (patch)
treed3e64006a7b310d34d82df7aa2a4467c03595e55 /homogeneous/examples
parent4a0393f756cc3ccd480f839eb6b6a9349326fe8e (diff)
Rename RTFM to RTIC
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 b99476c..913e489 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 de35cf6..11caacd 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 c359901..0574279 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 12b5cb8..7c0b384 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 a76ac61..45bc900 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) {