NerdNos-Firmware/bin/bin LILYGO TDisplay S3/burnFirmware.ps1
BitMaker af62f1c6a1 TTGO-TDisplay bug 5V external power
Pin 15 on at power up to enable screen when powered from external sources
2023-12-31 01:04:54 +01:00

7 lines
411 B
PowerShell

#GET CURRENT COMPORT IF MORE THAN ONE (NOT RESOLVED)
$PORT = [System.IO.Ports.SerialPort]::getportnames()
#BURN BOOTLOADER, FIRMWARE
python -m esptool -p $PORT -b 460800 --before default_reset --after hard_reset --chip esp32s3 write_flash --flash_mode dio --flash_size detect --flash_freq 40m 0x0000 0x0000_bootloader.bin 0x8000 0x8000_partitions.bin 0xe000 0xe000_boot_app0.bin 0x10000 0x10000_firmware.bin