Could you please put here one example project that can be directly compile with Unofficial Development Kit for Espressif ESP32 (Windows).
I can compile esp_rtos_sdk_example_2 or esp_rtos_sdk_example but both project output is 0x00000.bin and 0x20000.bin.
Console give these messages but
Code: Select all
Free IRam : 6160 or 22544 if 48k IRam
------------------------------------------------------------------------------
Generate 0x00000.bin and 0x40000.bin successully in folder firmware.
0x00000.bin-------->0x00000
0x40000.bin-------->0x40000
Done
other non rtos firmware are working.
i think , i solve the problem,for rtos sdk they changed base address to 0x20000 so 0x20000.bin seems the correct output ;
You need to change these lines in make file ;
Code: Select all
flash: all
$(ESPTOOL) -p $(ESPPORT) -b $(BAUD) write_flash $(flashimageoptions) 0x00000 $(FW_BASE)/0x00000.bin 0x20000 $(FW_BASE)/0x20000.bin