REQUEST: Binary image
Can you release also a binary image to flash with Flash Download Tool?
NES version: 4Mb-esp32-8-bit.zip ATARI version: 4Mb-esp32-8-bit-atari.zip video pin: 25 audio pin: 26 esptool.py --port COM0 write_flash --flash_mode dio --flash_size 4MB 0x0 4Mb-esp32-8-bit.bin
ohhhh thanks!!!!
is there an ATARI 2600 version? I would love that
NES version: 4Mb-esp32-8-bit.zip ATARI version: 4Mb-esp32-8-bit-atari.zip video pin: 25 audio pin: 26 esptool.py --port COM0 write_flash --flash_mode dio --flash_size 4MB 0x0 4Mb-esp32-8-bit.bin
how do I flash it? I have the flash download tool.. what address should I put 0x10000 ?
because at the moment I have espruino firmware on board
0x1000 bootloader.bin \
0x8000 partitions_espruino.bin \
0x10000 espruino_esp32.bin
Each of the 2 files is a full dump of the 4MB ESP flash memory so you have to unzip it and flash bin file at address 0x0, for example with esptool :
esptool.py -b 921600 -p /dev/ttyUSB0 write_flash 0x0 /path/to/4Mb-esp32-8-bit.bin