2018-09-03 10:23:15 +02:00
|
|
|
.PHONY: \
|
|
|
|
build-feather \
|
|
|
|
circuitpy-deps \
|
|
|
|
circuitpy-freeze-kmk-nrf \
|
|
|
|
devdeps \
|
|
|
|
freeze-nrf-vendor-deps \
|
|
|
|
lint
|
2018-09-03 05:06:53 +02:00
|
|
|
|
|
|
|
devdeps: Pipfile.lock
|
2018-09-03 10:23:15 +02:00
|
|
|
@pipenv install --dev --ignore-pipfile
|
2018-09-03 05:06:53 +02:00
|
|
|
|
|
|
|
lint: devdeps
|
2018-09-03 10:23:15 +02:00
|
|
|
@pipenv run flake8
|
2018-09-03 05:06:53 +02:00
|
|
|
|
2018-09-03 10:23:15 +02:00
|
|
|
.submodules: .gitmodules
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Pulling dependencies, this may take several minutes"
|
|
|
|
@git submodule update --init --recursive
|
2018-09-03 10:23:15 +02:00
|
|
|
@touch .submodules
|
|
|
|
|
|
|
|
.circuitpy-deps: .submodules
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Building circuitpython/mpy-cross"
|
|
|
|
@make -C vendor/circuitpython/mpy-cross
|
|
|
|
@echo "===> Pulling Nordic BLE stack"
|
2018-09-03 08:39:55 +02:00
|
|
|
@cd vendor/circuitpython/ports/nrf && ./drivers/bluetooth/download_ble_stack.sh 2>/dev/null >/dev/null
|
2018-09-03 10:23:15 +02:00
|
|
|
@touch .circuitpy-deps
|
|
|
|
|
|
|
|
circuitpy-deps: .circuitpy-deps
|
|
|
|
|
|
|
|
freeze-nrf-vendor-deps: vendor/circuitpython/ports/nrf/freeze/.kmk_frozen
|
|
|
|
|
|
|
|
vendor/circuitpython/ports/nrf/freeze/.kmk_frozen: upy-freeze.txt
|
|
|
|
@echo "===> Preparing vendored dependencies for bundling"
|
|
|
|
@rm -rf vendor/circuitpython/ports/nrf/freeze/*
|
|
|
|
@cat $< | xargs -I '{}' cp -a {} vendor/circuitpython/ports/nrf/freeze/
|
|
|
|
@touch $@
|
|
|
|
|
|
|
|
circuitpy-freeze-kmk-nrf: freeze-nrf-vendor-deps
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Preparing KMK source for bundling into CircuitPython"
|
2018-09-03 10:23:15 +02:00
|
|
|
@rm -rf vendor/circuitpython/ports/nrf/kmk*
|
2018-09-03 08:39:55 +02:00
|
|
|
@cp -av kmk vendor/circuitpython/ports/nrf/freeze/
|
2018-09-03 10:23:15 +02:00
|
|
|
|
|
|
|
circuitpy-flash-nrf: circuitpy-freeze-kmk-nrf
|
2018-09-03 08:39:55 +02:00
|
|
|
@echo "===> Building and flashing CircuitPython with KMK and your keymap"
|
|
|
|
@make -C vendor/circuitpython/ports/nrf BOARD=feather_nrf52832 SERIAL=/dev/ttyUSB0 SD=s132 FROZEN_MPY_DIR=freeze clean dfu-gen dfu-flash
|
2018-09-03 10:23:15 +02:00
|
|
|
|
|
|
|
circuitpy-flash-nrf-entrypoint:
|
2018-09-03 08:39:55 +02:00
|
|
|
@echo "===> Flashing entrypoint if it doesn't already exist"
|
|
|
|
@sleep 2
|
|
|
|
@-timeout -k 5s 10s pipenv run ampy rm main.py 2>/dev/null
|
2018-09-03 08:43:30 +02:00
|
|
|
@-timeout -k 5s 10s pipenv run ampy put entrypoints/feather_nrf52832.py main.py
|
2018-09-03 08:39:55 +02:00
|
|
|
@echo "===> Flashed keyboard successfully!"
|
2018-09-03 05:06:53 +02:00
|
|
|
|
2018-09-03 10:23:15 +02:00
|
|
|
build-feather-test: lint devdeps circuitpy-deps circuitpy-freeze-kmk-nrf
|
|
|
|
@echo "===> Preparing keyboard script for bundling into CircuitPython"
|
|
|
|
@cp -av boards/klardotsh/twotwo_matrix_feather.py vendor/circuitpython/ports/nrf/freeze/kmk_keyboard_user.py
|
|
|
|
@$(MAKE) circuitpy-flash-nrf circuitpy-flash-nrf-entrypoint
|
|
|
|
|
|
|
|
build-feather-noop: lint devdeps circuitpy-deps circuitpy-freeze-kmk-nrf
|
|
|
|
@echo "===> Preparing keyboard script for bundling into CircuitPython"
|
|
|
|
@cp -av boards/noop.py vendor/circuitpython/ports/nrf/freeze/kmk_keyboard_user.py
|
|
|
|
@$(MAKE) circuitpy-flash-nrf circuitpy-flash-nrf-entrypoint
|
|
|
|
|
2018-09-03 08:39:55 +02:00
|
|
|
# Fully wipe the board with only stock CircuitPython
|
|
|
|
burn-it-all-with-fire: lint devdeps
|
|
|
|
@echo "===> Flashing STOCK CircuitPython with no KMK or user keyboard scripts, and wiping entrypoint"
|
|
|
|
@echo "===> This is the nuclear option. Ctrl-C to cancel, or any key to continue"
|
|
|
|
@read
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Pulling dependencies, this may take several minutes"
|
|
|
|
@git submodule update --init --recursive
|
|
|
|
@echo "===> Building circuitpython/mpy-cross"
|
|
|
|
@make -C vendor/circuitpython/mpy-cross
|
|
|
|
@echo "===> Pulling Nordic BLE stack"
|
2018-09-03 08:39:55 +02:00
|
|
|
@cd vendor/circuitpython/ports/nrf && ./drivers/bluetooth/download_ble_stack.sh 2>/dev/null >/dev/null
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Preparing KMK source for bundling into CircuitPython"
|
2018-09-03 10:23:15 +02:00
|
|
|
@rm -rf vendor/circuitpython/ports/nrf/*
|
2018-09-03 08:39:55 +02:00
|
|
|
@echo "===> Building CircuitPython WITHOUT KMK or user keyboard script to induce ImportError"
|
2018-09-03 10:23:15 +02:00
|
|
|
@$(MAKE) circuitpy-flash-nrf
|
2018-09-03 05:06:53 +02:00
|
|
|
@echo "===> Wiping keyboard config"
|
2018-09-03 08:39:55 +02:00
|
|
|
@sleep 2
|
|
|
|
@-pipenv run ampy rm main.py 2>/dev/null
|
|
|
|
@echo "===> Wiped! Probably safe to flash keyboard, try Python serial REPL to verify?"
|