Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernQ committed Sep 10, 2024
1 parent 6c857dc commit a737763
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions hil-test/tests/spi_full_duplex_dma_write_read.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
//! SPI Full Duplex DMA write + read Test
//! See issue #2059
//!
//! Folowing pins are used:
//! SCLK GPIO0
//! MISO GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
//! GPIO GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
//!
//! Connect MISO and GPIO pins.
//! Uses the [hil_test::common_test_pins] pair connected to each other.

//% CHIPS: esp32 esp32c2 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3

Expand Down Expand Up @@ -58,7 +53,7 @@ mod tests {
let io = Io::new(peripherals.GPIO, peripherals.IO_MUX);
let sclk = io.pins.gpio0;
let (miso, gpio) = hil_test::common_test_pins!(io);
let _gpio = Output::new(gpio.degrade(), Level::High);
let _gpio = Output::new(gpio, Level::High);

let dma = Dma::new(peripherals.DMA);

Expand Down

0 comments on commit a737763

Please sign in to comment.