Skip to content

Commit 7708dff

Browse files
committed
change: Updated esp32c61 uart1 gpios for pin-to-pin match with esp32c6
1 parent bed9f66 commit 7708dff

6 files changed

Lines changed: 21 additions & 21 deletions

File tree

components/customized_partitions/raw_data/factory_param/factory_param_data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ PLATFORM_ESP32C2,ESP32C2-2MB-NO-OTA-G2,"2MB, Wi-Fi + BLE, No OTA, ECO4, TX:7 RX:
1919
PLATFORM_ESP32C5,ESP32C5-4MB,"4MB, Wi-Fi + BLE, OTA, TX:23 RX:24",4,78,1,1,13,CN,115200,23,24,25,26,1
2020
PLATFORM_ESP32C5,ESP32C5-SDIO,"4MB, Wi-Fi + BLE, OTA, communicate with MCU via SDIO",4,78,-1,1,13,CN,-1,-1,-1,-1,-1,1
2121
PLATFORM_ESP32C6,ESP32C6-4MB,"4MB, Wi-Fi + BLE, OTA, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4,1
22-
PLATFORM_ESP32C61,ESP32C61-4MB,"4MB, Wi-Fi + BLE, OTA, TX:6 RX:5",4,78,1,1,13,CN,115200,6,5,4,3,1
22+
PLATFORM_ESP32C61,ESP32C61-4MB,"4MB, Wi-Fi + BLE, OTA, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4,1
2323
PLATFORM_ESP32S2,MINI,"4MB, Wi-Fi, OTA, TX:17 RX:21",4,78,1,1,13,CN,115200,17,21,20,19,1

docs/en/Compile_and_Develop/esp-at_firmware_differences.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -572,10 +572,10 @@ Hardware Differences
572572
* - PSRAM
573573
- |icon-red-cross|
574574
* - UART Pins [#one]_
575-
- | TX: 6
576-
| RX: 5
577-
| CTS: 4
578-
| RTS: 3
575+
- | TX: 7
576+
| RX: 6
577+
| CTS: 5
578+
| RTS: 4
579579
580580
.. only:: esp32s2
581581

docs/en/Get_Started/Hardware_connection.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,10 +568,10 @@ Note:
568568
* RX
569569
* - AT command/response :sup:`2`
570570
- UART1
571-
* GPIO5 (RX)
572-
* GPIO6 (TX)
573-
* GPIO4 (CTS)
574-
* GPIO3 (RTS)
571+
* GPIO6 (RX)
572+
* GPIO7 (TX)
573+
* GPIO5 (CTS)
574+
* GPIO4 (RTS)
575575
- USB to UART converter
576576
* TX
577577
* RX

docs/zh_CN/Compile_and_Develop/esp-at_firmware_differences.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -572,10 +572,10 @@ ESP-AT 固件差异
572572
* - PSRAM
573573
- |icon-red-cross|
574574
* - UART 管脚 [#one]_
575-
- | TX: 6
576-
| RX: 5
577-
| CTS: 4
578-
| RTS: 3
575+
- | TX: 7
576+
| RX: 6
577+
| CTS: 5
578+
| RTS: 4
579579
580580
.. only:: esp32s2
581581

docs/zh_CN/Get_Started/Hardware_connection.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,10 +568,10 @@
568568
* RX
569569
* - AT 命令/响应 :sup:`2`
570570
- UART1
571-
* GPIO5 (RX)
572-
* GPIO6 (TX)
573-
* GPIO4 (CTS)
574-
* GPIO3 (RTS)
571+
* GPIO6 (RX)
572+
* GPIO7 (TX)
573+
* GPIO5 (CTS)
574+
* GPIO4 (RTS)
575575
- USB 转 UART 串口模块
576576
* TX
577577
* RX

main/interface/include/at_uart.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@
8080
#endif
8181

8282
#if defined(CONFIG_IDF_TARGET_ESP32C61)
83-
#define CONFIG_AT_UART_PORT_TX_PIN_DEFAULT 6
84-
#define CONFIG_AT_UART_PORT_RX_PIN_DEFAULT 5
85-
#define CONFIG_AT_UART_PORT_CTS_PIN_DEFAULT 4
86-
#define CONFIG_AT_UART_PORT_RTS_PIN_DEFAULT 3
83+
#define CONFIG_AT_UART_PORT_TX_PIN_DEFAULT 7
84+
#define CONFIG_AT_UART_PORT_RX_PIN_DEFAULT 6
85+
#define CONFIG_AT_UART_PORT_CTS_PIN_DEFAULT 5
86+
#define CONFIG_AT_UART_PORT_RTS_PIN_DEFAULT 4
8787
#endif
8888

8989
#if defined(CONFIG_IDF_TARGET_ESP32C2)

0 commit comments

Comments
 (0)