mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 11:36:59 +03:00
19 lines
861 B
Plaintext
19 lines
861 B
Plaintext
|
|
====LINUX====
|
|
To flash sequeezelite run the following script:
|
|
./writeSequeezeEsp.sh [PORT_HERE] [BAUD_RATE]
|
|
e.g. ./writeSequeezeEsp.sh /dev/ttyUSB0 115200
|
|
|
|
====WINDOWS====
|
|
To flash sequeezelite run the following script:
|
|
./writeSequeezeEsp.bat [PORT_HERE] [BAUD_RATE]
|
|
e.g. ./writeSequeezeEsp.bat COM11 115200
|
|
|
|
If you don't know how to run the BAT file with arguments then you can
|
|
edit the bat file in Notepad. Open the file up and edit the following:
|
|
Change 'set port=%1' to 'set port=[PORT_HERE]'. E.g. 'set port=COM11'
|
|
Change 'set baud=%2' to 'set baud=[BAUD_RATE]'. E.g. 'set baud=115200'
|
|
|
|
====MANUAL====
|
|
Python esptool.py --port [PORT_HERE] --baud [BAUD_RATE] write_flash --flash_mode dio --flash_freq 80m --flash_size detect 0x1000 bootloader/bootloader.bin 0x8000 partitions.bin 0xd000 ota_data_initial.bin 0x10000 recovery.bin 0x150000 squeezelite.bin
|