mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-12-12 16:57:25 +00:00
31ff36e09d
Implements a carousel rendering and displaying remote HTML + JPEG + PNGs on a variety of display devices, including several EPDs.
34 lines
867 B
Bash
Executable File
34 lines
867 B
Bash
Executable File
#!/bin/sh
|
|
|
|
USBPORT="/dev/serial/by-path/pci-0000:00:14.0-usb-0:8.4.2.3.1:1.0-port0"
|
|
|
|
idf.py build
|
|
if [ $? -ne 0 ] ; then
|
|
exit 1;
|
|
fi
|
|
|
|
#
|
|
# (no arg) flash from scratch
|
|
# u Upload to repo and reboot
|
|
# f Force update into both OTA and reboot
|
|
#
|
|
|
|
if [ -z "$1" ] ; then
|
|
idf.py -p $USBPORT build flash
|
|
fi
|
|
|
|
if [ "$1" == "u" ] ; then
|
|
../../../../contrib/lws_ota-manifest.sh \
|
|
build/lws-minimal-esp32.bin \
|
|
../../../../libwebsockets.org-ota-v1.private.jwk \
|
|
"libwebsockets.org:/var/www/libwebsockets.org/firmware/examples/"
|
|
fi
|
|
|
|
if [ "$1" == "f" ] ; then
|
|
parttool.py --baud 921600 --port $USBPORT -f partitions.csv write_partition --partition-name=ota_0 --input build/lws-minimal-esp32.bin
|
|
parttool.py --baud 921600 --port $USBPORT -f partitions.csv write_partition --partition-name=ota_1 --input build/lws-minimal-esp32.bin
|
|
fi
|
|
|
|
idf.py -p $USBPORT monitor
|
|
|