diff options
author | 2023-03-31 20:42:14 +0200 | |
---|---|---|
committer | 2023-03-31 20:42:14 +0200 | |
commit | 7f61392a63959ce260c1d7d05628feee4ffa07e8 (patch) | |
tree | 231184f0d91deae4307f55ea1d1416c547f00e40 /rtic-macros/src/syntax/ast.rs | |
parent | 064cf19265f72d7f01e0847c545e6250391a2172 (diff) | |
download | rtic-7f61392a63959ce260c1d7d05628feee4ffa07e8.tar.gz rtic-7f61392a63959ce260c1d7d05628feee4ffa07e8.tar.zst rtic-7f61392a63959ce260c1d7d05628feee4ffa07e8.zip |
Removed device from init context in preparation for its disapearanceremove-core-device-peripherals
Diffstat (limited to 'rtic-macros/src/syntax/ast.rs')
-rw-r--r-- | rtic-macros/src/syntax/ast.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rtic-macros/src/syntax/ast.rs b/rtic-macros/src/syntax/ast.rs index 27e6773f..c3f2befa 100644 --- a/rtic-macros/src/syntax/ast.rs +++ b/rtic-macros/src/syntax/ast.rs @@ -56,9 +56,6 @@ pub struct AppArgs { /// Device pub device: Path, - /// Peripherals - pub peripherals: bool, - /// Interrupts used to dispatch software tasks pub dispatchers: Dispatchers, } |