diff options
author | 2023-10-13 21:49:30 +0200 | |
---|---|---|
committer | 2023-10-15 05:52:39 +0000 | |
commit | 52aa56e265f62252ce0eefeebcf100fdfd7be8c6 (patch) | |
tree | cc533fd2d802db132272eb0deb281951357cdc8c | |
parent | 4fc6f4799e488c16be2e902902b58bd0c7e6cf20 (diff) | |
download | rtic-52aa56e265f62252ce0eefeebcf100fdfd7be8c6.tar.gz rtic-52aa56e265f62252ce0eefeebcf100fdfd7be8c6.tar.zst rtic-52aa56e265f62252ce0eefeebcf100fdfd7be8c6.zip |
[book] Remove non-existent anchor reference
There is no anchor named `timeout_at` in the example source file. By looking at the context, the reference doesn't look like it's supposed to be there at all.
-rw-r--r-- | book/en/src/by-example/delay.md | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/book/en/src/by-example/delay.md b/book/en/src/by-example/delay.md index 81f855f4..facd595c 100644 --- a/book/en/src/by-example/delay.md +++ b/book/en/src/by-example/delay.md @@ -77,12 +77,6 @@ In cases where you want exact control over time without drift we can use exact p [fugit]: https://crates.io/crates/fugit -``` rust,noplayground - -{{#include ../../../../rtic/examples/async-timeout.rs:timeout_at}} - -``` - `let mut instant = Systick::now()` sets the starting time of execution. We want to call `hal_get` after 1000ms relative to this starting time. This can be accomplished by using `Systick::delay_until(instant).await`. |