mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-25 21:19:35 +01:00
Merge #518
518: Fix link for SLEEPONEXIT r=korken89 a=newAM Co-authored-by: Alex Martens <alexmgit@protonmail.com>
This commit is contained in:
commit
3ef650832a
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ so it must run forever.
|
||||||
When no `idle` function is declared, the runtime sets the [SLEEPONEXIT] bit and
|
When no `idle` function is declared, the runtime sets the [SLEEPONEXIT] bit and
|
||||||
then sends the microcontroller to sleep after running `init`.
|
then sends the microcontroller to sleep after running `init`.
|
||||||
|
|
||||||
[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/power-management/sleep-mode/sleep-on-exit-bit
|
[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/Power-management/Sleep-mode/Sleep-on-exit-bit
|
||||||
|
|
||||||
Like in `init`, `static mut` variables will be transformed into `&'static mut`
|
Like in `init`, `static mut` variables will be transformed into `&'static mut`
|
||||||
references that are safe to access. Notice, this feature may be deprecated in the next release, see `task_local` resources.
|
references that are safe to access. Notice, this feature may be deprecated in the next release, see `task_local` resources.
|
||||||
|
|
|
@ -73,7 +73,7 @@ $ cargo run --example init
|
||||||
Если функция `idle` не определена, среда вполнения устанавливает бит [SLEEPONEXIT], а затем
|
Если функция `idle` не определена, среда вполнения устанавливает бит [SLEEPONEXIT], а затем
|
||||||
отправляет микроконтроллер в сон после запуска `init`.
|
отправляет микроконтроллер в сон после запуска `init`.
|
||||||
|
|
||||||
[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/power-management/sleep-mode/sleep-on-exit-bit
|
[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/Power-management/Sleep-mode/Sleep-on-exit-bit
|
||||||
|
|
||||||
Как и в `init`, `static mut` переменные будут трансформированы в `&'static mut` ссылки,
|
Как и в `init`, `static mut` переменные будут трансформированы в `&'static mut` ссылки,
|
||||||
безопасные для доступа. Обратите внимание, данная возможность может
|
безопасные для доступа. Обратите внимание, данная возможность может
|
||||||
|
|
Loading…
Reference in a new issue