diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-05-13 16:20:52 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-05-13 16:20:52 +0200 |
| commit | 7089e5b586b1f35256ce285d14403676437fc4c2 (patch) | |
| tree | 112675fd5b51af9ca0361aca9140b34ffdf13c47 /tests/stm32/src/bin | |
| parent | 3c52ef60b19468a8700d612699c869f0bdcae339 (diff) | |
stm32/tests: add stm32u0 hil.
Diffstat (limited to 'tests/stm32/src/bin')
| -rw-r--r-- | tests/stm32/src/bin/rng.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/stm32/src/bin/rng.rs b/tests/stm32/src/bin/rng.rs index 7f2023d4d..15ef4fb60 100644 --- a/tests/stm32/src/bin/rng.rs +++ b/tests/stm32/src/bin/rng.rs | |||
| @@ -23,12 +23,17 @@ bind_interrupts!(struct Irqs { | |||
| 23 | bind_interrupts!(struct Irqs { | 23 | bind_interrupts!(struct Irqs { |
| 24 | RNG_LPUART1 => rng::InterruptHandler<peripherals::RNG>; | 24 | RNG_LPUART1 => rng::InterruptHandler<peripherals::RNG>; |
| 25 | }); | 25 | }); |
| 26 | #[cfg(any(feature = "stm32u083rc"))] | ||
| 27 | bind_interrupts!(struct Irqs { | ||
| 28 | RNG_CRYP => rng::InterruptHandler<peripherals::RNG>; | ||
| 29 | }); | ||
| 26 | #[cfg(not(any( | 30 | #[cfg(not(any( |
| 27 | feature = "stm32l4a6zg", | 31 | feature = "stm32l4a6zg", |
| 28 | feature = "stm32l073rz", | 32 | feature = "stm32l073rz", |
| 29 | feature = "stm32h755zi", | 33 | feature = "stm32h755zi", |
| 30 | feature = "stm32h753zi", | 34 | feature = "stm32h753zi", |
| 31 | feature = "stm32f429zi" | 35 | feature = "stm32f429zi", |
| 36 | feature = "stm32u083rc" | ||
| 32 | )))] | 37 | )))] |
| 33 | bind_interrupts!(struct Irqs { | 38 | bind_interrupts!(struct Irqs { |
| 34 | RNG => rng::InterruptHandler<peripherals::RNG>; | 39 | RNG => rng::InterruptHandler<peripherals::RNG>; |
