ESP32 Thread Border Router Board with 4MB flash #161
|
I very recently bought the Espressif Thread Border Router board (h/w V1.2) and have been using firmware Release 1.2 |
Replies: 3 comments 3 replies
|
Hi @bonzo-dog , thanks for your question! Here are the steps which you can try (starting with a clean folder, i.e. idf.py fullclean):
If you find a need to reduce the binary size even further, please refer to: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-guides/performance/size.html#reducing-overall-size Please feel free to reach out if you need any other assistance! |
|
FYI @bonzo-dog We have two hardware revisions of the TBR V1.2 board.
The reason we changed the S3 variant is that we found 4 MB of flash is quite limited for the TBR to perform OTA together with RCP updates. So if you plan to build your own applications and design your product, we recommend using the latest version. |
|
I tried to follow this guide, but now get the following error:
Do I also need to change the offset? What about otadata? |
Hi @bonzo-dog , thanks for your question!
Here are the steps which you can try (starting with a clean folder, i.e. idf.py fullclean):
examples/basic_thread_border_router/sdkconfig.defaultsCONFIG_ESPTOOLPY_FLASHSIZE_8MBwithCONFIG_ESPTOOLPY_FLASHSIZE_4MBCONFIG_LOG_DEFAULT_LEVEL_NONE=ybuild erase-flash flash monitoras per usualIf you find a need to reduce the binary size even further, please refer to: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-guides/performance/size.html#reducing-overall-size
Please feel free to reach out if you need …