From c852a379533659dec4e8af20f43121ee93e11456 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 1 Jun 2025 10:32:00 +0200 Subject: [PATCH] [CI] Fix missing flags for LoRaWAN examples --- extras/test/ci/build_examples.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extras/test/ci/build_examples.sh b/extras/test/ci/build_examples.sh index 44bfb9c3..fc1434fb 100755 --- a/extras/test/ci/build_examples.sh +++ b/extras/test/ci/build_examples.sh @@ -20,7 +20,12 @@ for example in $(find $path -name '*.ino' | sort); do else # apply special flags for LoRaWAN if [[ ${example} =~ "LoRaWAN" ]]; then - flags="-DRADIOLIB_LORAWAN_DEV_ADDR=0 -DRADIOLIB_LORAWAN_FNWKSINT_KEY=0 -DRADIOLIB_LORAWAN_SNWKSINT_KEY=0 -DRADIOLIB_LORAWAN_NWKSENC_KEY=0 -DRADIOLIB_LORAWAN_APPS_KEY=0 -DRADIOLIB_LORAWAN_APP_KEY=0 -DRADIOLIB_LORAWAN_NWK_KEY=0 -DRADIOLIB_LORAWAN_DEV_EUI=0 -DARDUINO_TTGO_LORA32_V1" + flags="-DRADIOLIB_LORAWAN_DEV_ADDR=0 -DRADIOLIB_LORAWAN_FNWKSINT_KEY=0 \ + -DRADIOLIB_LORAWAN_SNWKSINT_KEY=0 -DRADIOLIB_LORAWAN_NWKSENC_KEY=0 \ + -DRADIOLIB_LORAWAN_APPS_KEY=0 -DRADIOLIB_LORAWAN_APP_KEY=0 \ + -DRADIOLIB_LORAWAN_NWK_KEY=0 -DRADIOLIB_LORAWAN_DEV_EUI=0 \ + -DRADIOLIB_LORAWAN_MC_DEV_ADDR=0 -DRADIOLIB_LORAWAN_MC_APP_SKEY=0 \ + -DRADIOLIB_LORAWAN_MC_NWK_SKEY=0 -DARDUINO_TTGO_LORA32_V1" fi # build sketch