diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-02-11 08:55:19 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:20 +0100 |
| commit | 60f0342b697cdddbab9c0e8c6d772bc7aab9de38 (patch) | |
| tree | 5bbb73e299f416f4c10adf329704b734379caa41 /rtic-macros/src/codegen/bindings.rs | |
| parent | 1cda61fbda205920517f7b63af90c97c38ff9af6 (diff) | |
Break out core specific codegen to bindings
Diffstat (limited to 'rtic-macros/src/codegen/bindings.rs')
| -rw-r--r-- | rtic-macros/src/codegen/bindings.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rtic-macros/src/codegen/bindings.rs b/rtic-macros/src/codegen/bindings.rs new file mode 100644 index 0000000..1efe0ce --- /dev/null +++ b/rtic-macros/src/codegen/bindings.rs @@ -0,0 +1,5 @@ +// TODO: Feature gate +mod cortex; + +// TODO: Feature gate +pub use cortex::*; |
