Skip to content

Commit 07133d6

Browse files
authored
Merge pull request #22 from peterstuart/rtfm-rtic
RTFM -> RTIC
2 parents c9c2057 + b3a097f commit 07133d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Global variables are not great in Rust, because:
4646
* Not all data can be initialized in a `const` context, so it's often necessary to use an `Option<T>` to delay the initialization to runtime
4747
* Global variables aren't typically idiomatic Rust.
4848

49-
Frameworks like [cortex-m-rtfm] achieve this in a zero cost fashion by using a Domain Specific Language to automatically provide safe access to shared resources between tasks and interrupts, however these tools can not be used by applications not using RTFM, or by libraries such as HAL or BSP crates.
49+
Frameworks like [cortex-m-rtic] achieve this in a zero cost fashion by using a Domain Specific Language to automatically provide safe access to shared resources between tasks and interrupts, however these tools can not be used by applications not using RTIC, or by libraries such as HAL or BSP crates.
5050

5151
**Useful Links**
5252

@@ -55,7 +55,7 @@ Frameworks like [cortex-m-rtfm] achieve this in a zero cost fashion by using a D
5555

5656
[wg#294]: https://github.com/rust-embedded/wg/issues/294
5757
[bare-metal#15]: https://github.com/japaric/bare-metal/pull/15
58-
[cortex-m-rtfm]: https://github.com/japaric/cortex-m-rtfm
58+
[cortex-m-rtic]: https://github.com/rtic-rs/cortex-m-rtic
5959

6060
### Success Criteria
6161

0 commit comments

Comments
 (0)