aboutsummaryrefslogtreecommitdiff
path: root/rtic-macros/src/codegen/bindings.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-02-22 19:59:50 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:35:21 +0100
commit1c26eb722f7911737b7973982563a12bc3fb4164 (patch)
treef41f1945f1d327c2d3f55aa57b1f849b037ab2f6 /rtic-macros/src/codegen/bindings.rs
parentd82f57772459d9bf12bb2c935e3ebc9b93368f51 (diff)
Add template for bindings
Diffstat (limited to 'rtic-macros/src/codegen/bindings.rs')
-rw-r--r--rtic-macros/src/codegen/bindings.rs4
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;