Skip to content

Commit

Permalink
Enable test on more devices that have SPI3
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Sep 3, 2024
1 parent 0fa2cd7 commit e39e0d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hil-test/tests/embassy_interrupt_spi_dma.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Reproduction and regression test for a sneaky issue.

//% CHIPS: esp32s3
//% CHIPS: esp32 esp32s2 esp32s3
//% FEATURES: integrated-timers
//% FEATURES: generic-queue

Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit e39e0d2

Please sign in to comment.