mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 20:59:00 +08:00
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
BOARD = h747
|
|
IDE = GCC+make
|
|
RTOS = baremetal
|
|
WIZARD_URL ?= http://mongoose.ws/wizard
|
|
|
|
all build example: firmware.bin
|
|
|
|
firmware.bin: wizard
|
|
make -C wizard CFLAGS_EXTRA=$(CFLAGS_EXTRA) && mv wizard/firmware.bin ./
|
|
|
|
wizard:
|
|
hash=$$(curl -s -X POST -H "Content-Type: application/json" -d '{"build":{"board":"$(BOARD)","ide":"$(IDE)","rtos":"$(RTOS)"}}' $(WIZARD_URL)/api/hash | jq -r '.hash') \
|
|
&& curl -s $(WIZARD_URL)/api/zip/$(BOARD)/$(IDE)/$(RTOS)/$$hash -o wizard.zip
|
|
unzip wizard.zip
|
|
cd wizard ; rm mongoose.[ch] ; ln -s ../../../../mongoose.c ; ln -s ../../../../mongoose.h
|
|
|
|
|
|
# Automated remote test. Requires env variable VCON_API_KEY set. See https://vcon.io/automated-firmware-tests/
|
|
DEVICE_URL ?= https://dash.vcon.io/api/v3/devices/??
|
|
update: firmware.bin
|
|
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/ota --data-binary @$<
|
|
|
|
test update: CFLAGS_EXTRA ="-DUART_DEBUG=USART?"
|
|
test: update
|
|
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/tx?t=15 | tee /tmp/output.txt
|
|
grep 'READY, IP:' /tmp/output.txt # Check for network init
|
|
|
|
clean:
|
|
rm -rf firmware.* wizard*
|