Skip to content

Commit bedaae9

Browse files
AfoHTkorken89
authored andcommitted
Book: Restore missing newline
1 parent 8824202 commit bedaae9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/en/src/by-example/app_init.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
An RTIC application requires an `init` task setting up the system. The corresponding `init` function must have the
44
signature `fn(init::Context) -> (Shared, Local)`, where `Shared` and `Local` are resource structures defined by the user.
55

6-
The `init` task executes after system reset, [after an optionally defined `pre-init` code section][pre-init] and an always occurring internal RTIC initialization. [pre-init]: https://docs.rs/cortex-m-rt/latest/cortex_m_rt/attr.pre_init.html
6+
The `init` task executes after system reset, [after an optionally defined `pre-init` code section][pre-init] and an always occurring internal RTIC initialization.
7+
[pre-init]: https://docs.rs/cortex-m-rt/latest/cortex_m_rt/attr.pre_init.html
78

89
The `init` and optional `pre-init` tasks runs *with interrupts disabled* and have exclusive access to Cortex-M (the `bare_metal::CriticalSection` token is available as `cs`).
910

0 commit comments

Comments
 (0)