Skip to content

Commit 15427ce

Browse files
committed
Merge misc drivers HIL into single binary
1 parent bff385d commit 15427ce

File tree

7 files changed

+724
-758
lines changed

7 files changed

+724
-758
lines changed

esp-hal/src/interrupt/riscv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ pub static RESERVED_INTERRUPTS: &[u32] = PRIORITY_TO_INTERRUPT;
228228
/// an error.
229229
///
230230
/// ## Example
231-
/// Visit the [interrupt] test to see a proper example of how to use direct vectoring.
231+
/// Visit the [mod interrupt] test to see a proper example of how to use direct vectoring.
232232
///
233-
/// [interrupt]: https://github.com/esp-rs/esp-hal/blob/main/hil-test/src/bin/interrupt.rs
233+
/// [mod interrupt]: https://github.com/esp-rs/esp-hal/blob/main/hil-test/src/bin/misc_drivers.rs
234234
pub fn enable_direct(
235235
interrupt: Interrupt,
236236
level: Priority,

hil-test/Cargo.toml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ harness = false
2424
name = "gpio_custom_handler"
2525
harness = false
2626

27+
[[bin]]
28+
name = "misc_drivers"
29+
harness = false
30+
2731
[[bin]]
2832
name = "interrupt"
2933
harness = false
@@ -44,10 +48,6 @@ harness = false
4448
name = "misc_non_drivers"
4549
harness = false
4650

47-
[[bin]]
48-
name = "rng"
49-
harness = false
50-
5151
[[bin]]
5252
name = "spi_full_duplex"
5353
harness = false
@@ -68,10 +68,6 @@ harness = false
6868
name = "parl_io"
6969
harness = false
7070

71-
[[bin]]
72-
name = "pcnt"
73-
harness = false
74-
7571
[[bin]]
7672
name = "rmt"
7773
harness = false
@@ -90,14 +86,6 @@ name = "embassy_timers_executors"
9086
harness = false
9187
required-features = ["embassy"]
9288

93-
[[bin]]
94-
name = "systimer"
95-
harness = false
96-
97-
[[bin]]
98-
name = "twai"
99-
harness = false
100-
10189
[[bin]]
10290
name = "esp_radio"
10391
harness = false

0 commit comments

Comments
 (0)