From 1a5c79ebc7d51cbf720b13db4d9ef8e1c1534b82 Mon Sep 17 00:00:00 2001 From: Kirill Mikhailov <62840029+playfulFence@users.noreply.github.com> Date: Mon, 1 Sep 2025 18:00:22 +0200 Subject: [PATCH] swap the SDA/SCL order in HIL tests (S2/S3) (#4018) --- hil-test/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hil-test/src/lib.rs b/hil-test/src/lib.rs index 739551fe0..25948c229 100644 --- a/hil-test/src/lib.rs +++ b/hil-test/src/lib.rs @@ -57,7 +57,7 @@ macro_rules! i2c_pins { // Order: (SDA, SCL) cfg_if::cfg_if! { if #[cfg(any(esp32s2, esp32s3))] { - ($peripherals.GPIO2, $peripherals.GPIO3) + ($peripherals.GPIO3, $peripherals.GPIO2) } else if #[cfg(esp32)] { ($peripherals.GPIO32, $peripherals.GPIO33) } else if #[cfg(esp32c6)] {