Skip to content

Releases: EremusOne/CPCESP_alpha

CPCESP 0.84.1 (alpha)

07 Jul 02:53
7fb4fed
Compare
Choose a tag to compare

New Features:

Everything :D First alpha release.

How to Flash:

Note

The current bin file can be flashed in any of the two supported boards (Lilygo TTGO VGA32 and Olimex ESP32-SBC-FabGL).

Flashing tutorial (in Spanish, auto translation supported)

Whilst it shows how to flash ESPectrum bin files, it is exactly same procedure for CPCESP bin.

https://youtu.be/fxzaKa-J6gk?si=uP7kxuqSSeoLM7vR

Windows:

Use Flash download tools from Espressif to flash it into your board:

Open the ESP32 Flash Download Tool.
Select "ESP32" as chipType.
Select "Develop" as workMode.

Once started:

Select COM Port (whichever one your board has taken).
Select Baud rate (460800 works fine for me).

Finally:

Load .bin file, set 0x0 as address, check it and press START.
Wait until status panel shows "FINISH", power off and power on your board and ENJOY!

Linux / Mac / Windows:

Use esptool.py from Espressif to flash it into your board:

esptool.py -p USB SERIAL DEVICE -b 460800 --before default_reset --after hard_reset --chip esp32 write_flash --flash_mode dio --flash_size detect --flash_freq 40m 0x0 CPCESP.0.84-1.bin

(Don't forget to change USB SERIAL DEVICE on -p parameter to reflect the serial port where your system has detected your board)