2021-02-26 17:03:41 +01:00
|
|
|
RUNNER := runners/lpc55
|
|
|
|
|
|
2026-04-22 20:15:22 -07:00
|
|
|
.PHONY: \
|
|
|
|
|
build-dev \
|
|
|
|
|
bacon \
|
|
|
|
|
run-dev \
|
|
|
|
|
jlink \
|
|
|
|
|
mount-fs \
|
|
|
|
|
umount-fs \
|
|
|
|
|
check \
|
|
|
|
|
check-fmt \
|
|
|
|
|
check-clippy
|
|
|
|
|
|
2021-02-05 21:36:04 +01:00
|
|
|
build-dev:
|
|
|
|
|
make -C $(RUNNER) build-dev
|
|
|
|
|
|
|
|
|
|
bacon:
|
|
|
|
|
make -C $(RUNNER) bacon
|
|
|
|
|
|
|
|
|
|
run-dev:
|
|
|
|
|
make -C $(RUNNER) run-dev
|
|
|
|
|
|
2021-05-10 20:55:43 +02:00
|
|
|
jlink:
|
|
|
|
|
scripts/bump-jlink
|
|
|
|
|
JLinkGDBServer -strict -device LPC55S69 -if SWD -vd
|
|
|
|
|
|
2021-02-09 12:38:53 +01:00
|
|
|
mount-fs:
|
|
|
|
|
scripts/fuse-bee
|
|
|
|
|
|
|
|
|
|
umount-fs:
|
|
|
|
|
scripts/defuse-bee
|
2026-04-22 20:15:22 -07:00
|
|
|
|
|
|
|
|
check: check-fmt check-clippy
|
|
|
|
|
|
|
|
|
|
check-fmt:
|
|
|
|
|
cargo fmt --all --check
|
|
|
|
|
|
|
|
|
|
check-clippy:
|
|
|
|
|
cargo clippy --all-targets -- -D warnings
|
|
|
|
|
cd runners/lpc55 && cargo clippy --release --features board-lpcxpresso55 -- -D warnings
|
|
|
|
|
cd runners/lpc55 && cargo clippy --release --features board-solo2 -- -D warnings
|
|
|
|
|
cd runners/lpc55 && cargo clippy --release --features board-lpcxpresso55,provisioner-app,admin-app,provisioner-app/test-attestation -- -D warnings
|
2026-05-15 14:58:14 +02:00
|
|
|
|