Hardware Connection
This document introduces what hardware you need to prepare and how to connect them in order to download AT firmware, send AT commands, and receive AT responses.
For different series of modules, the commands supported by AT firmware are different. Please refer to ESP-AT Firmware Differences for more details.
What You Need
Component |
Function |
---|---|
ESP32-C2 board |
Slave MCU. |
USB cable (ESP32-C2 borad to PC) |
Download/Log output connection. |
PC |
Act as Host MCU. Download firmware to Slave MCU. |
USB cable (PC to serial port converter) |
AT command/response connection. |
USB to serial port converter |
Convert between USB signals and TTL signals. |
Jumper wires (serial port converter to ESP32-C2 board) |
AT command/response connection. |
Note:
The official default AT Binary Lists only supports 26 MHz crystal oscillator. If your crystal oscillator of ESP32-C2 is 40 MHz, please refer to Compile ESP-AT Project document to compile ESP32-C2 AT firmware, and configurate in the step 5:
python build.py menuconfig -> Component config -> Hardware Settings -> Main XTAL Config -> Main XTAL frequency -> 40 MHz
In the above picture, four jump wires are used to connect the ESP32-C2 board and USB to serial converter. If you don’t use hardware flow control, two wires connecting TX/RX and a simpler converter will be enough.
ESP32C2-4MB Series
ESP32C2-4MB series refer to the module or board that has a built-in ESP32-C2/ESP8684 chip with a 4 MB flash, such as ESP32C2-MINI series device and ESP32C2-WROOM series device.
ESP32C2-4MB AT uses two UART ports: UART0 is used to download firmware and log output; UART1 is used to send AT commands and receive AT responses. Both UART0 and UART1 use 115200
baud rate for communication by default.
Function of Connection |
ESP32C2-4MB Board Pins |
Other Device Pins |
---|---|---|
Download/Log output 1 |
|
|
AT command/response 2 |
|
|
Note 1: Connection between individual pins of the ESP32C2-4MB board and the PC is already established internally on the ESP32C2-4MB board. You only need to provide USB cable between the board and PC.
Note 2: Connection between CTS/RTS is optional, depending on whether you want to use hardware flow control.
If you want to connect your device directly with ESP32C2-4MB module rather than the ESP32C2-4MB board that integrates it, please refer to the corresponding module datasheet for more details.
ESP32C2-2MB Series
ESP32C2-2MB series refers to the module or board that has a built-in ESP32-C2/ESP8684 chip with a 2 MB flash.
ESP32C2-2MB AT uses two UART ports: UART0 is used to download firmware and log output; UART1 is used to send AT commands and receive AT responses. Both UART0 and UART1 use 115200
baud rate for communication by default.
Function of Connection |
ESP32C2-2MB Board Pins |
Other Device Pins |
---|---|---|
Download/Log output 1 |
|
|
AT command/response 2 |
|
|
Log output |
|
|
Note 1: Connection between individual pins of the ESP32C2-2MB board and the PC is already established internally on the ESP32C2-2MB board. You only need to provide USB cable between the board and PC.
Note 2: Connection between CTS/RTS is optional, depending on whether you want to use hardware flow control.
If you want to connect your device directly with ESP32C2-2MB module rather than the ESP32C2-2MB board that integrates it, please refer to the corresponding module datasheet for more details.