I was wondering if fuse settings such as the cpu frequency etc. are separately stored from program code or with the app .bin file. Because the command that flashes firmware doesn't include anything that looks like fuse settings:
Code: Select all
python /home/user/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port COM32 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x10000 /home/user/esp/Projects/test/build/test.bin
I never thought about this till today
I know now that partition table and bootloader both can be flashed if I make with flash option or just app if I do app-flash.
Thanks!