From b97bc791260554edfd79dbd84c05815bef26b636 Mon Sep 17 00:00:00 2001 From: Wouter Geraedts Date: Tue, 9 Apr 2024 15:01:27 +0200 Subject: Added esp32c6 support and example --- rtic-macros/src/codegen/bindings.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'rtic-macros/src/codegen/bindings.rs') diff --git a/rtic-macros/src/codegen/bindings.rs b/rtic-macros/src/codegen/bindings.rs index 501ccdf..c45b99e 100644 --- a/rtic-macros/src/codegen/bindings.rs +++ b/rtic-macros/src/codegen/bindings.rs @@ -3,6 +3,7 @@ feature = "cortex-m-basepri", feature = "test-template", feature = "riscv-esp32c3", + feature = "riscv-esp32c6", feature = "riscv-slic", )))] compile_error!("No backend selected"); @@ -25,6 +26,12 @@ pub use esp32c3::*; #[cfg(feature = "riscv-esp32c3")] mod esp32c3; +#[cfg(feature = "riscv-esp32c6")] +pub use esp32c6::*; + +#[cfg(feature = "riscv-esp32c6")] +mod esp32c6; + #[cfg(feature = "riscv-slic")] pub use riscv_slic::*; -- cgit v1.2.3