From a9dde51a9bd39b1e9ca1d6cdecbfe6e31cf24ce8 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Wed, 19 Mar 2025 20:22:46 +1100 Subject: [PATCH] * build.sh: .uf2 step also for Faketec/ProMicro targets --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f14b2f1c..10cabe7a 100644 --- a/build.sh +++ b/build.sh @@ -58,7 +58,7 @@ build_firmware() { fi # build .uf2 for nrf52 boards - if [[ $1 == *"RAK_4631"* || $1 == *"t1000e"* || $1 == *"t114"* || $1 == *"T-Echo"* ]]; then + if [[ $1 == *"RAK_4631"* || $1 == *"t1000e"* || $1 == *"t114"* || $1 == *"T-Echo"* || $1 == *"Faketec"* || $1 == *"ProMicro"* ]]; then python bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840 fi