aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/internals/late-resources.md
diff options
context:
space:
mode:
Diffstat (limited to 'book/en/src/internals/late-resources.md')
-rw-r--r--book/en/src/internals/late-resources.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/book/en/src/internals/late-resources.md b/book/en/src/internals/late-resources.md
index ad2a5e5..f3a0b0a 100644
--- a/book/en/src/internals/late-resources.md
+++ b/book/en/src/internals/late-resources.md
@@ -10,7 +10,7 @@ initialize late resources.
``` rust
#[rtic::app(device = ..)]
-const APP: () = {
+mod app {
struct Resources {
x: Thing,
}
@@ -34,7 +34,7 @@ const APP: () = {
}
// ..
-};
+}
```
The code generated by the framework looks like this:
@@ -69,7 +69,7 @@ pub mod foo {
}
/// Implementation details
-const APP: () = {
+mod app {
// uninitialized static
static mut x: MaybeUninit<Thing> = MaybeUninit::uninit();
@@ -101,7 +101,7 @@ const APP: () = {
// ..
})
}
-};
+}
```
An important detail here is that `interrupt::enable` behaves like a *compiler