mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #284
284: book, Russian lang: fix "idle not defined" typo r=burbull a=kolen Fix typo in Russian translation of book, was "When idle function is declared", should be "When no idle function is declared" "не" means "not". Corresponding text in English: ```markdown When no `idle` function is declared, the runtime sets the [SLEEPONEXIT] bit and then sends the microcontroller to sleep after running `init`. ``` Co-authored-by: Konstantin Mochalov <incredible.angst@gmail.com>
This commit is contained in:
commit
1e827e24d0
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ $ cargo run --example init
|
|||
`init`, `idle` запустится *с включенными прерываниями* и не может завершиться,
|
||||
поэтому будет работать бесконечно.
|
||||
|
||||
Когда функция `idle` определена, рантайм устанавливает бит [SLEEPONEXIT], после чего
|
||||
Когда функция `idle` не определена, рантайм устанавливает бит [SLEEPONEXIT], после чего
|
||||
отправляет микроконтроллер в состояние сна после выполнения `init`.
|
||||
|
||||
[SLEEPONEXIT]: https://developer.arm.com/products/architecture/cpu-architecture/m-profile/docs/100737/0100/power-management/sleep-mode/sleep-on-exit-bit
|
||||
|
|
Loading…
Reference in a new issue