diff options
author | 2023-01-04 21:08:44 +0100 | |
---|---|---|
committer | 2023-03-01 00:31:05 +0100 | |
commit | 858320cbfc391a74bff6b9c8a0b3c7696a232b76 (patch) | |
tree | 4578119b03f33d16e93e6b151a73ce51ae7221cc /macros/src/codegen.rs | |
parent | 5c3cedf69ad07cb8522a0b040bdbf1f9ca4cf37b (diff) | |
download | rtic-858320cbfc391a74bff6b9c8a0b3c7696a232b76.tar.gz rtic-858320cbfc391a74bff6b9c8a0b3c7696a232b76.tar.zst rtic-858320cbfc391a74bff6b9c8a0b3c7696a232b76.zip |
Even more cleanup
Diffstat (limited to 'macros/src/codegen.rs')
-rw-r--r-- | macros/src/codegen.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/macros/src/codegen.rs b/macros/src/codegen.rs index 6460afec..0f68c347 100644 --- a/macros/src/codegen.rs +++ b/macros/src/codegen.rs @@ -6,20 +6,17 @@ use crate::syntax::ast::App; mod assertions; mod async_dispatchers; -// mod dispatchers; mod hardware_tasks; mod idle; mod init; mod local_resources; mod local_resources_struct; mod module; -// mod monotonic; mod post_init; mod pre_init; mod shared_resources; mod shared_resources_struct; mod software_tasks; -// mod timer_queue; mod util; #[allow(clippy::too_many_lines)] |