From d5dbcc4734c8c2c22e272ccc131b37dad58e7acb Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Fri, 6 Sep 2024 11:19:12 +0200 Subject: [PATCH] feat: Disable test_asymmetric_dma_transfer for S2 --- hil-test/tests/spi_full_duplex_dma.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hil-test/tests/spi_full_duplex_dma.rs b/hil-test/tests/spi_full_duplex_dma.rs index 7d9b586d76d..812f8b2e5e4 100644 --- a/hil-test/tests/spi_full_duplex_dma.rs +++ b/hil-test/tests/spi_full_duplex_dma.rs @@ -96,6 +96,7 @@ mod tests { #[test] #[timeout(3)] + #[cfg(not(feature = "esp32s2"))] fn test_asymmetric_dma_transfer(ctx: Context) { let (rx_buffer, rx_descriptors, tx_buffer, tx_descriptors) = dma_buffers!(2, 4); let dma_rx_buf = DmaRxBuf::new(rx_descriptors, rx_buffer).unwrap();