25 lines
576 B
Makefile
25 lines
576 B
Makefile
#SERIAL_PORT=/dev/tty.SLAB_USBtoUART
|
|
SERIAL_PORT=/dev/tty.wchusbserial1410
|
|
#SERIAL_PORT=/dev/ttyUSB0
|
|
|
|
all: flash lib config update reboot
|
|
|
|
reboot:
|
|
esptool.py -p $(SERIAL_PORT) --after hard_reset read_mac
|
|
|
|
lib:
|
|
sleep 1
|
|
ampy -p $(SERIAL_PORT) put uwebsockets.py
|
|
|
|
update:
|
|
ampy -p $(SERIAL_PORT) put hal.py
|
|
ampy -p $(SERIAL_PORT) put main.py
|
|
ampy -p $(SERIAL_PORT) put boot.py
|
|
|
|
config:
|
|
ampy -p $(SERIAL_PORT) put config.json
|
|
|
|
flash:
|
|
esptool.py -p $(SERIAL_PORT) -b 460800 erase_flash
|
|
esptool.py -p $(SERIAL_PORT) -b 460800 write_flash --flash_mode dio 0x1000 esp32-*.bin
|