esp_8_bit icon indicating copy to clipboard operation
esp_8_bit copied to clipboard

REQUEST: Binary image

Open Zibri opened this issue 5 years ago • 6 comments

Can you release also a binary image to flash with Flash Download Tool?

Zibri avatar Aug 14 '20 20:08 Zibri

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

sansaloneverretn avatar Sep 23 '20 20:09 sansaloneverretn

ohhhh thanks!!!!

Zibri avatar Sep 24 '20 15:09 Zibri

is there an ATARI 2600 version? I would love that

Zibri avatar Sep 24 '20 15:09 Zibri

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

Zibri avatar Jul 04 '21 23:07 Zibri

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

reppad avatar Aug 19 '21 14:08 reppad