From 1e2fb2eeb2f57ff61aaf1298a9e4975c8fa8dd73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 27 Jul 2021 19:35:35 +0200 Subject: [PATCH 1/2] Add links to RTIC book dev version and rtic-examples --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 15f6af49a2..78b6fa86ab 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,14 @@ Formerly known as Real-Time For the Masses. - Applications must be written using the 2018 edition. -## [User documentation](https://rtic.rs) +## [User documentation](https://rtic.rs) - [(Development version)](https://rtic.rs/dev) ## [API reference](https://rtic.rs/stable/api/) +## [Community provided examples repo][examples] + +[examples]: https://github.com/rtic-rs/rtic-examples + ## Chat Join us and talk about RTIC in the [Matrix room][matrix-room]. From 5477ae288fb6df0484aa6e4d8acb13cdf0423b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 27 Jul 2021 20:04:56 +0200 Subject: [PATCH 2/2] Also link to `rtic-examples` in the tips section of the book --- book/en/src/by-example/tips.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/book/en/src/by-example/tips.md b/book/en/src/by-example/tips.md index f537173d58..e292634bb1 100644 --- a/book/en/src/by-example/tips.md +++ b/book/en/src/by-example/tips.md @@ -1,5 +1,9 @@ # Tips & tricks +For complete RTIC examples see the [rtic-examples][rtic-examples] repository. + +[rtic-examples]: https://github.com/rtic-rs/rtic-examples + ## Generics All resource proxies implement the `rtic::Mutex` trait.