aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/migration/migration_rtic.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-05 18:45:32 +0000
committerGitHub <noreply@github.com>2020-10-05 18:45:32 +0000
commit29d10766d34aac03d7f7897c94a0891e02b2fab8 (patch)
treead32f3156e3cc3204effef7ebeac0110a9452a7e /book/en/src/migration/migration_rtic.md
parentf5cf64e35c85f45e8ddefda7c8957a262bd028f6 (diff)
parent71a279f6d0a2fa4f0e51d09eda47bd422a1b0240 (diff)
Merge #383
383: Split up migration guides into its own sections r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'book/en/src/migration/migration_rtic.md')
-rw-r--r--book/en/src/migration/migration_rtic.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/book/en/src/migration/migration_rtic.md b/book/en/src/migration/migration_rtic.md
new file mode 100644
index 0000000..555f1bb
--- /dev/null
+++ b/book/en/src/migration/migration_rtic.md
@@ -0,0 +1,54 @@
+# Migrating from RTFM to RTIC
+
+This section covers how to upgrade an application written against RTFM v0.5.x to
+the same version of RTIC. This applies since the renaming of the framework as per [RFC #33].
+
+**Note:** There are no code differences between RTFM v0.5.3 and RTIC v0.5.3, it is purely a name
+change.
+
+[RFC #33]: https://github.com/rtic-rs/rfcs/pull/33
+
+
+
+## `Cargo.toml`
+
+First, the `cortex-m-rtfm` dependency needs to be updated to
+`cortex-m-rtic`.
+
+
+``` toml
+[dependencies]
+# change this
+cortex-m-rtfm = "0.5.3"
+
+# into this
+cortex-m-rtic = "0.5.3"
+```
+
+## Code changes
+
+The only code change that needs to be made is that any reference to `rtfm` before now need to point
+to `rtic` as follows:
+
+``` rust
+//
+// Change this
+//
+
+#[rtfm::app(/* .. */, monotonic = rtfm::cyccnt::CYCCNT)]
+const APP: () = {
+ // ...
+
+};
+
+//
+// Into this
+//
+
+#[rtic::app(/* .. */, monotonic = rtic::cyccnt::CYCCNT)]
+const APP: () = {
+ // ...
+
+};
+```
+