mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
13 lines
479 B
Makefile
13 lines
479 B
Makefile
|
LD_FILE = $(BOARD_PATH)/$(BOARD).ld
|
||
|
|
||
|
# flash using Nordic nrfutil (pip2 install nrfutil)
|
||
|
# make BOARD=pca10059 SERIAL=/dev/ttyACM0 all flash
|
||
|
NRFUTIL = nrfutil
|
||
|
|
||
|
$(BUILD)/$(BOARD)-firmware.zip: $(BUILD)/$(BOARD)-firmware.hex
|
||
|
$(NRFUTIL) pkg generate --hw-version 52 --sd-req 0x0000 --debug-mode --application $^ $@
|
||
|
|
||
|
flash: $(BUILD)/$(BOARD)-firmware.zip
|
||
|
@:$(call check_defined, SERIAL, example: SERIAL=/dev/ttyACM0)
|
||
|
$(NRFUTIL) dfu usb-serial --package $^ -p $(SERIAL) -b 115200
|