diff options
author | 2021-07-05 21:40:01 +0200 | |
---|---|---|
committer | 2021-07-05 21:40:01 +0200 | |
commit | 3f85cb5caf1ae930e6551e139978ceec859a2348 (patch) | |
tree | 8c29ac6fa1095f33cf984d2565e2e7bea9504566 /macros/src/codegen.rs | |
parent | 13dc3992e616d817e38c167c4b47db816855f18b (diff) | |
download | rtic-3f85cb5caf1ae930e6551e139978ceec859a2348.tar.gz rtic-3f85cb5caf1ae930e6551e139978ceec859a2348.tar.zst rtic-3f85cb5caf1ae930e6551e139978ceec859a2348.zip |
Started work
Diffstat (limited to 'macros/src/codegen.rs')
-rw-r--r-- | macros/src/codegen.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/macros/src/codegen.rs b/macros/src/codegen.rs index 113d17f9..f6fdf022 100644 --- a/macros/src/codegen.rs +++ b/macros/src/codegen.rs @@ -9,12 +9,13 @@ mod dispatchers; mod hardware_tasks; mod idle; mod init; -mod locals; +mod local_resources; +mod shared_resources; +mod local_resources_struct; +mod shared_resources_struct; mod module; mod post_init; mod pre_init; -mod resources; -mod resources_struct; mod software_tasks; mod timer_queue; mod util; |