aboutsummaryrefslogtreecommitdiff
path: root/examples/t-late-not-send.rs
diff options
context:
space:
mode:
authorGravatar Daniel Carosone <Daniel.Carosone@gmail.com> 2020-10-07 09:22:38 +1100
committerGravatar Daniel Carosone <Daniel.Carosone@gmail.com> 2020-10-07 09:22:38 +1100
commitf386cb63cb6d3cd6642debfb4dc1bde97b325550 (patch)
tree30b21968997f809dbbba59117db93254607fa22d /examples/t-late-not-send.rs
parent3d6a0ea64fb2661ee1150a84425f50c18c2de9ad (diff)
parentb1e1abae29591e50ebf345a2bd249a73e564cea9 (diff)
downloadrtic-f386cb63cb6d3cd6642debfb4dc1bde97b325550.tar.gz
rtic-f386cb63cb6d3cd6642debfb4dc1bde97b325550.tar.zst
rtic-f386cb63cb6d3cd6642debfb4dc1bde97b325550.zip
Merge branch 'master'
of https://github.com/rtic-rs/cortex-m-rtic
Diffstat (limited to 'examples/t-late-not-send.rs')
-rw-r--r--examples/t-late-not-send.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/t-late-not-send.rs b/examples/t-late-not-send.rs
index d2a9b63c..345d9aef 100644
--- a/examples/t-late-not-send.rs
+++ b/examples/t-late-not-send.rs
@@ -12,7 +12,10 @@ pub struct NotSend {
}
#[rtic::app(device = lm3s6965)]
-const APP: () = {
+mod app {
+ use super::NotSend;
+
+ #[resources]
struct Resources {
x: NotSend,
#[init(None)]
@@ -35,4 +38,4 @@ const APP: () = {
cortex_m::asm::nop();
}
}
-};
+}
n class='deletions'>-5/+256 2023-06-18feat(new tool): xml formatter (#457)Gravatar jmmanzano 10-0/+156 * feat(new tool): xml formatter * feat(xml-formatter): added happy path e2e tests * refactor(xml-formatter): improved unit tests * refactor(xml-formatter): add better suitable icon * feat(xml-formatter): added happy path e2e tests * feat(xml-formatter): registered xml as syntax highlighter * chore(auto-import): removed unused NSpace --------- Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-06-18feat(chmod-calculator): added symbolic representation (#455)Gravatar myztillx 3-3/+82 2023-06-18feat(enhancement): use system dark mode (#458)Gravatar Seb 4-35/+8 * Use prefers-color-scheme * Remove theme store 2023-06-11refactor(c-input-text): force usage of props with defaultGravatar Corentin Thomasset 1-2/+1 2023-06-10refactor(naming): prevent auto import conflicts for git memoGravatar Corentin Thomasset 3-2/+3 2023-06-10refactor(imports): removed unnecessary imports to vueGravatar Corentin Thomasset 59-59/+17