diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-02-22 19:59:50 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:21 +0100 |
| commit | 1c26eb722f7911737b7973982563a12bc3fb4164 (patch) | |
| tree | f41f1945f1d327c2d3f55aa57b1f849b037ab2f6 /rtic-macros/src/codegen/bindings.rs | |
| parent | d82f57772459d9bf12bb2c935e3ebc9b93368f51 (diff) | |
Add template for bindings
Diffstat (limited to 'rtic-macros/src/codegen/bindings.rs')
| -rw-r--r-- | rtic-macros/src/codegen/bindings.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rtic-macros/src/codegen/bindings.rs b/rtic-macros/src/codegen/bindings.rs index 68378b5..6c214cd 100644 --- a/rtic-macros/src/codegen/bindings.rs +++ b/rtic-macros/src/codegen/bindings.rs @@ -1,7 +1,7 @@ #[cfg(not(any( feature = "cortex-m-source-masking", feature = "cortex-m-basepri", - feaute = "test-template" + feature = "test-template" )))] compile_error!("No backend selected"); @@ -9,7 +9,7 @@ compile_error!("No backend selected"); pub use cortex::*; #[cfg(feature = "test-template")] -pub use cortex::*; +pub use template::*; #[cfg(any(feature = "cortex-m-source-masking", feature = "cortex-m-basepri"))] mod cortex; |
