But am confused - how do I create the firmware image file that I will upload?
In Arduino IDE I tried Sketch menu > Export Compiled Binary.
In my sketch folder I see:
/build/esp32.esp32.wt32-eth01/
which contains files:
ConnectBox2.ino.bin
ConnectBox2.ino.bootloader.bin
ConnectBox2.ino.elf
ConnectBox2.ino.map
ConnectBox2.ino.merged.bin
ConnectBox2.ino.partitions.bin
I tried uploading the file ConnectBox2.ino.bin but my wt32 crashed:
I don't understand any of the decoded exception.abort() was called at PC 0x40081c99 on core 1
Backtrace: 0x40082a15:0x3ffceb10 0x4008e2e5:0x3ffceb30 0x4009362d:0x3ffceb50 0x40081c99:0x3ffcebd0 0x400eb5cb:0x3ffcec20 0x400e2d15:0x3ffcec40 0x400e2b24:0x3ffcec60 0x400e2c9c:0x3ffcec80 0x400d3e45:0x3ffcecb0 0x400e0455:0x3ffcecf0 0x40185512:0x3ffced50 0x400dd5cd:0x3ffced80 0x400de14d:0x3ffcee00 0x400de2f1:0x3ffcee50 0x400d95ad:0x3ffcee70 0x400d9625:0x3ffceea0 0x400d9e2a:0x3ffceec0 0x40090a6e:0x3ffceef0
Decoding stack results
0x40082a15: panic_abort at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/esp_system/panic.c:466
0x4008e2e5: esp_system_abort at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/esp_system/port/esp_system_chip.c:84
0x4009362d: abort at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/newlib/abort.c:38
0x40081c99: esp_flash_erase_region at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/spi_flash/esp_flash_api.c:595
0x400eb5cb: esp_partition_erase_range at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/esp_partition/partition_target.c:134
0x400e2d15: is in EspClass::partitionEraseRange(esp_partition_t const*, unsigned long, unsigned int) (/home/martin/.arduino15/packages/esp32/hardware/esp32/3.0.5/cores/esp32/Esp.cpp:487).
0x400e2b24: UpdateClass::_writeBuffer() at /home/martin/.arduino15/packages/esp32/hardware/esp32/3.0.5/libraries/Update/src/Updater.cpp:390
0x400e2c9c: is in UpdateClass::write(unsigned char*, unsigned int) (/home/martin/.arduino15/packages/esp32/hardware/esp32/3.0.5/libraries/Update/src/Updater.cpp:503).
0x400d3e45: is in std::_Function_handler<void(AsyncWebServerRequest*, const String&, unsigned int, unsigned char*, unsigned int, bool), http_server_init()::<lambda(AsyncWebServerRequest*, String, size_t, uint8_t*, size_t, bool)> >::_M_invoke(const std::_Any_data &, AsyncWebServerRequest *&&, const String &, unsigned int &&, unsigned char *&&, unsigned int &&, bool &&) (/home/martin/Documents/Programming/arduino/sketchbook/imagineear/ConnectBox2/http_server.cpp:94).
0x400e0455: is in AsyncCallbackWebHandler::handleUpload(AsyncWebServerRequest*, String const&, unsigned int, unsigned char*, unsigned int, bool) (/home/martin/.arduino15/packages/esp32/tools/esp-x32/2302/xtensa-esp32-elf/include/c++/12.2.0/bits/std_function.h:587).
0x40185512: is in AsyncWebServerRequest::_handleUploadByte(unsigned char, bool) (/home/martin/Documents/Programming/arduino/sketchbook/libraries/ESP_Async_WebServer/src/WebRequest.cpp:367).
0x400dd5cd: is in AsyncWebServerRequest::_parseMultipartPostByte(unsigned char, bool) (/home/martin/Documents/Programming/arduino/sketchbook/libraries/ESP_Async_WebServer/src/WebRequest.cpp:406).
0x400de14d: is in AsyncWebServerRequest::_onData(void*, unsigned int) (/home/martin/Documents/Programming/arduino/sketchbook/libraries/ESP_Async_WebServer/src/WebRequest.cpp:109).
0x400de2f1: is in std::_Function_handler<void(void*, AsyncClient*, void*, unsigned int), AsyncWebServerRequest::AsyncWebServerRequest(AsyncWebServer*, AsyncClient*)::<lambda(void*, AsyncClient*, void*, size_t)> >::_M_invoke(const std::_Any_data &, void *&&, AsyncClient *&&, void *&&, unsigned int &&) (/home/martin/Documents/Programming/arduino/sketchbook/libraries/ESP_Async_WebServer/src/WebRequest.cpp:43).
0x400d95ad: is in AsyncClient::_recv(tcp_pcb*, pbuf*, signed char) (/home/martin/.arduino15/packages/esp32/tools/esp-x32/2302/xtensa-esp32-elf/include/c++/12.2.0/bits/std_function.h:591).
0x400d9625: is in AsyncClient::_s_recv(void*, tcp_pcb*, pbuf*, signed char) (/home/martin/Documents/Programming/arduino/sketchbook/libraries/AsyncTCP/src/AsyncTCP.cpp:1210).
0x400d9e2a: _async_service_task(void*) at /home/martin/Documents/Programming/arduino/sketchbook/libraries/AsyncTCP/src/AsyncTCP.cpp:162
0x40090a6e: vPortTaskWrapper at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:162
Can anyone tell me how to create the required firmware image file?