diff options
author | 2023-06-07 21:47:50 +0200 | |
---|---|---|
committer | 2023-06-07 21:47:50 +0200 | |
commit | 8622db1258fdcc475b0d3c1f1813500ca2d9c249 (patch) | |
tree | 7d954f070dc83ac5139f1316e0e3c11d53b15b29 | |
parent | bd54afae41ff8bdec45fca5f2d0e98cd04600ab8 (diff) | |
download | rtic-8622db1258fdcc475b0d3c1f1813500ca2d9c249.tar.gz rtic-8622db1258fdcc475b0d3c1f1813500ca2d9c249.tar.zst rtic-8622db1258fdcc475b0d3c1f1813500ca2d9c249.zip |
Book: v2 examples in repo
-rw-r--r-- | book/en/src/starting_a_project.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/en/src/starting_a_project.md b/book/en/src/starting_a_project.md index 437248f2..c78c5a2d 100644 --- a/book/en/src/starting_a_project.md +++ b/book/en/src/starting_a_project.md @@ -10,8 +10,8 @@ If you are targeting ARMv6-M or ARMv8-M-base architecture, check out the section This will give you an RTIC application with support for RTT logging with [`defmt`] and stack overflow protection using [`flip-link`]. There is also a multitude of examples provided by the community: -For inspiration, you may look at the [rtic examples]. +For inspiration, you may look at the [RTIC examples]. [`defmt`]: https://github.com/knurling-rs/defmt/ [`flip-link`]: https://github.com/knurling-rs/flip-link/ -[rtic examples]: https://github.com/rtic-rs/rtic/tree/master/examples +[RTIC examples]: https://github.com/rtic-rs/rtic/tree/master/examples |