I can program this thing one time and it works OK. If I do it a second time, then it goes into a wierd loop spewing lots of binary data that makes no sense and isn't being displayed on the /dev/ttyUSB1 window. If I use esptool.py to erase flash, it lets it work one more time and then fails on the next compile/load.
So I'd like to figure out how to reflash all the firmware and get the chip back to factory specs. I did an online search and didn't see anything I could use. I did see a this command:
But I didn't know how to get the partition-table.bin. i did find the bootloader.bin.
python esptool.py -p /dev/tty.usbserial-0001 -b 460800 --before default_reset --after hard_reset --chip esp32 write_flash --flash_mode dio --flash_size detect --flash_freq 40m 0x1000 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 build/hello_world.bin
It fails on multiple sources that work in other boards.
Thanks for any guidance,
Jim