Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions esp-hal/src/interrupt/riscv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ pub static RESERVED_INTERRUPTS: &[u32] = PRIORITY_TO_INTERRUPT;
/// an error.
///
/// ## Example
/// Visit the [interrupt] test to see a proper example of how to use direct vectoring.
/// Visit the [mod interrupt] test to see a proper example of how to use direct vectoring.
///
/// [interrupt]: https://github.com/esp-rs/esp-hal/blob/main/hil-test/src/bin/interrupt.rs
/// [mod interrupt]: https://github.com/esp-rs/esp-hal/blob/main/hil-test/src/bin/misc_drivers.rs
pub fn enable_direct(
interrupt: Interrupt,
level: Priority,
Expand Down
20 changes: 4 additions & 16 deletions hil-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ harness = false
name = "gpio_custom_handler"
harness = false

[[bin]]
name = "misc_drivers"
harness = false

[[bin]]
name = "interrupt"
harness = false
Expand All @@ -44,10 +48,6 @@ harness = false
name = "misc_non_drivers"
harness = false

[[bin]]
name = "rng"
harness = false

[[bin]]
name = "spi_full_duplex"
harness = false
Expand All @@ -68,10 +68,6 @@ harness = false
name = "parl_io"
harness = false

[[bin]]
name = "pcnt"
harness = false

[[bin]]
name = "rmt"
harness = false
Expand All @@ -90,14 +86,6 @@ name = "embassy_timers_executors"
harness = false
required-features = ["embassy"]

[[bin]]
name = "systimer"
harness = false

[[bin]]
name = "twai"
harness = false

[[bin]]
name = "esp_radio"
harness = false
Expand Down
Loading
Loading