From e39e0d2a94179f4dff3a53e21763e85ed9f579ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Tue, 3 Sep 2024 10:12:23 +0200 Subject: [PATCH] Enable test on more devices that have SPI3 --- hil-test/tests/embassy_interrupt_spi_dma.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hil-test/tests/embassy_interrupt_spi_dma.rs b/hil-test/tests/embassy_interrupt_spi_dma.rs index 5e6ce64c3ec..13412f5768a 100644 --- a/hil-test/tests/embassy_interrupt_spi_dma.rs +++ b/hil-test/tests/embassy_interrupt_spi_dma.rs @@ -1,6 +1,6 @@ //! Reproduction and regression test for a sneaky issue. -//% CHIPS: esp32s3 +//% CHIPS: esp32 esp32s2 esp32s3 //% FEATURES: integrated-timers //% FEATURES: generic-queue @@ -104,7 +104,7 @@ mod test { .with_buffers(dma_tx_buf, dma_rx_buf); let spi2 = Spi::new(peripherals.SPI3, 100.kHz(), SpiMode::Mode0, &clocks) - .with_dma(dma_channel2.configure_for_async(false, DmaPriority::Priority1)); + .with_dma(dma_channel2.configure_for_async(false, DmaPriority::Priority0)); let sw_ints = SoftwareInterruptControl::new(peripherals.SW_INTERRUPT);