AT Binary Lists
Each of the linked above ESP-AT firmware contains several binaries dedicated to some specific functions, and the factory/factory_xxx.bin
is the combination of all binaries. So you can either download the factory/factory_xxx.bin
to address 0, or several binaries to different addresses according to download.config
. Please refer to Download AT Firmware for how to download.
at_customize.bin
provides a user partition table, which lists the starting address and partition size for theble_data.bin
, SSL certificates, MQTT certificates,factory_param_XXX.bin
, and so on. You can read and write contents of the partition listed in this file with the command AT+FS and AT+SYSFLASH.factory_param_XXX.bin
indicates the hardware configurations for different ESP32 modules (see the table below). Please make sure the correct bin is used for your specific module.Note
If you design your own module, please configure and compile with reference to How to Generate Factory Parameter Bin, and the binaries will be automatically generated after compilation. Or you can select firmware with similar configuration according to the configuration of
UART pins,PSRAM,Flash
(The premise is to ensure that the hardware meets the requirements. Please refer to ESP-AT Firmware Differences for the firmware applicable to your module).When you flash the firmware into module according to the
download.config
, thecustomized_partitions/factory_param.bin
should be replaced with the actual module-specificcustomized_partitions/factory_param_XXX.bin
. UART CTS and RTS pins are optional.
ESP32 Series
Modules |
UART Pins (TX, RX, CTS, RTS) |
Factory Parameter Bin |
---|---|---|
ESP32-WROOM-32 Series (ESP32 Default Module) |
|
|
ESP32-WROVER Series (Supports Classic Bluetooth) |
|
|
ESP32-PICO Series |
|
|
ESP32-SOLO Series |
|
|
ble_data.bin
provides Bluetooth LE services when the ESP32 works as a Bluetooth LE server;server_cert.bin
,server_key.bin
andserver_ca.bin
are examples of SSL server’s certificate;client_cert.bin
,client_key.bin
andclient_ca.bin
are examples of SSL client’s certificate;mqtt_cert.bin
,mqtt_key.bin
andmqtt_ca.bin
are examples of MQTT SSL client’s certificate;
If some of the functions are not used, then the corresponding binaries need not to be downloaded into flash.