aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar onsdagens <112828711+onsdagens@users.noreply.github.com> 2023-12-20 19:55:35 +0100
committerGravatar GitHub <noreply@github.com> 2023-12-20 18:55:35 +0000
commitdeda4f01c928d929298044792e71e7eb24423020 (patch)
tree4db9215511ad9c1923e339789354ccb89c17ac1c
parente53624c26396019849e10374eacaf416b11c4e5a (diff)
downloadrtic-deda4f01c928d929298044792e71e7eb24423020.tar.gz
rtic-deda4f01c928d929298044792e71e7eb24423020.tar.zst
rtic-deda4f01c928d929298044792e71e7eb24423020.zip
remove unused import (#866)
Diffstat (limited to '')
-rw-r--r--rtic/src/export/riscv_esp32c3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic/src/export/riscv_esp32c3.rs b/rtic/src/export/riscv_esp32c3.rs
index f093672c..69f7d7a7 100644
--- a/rtic/src/export/riscv_esp32c3.rs
+++ b/rtic/src/export/riscv_esp32c3.rs
@@ -1,6 +1,6 @@
use esp32c3::INTERRUPT_CORE0; //priority threshold control
pub use esp32c3::{Interrupt, Peripherals};
-pub use riscv::{interrupt, register::mcause}; //low level interrupt enable/disable
+pub use riscv::register::mcause; //low level interrupt enable/disable
#[cfg(all(feature = "riscv-esp32c3", not(feature = "riscv-esp32c3-backend")))]
compile_error!("Building for the esp32c3, but 'riscv-esp32c3-backend not selected'");