mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-01-29 22:00:54 +03:00
retrofit to gcc8/CMake
This commit is contained in:
18
flash_cmd.txt
Normal file
18
flash_cmd.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
====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
|
||||
Reference in New Issue
Block a user