Skip to content

Commit be3d38c

Browse files
committed
review comments
1 parent 34182d1 commit be3d38c

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

hil-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Our self-hosted runners have the following setup:
113113

114114
[connection_c2]: https://docs.espressif.com/projects/esp-idf/en/stable/esp32c2/api-guides/jtag-debugging/configure-other-jtag.html#configure-hardware
115115
[connection_s2]: https://docs.espressif.com/projects/esp-idf/en/stable/esp32s2/api-guides/jtag-debugging/configure-other-jtag.html#configure-hardware
116-
[connection_esp32]: https://docs.espressif.com/projects/esp-idf/en/v5.3.1/esp32/api-guides/jtag-debugging/configure-other-jtag.html#configure-hardware
116+
[connection_esp32]: https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/jtag-debugging/configure-other-jtag.html#configure-hardware.html#configure-hardware
117117
[`hil.yml`]: https://github.com/esp-rs/esp-hal/blob/main/.github/workflows/hil.yml
118118
[setup]: #rpi-setup
119119

hil-test/tests/gpio.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! GPIO Test
22
//!
33
//! Folowing pins are used:
4-
//! GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5-
//! GPIO3 / GPIO10 / GPIO26 (esp32s2 / esp32s3 / esp32)
4+
//! GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
5+
//! GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
66
77
//% CHIPS: esp32 esp32c2 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
88
//% FEATURES: generic-queue

hil-test/tests/spi_full_duplex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Folowing pins are used:
44
//! SCLK GPIO0
5-
//! MISO GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5+
//! MISO GPIO2(esp32s2) / GPIO9(esp32s3) / GPIO26(esp32)
66
//! MOSI GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
77
//!
88
//! Connect MISO and MOSI pins.

hil-test/tests/spi_full_duplex_dma.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
//!
33
//! Folowing pins are used:
44
//! SCLK GPIO0
5-
//! MISO GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
6-
//! MOSI GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
5+
//! MISO GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
6+
//! MOSI GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
77
//!
88
//! Connect MISO and MOSI pins.
99

hil-test/tests/spi_half_duplex_read.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//!
33
//! Folowing pins are used:
44
//! SCLK GPIO0
5-
//! MISO GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5+
//! MISO GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
66
//!
7-
//! GPIO GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 /esp32)
7+
//! GPIO GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
88
//!
99
//! Connect MISO and GPIO pins.
1010

hil-test/tests/spi_half_duplex_write.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//!
33
//! Following pins are used:
44
//! SCLK GPIO0
5-
//! MOSI GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5+
//! MOSI GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
66
//!
7-
//! PCNT GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
7+
//! PCNT GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
88
//!
99
//! Connect MOSI and PCNT pins.
1010

hil-test/tests/twai.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! TWAI test
22
//!
33
//! Folowing pins are used:
4-
//! TX GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5-
//! RX GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
4+
//! TX GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
5+
//! RX GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
66
//!
77
//! Connect TX and RX pins.
88

hil-test/tests/uart.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! UART Test
22
//!
33
//! Folowing pins are used:
4-
//! TX GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5-
//! RX GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
4+
//! TX GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
5+
//! RX GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
66
//!
77
//! Connect TX and RX pins.
88

hil-test/tests/uart_async.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! UART Test
22
//!
33
//! Folowing pins are used:
4-
//! TX GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5-
//! RX GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
4+
//! TX GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
5+
//! RX GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
66
//!
77
//! Connect TX and RX pins.
88

hil-test/tests/uart_tx_rx.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! UART TX/RX Test
22
//!
33
//! Folowing pins are used:
4-
//! TX GPIO2 / GPIO9 / GPIO26 (esp32s2 / esp32s3 / esp32)
5-
//! RX GPIO3 / GPIO10 / GPIO27 (esp32s2 / esp32s3 / esp32)
4+
//! TX GPIO2 / GPIO9 (esp32s2 / esp32s3) / GPIO26 (esp32)
5+
//! RX GPIO3 / GPIO10 (esp32s2 / esp32s3) / GPIO27 (esp32)
66
//!
77
//! Connect TX and RX pins.
88

0 commit comments

Comments
 (0)