Update preprocess to use $(BOARD)
The preprocess to create watch.py was hard coded for PineTime so changed to $(BOARD) This will be required for other watches like the P8 Signed-off-by: Steve Amor <steveamor@users.noreply.github.com>
This commit is contained in:
parent
823e85584d
commit
9eb9b74d45
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -31,7 +31,7 @@ reloader: bootloader
|
|||
softdevice:
|
||||
micropython/ports/nrf/drivers/bluetooth/download_ble_stack.sh
|
||||
|
||||
micropython: wasp/boards/pinetime/watch.py
|
||||
micropython: wasp/boards/$(BOARD)/watch.py
|
||||
$(MAKE) -C micropython/mpy-cross
|
||||
$(RM) micropython/ports/nrf/build-$(BOARD)-s132/frozen_content.c
|
||||
$(MAKE) -C micropython/ports/nrf \
|
||||
|
@ -44,9 +44,9 @@ micropython: wasp/boards/pinetime/watch.py
|
|||
--application micropython/ports/nrf/build-$(BOARD)-s132/firmware.hex \
|
||||
micropython.zip
|
||||
|
||||
wasp/boards/pinetime/watch.py : wasp/boards/pinetime/watch.py.in
|
||||
(cd wasp; ../tools/preprocess.py boards/pinetime/watch.py.in > \
|
||||
boards/pinetime/watch.py)
|
||||
wasp/boards/$(BOARD)/watch.py : wasp/boards/$(BOARD)/watch.py.in
|
||||
(cd wasp; ../tools/preprocess.py boards/$(BOARD)/watch.py.in > \
|
||||
boards/$(BOARD)/watch.py)
|
||||
|
||||
dfu:
|
||||
python3 -m nordicsemi dfu serial --package micropython.zip --port /dev/ttyACM0
|
||||
|
|
Loading…
Reference in a new issue