Simple script to create package to upload code into ESP32 without the whole toolchain installed

pull/30/head
Pawel Jalocha 2020-08-30 13:18:33 +01:00
rodzic bbf55ae81d
commit e04b2d3ad3
3 zmienionych plików z 3069 dodań i 0 usunięć

1
bin-arch.sh 100644
Wyświetl plik

@ -0,0 +1 @@
tar cvzf esp32-ogn-tracker-bin.tgz flash_USB?.sh esptool.py build/partitions.bin build/bootloader/bootloader.bin build/app-template.bin

3065
esptool.py 100755

Plik diff jest za duży Load Diff

3
flash_USB0.sh 100644
Wyświetl plik

@ -0,0 +1,3 @@
python esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 921600 --before default_reset --after hard_reset \
write_flash -u --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 \
build/bootloader/bootloader.bin 0x10000 build/app-template.bin 0x8000 build/partitions.bin