aboutsummaryrefslogtreecommitdiff
path: root/examples/t-cfg-resources.rs
diff options
context:
space:
mode:
authorGravatar Henrik Tjäder <henrik@tjaders.com> 2020-06-04 15:24:21 +0000
committerGravatar Henrik Tjäder <henrik@tjaders.com> 2020-09-29 11:33:41 +0000
commit96df0a33b1096e807bdd15713b10c2f3fa39395c (patch)
tree596f440beadf3fcae2b65651f52c3d819be0afad /examples/t-cfg-resources.rs
parentec936c3b51801280ee6edb365b784d515382b6fb (diff)
downloadrtic-96df0a33b1096e807bdd15713b10c2f3fa39395c.tar.gz
rtic-96df0a33b1096e807bdd15713b10c2f3fa39395c.tar.zst
rtic-96df0a33b1096e807bdd15713b10c2f3fa39395c.zip
All examples use #[resources] attribute
Diffstat (limited to 'examples/t-cfg-resources.rs')
-rw-r--r--examples/t-cfg-resources.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/t-cfg-resources.rs b/examples/t-cfg-resources.rs
index 190b32c2..61eb4c7b 100644
--- a/examples/t-cfg-resources.rs
+++ b/examples/t-cfg-resources.rs
@@ -7,6 +7,7 @@ use panic_halt as _;
#[rtic::app(device = lm3s6965)]
mod app {
+ #[resources]
struct Resources {
// A resource
#[init(0)]
@@ -16,7 +17,6 @@ mod app {
x: u32,
dummy: (), // dummy such that we have at least one late resource
}
-
#[init]
fn init(_: init::Context) -> init::LateResources {
init::LateResources {