we just migrated our project from the make-based build system to CMake (on ESP-IDF v3.3.1 on a Windows 10 machine). The project compiles well but when flashing we get the wrong command generated by idf.py:
Code: Select all
>ninja flash
[1/4] Performing build step for 'bootloader'
ninja: no work to do.
[1/2] cmd.exe /C "cd /D C:\coding\esp-idf\components\esptool_py && C:\programs\CMake\bin\cmake.exe -D IDF_PATH="C:/coding/esp-idf" ...h @flash_project_args" -D ESPTOOL_WORKING_DIR="C:/projects/vcu/build" -P C:/coding/esp-idf/components/esptool_py/run_esptool.cmake"
Note: Using default baud rate 460800. To modify, set ESPBAUD environment variable.
esptool.py --chip esp32 -p COM23 -b 460800 write_flash --flash_mode dio --flash_freq 40m --flash_size 16MB 0x1000 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin esp32/phy_init_data.bin 0xd000 ota_data_initial.bin 0x10000 VCU.bin
Code: Select all
--flash_mode dio --flash_freq 40m --flash_size 16MB 0x1000 bootloader/bootloader.bin
0x8000 partition_table/partition-table.bin
esp32/phy_init_data.bin
0xd000 ota_data_initial.bin
0x10000 VCU.bin
How can I debug this further?