Skip to content

Commit

Permalink
Define a board for CI runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Mar 25, 2024
1 parent 3613944 commit 2f126ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
else
# apply special flags for LoRaWAN
if [[ ${example} =~ "LoRaWAN" ]]; then
flags="-DRADIOLIB_LORAWAN_DEV_ADDR=0 -DRADIOLIB_LORAWAN_NWKS_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"
flags="-DRADIOLIB_LORAWAN_DEV_ADDR=0 -DRADIOLIB_LORAWAN_NWKS_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"
fi

# build sketch
Expand Down
2 changes: 1 addition & 1 deletion examples/LoRaWAN/LoRaWAN_ABP/configABP.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const uint8_t subBand = 0; // For US915, change this to 2, otherwise leave on 0
// SX1262 radio = new Module(8, 14, 12, 13);

// SX1278 pin order: Module(NSS/CS, DIO0, RESET, DIO1);
SX1278 radio = new Module(10, 2, 9, 3);
// SX1278 radio = new Module(10, 2, 9, 3);

#endif

Expand Down
2 changes: 1 addition & 1 deletion examples/LoRaWAN/LoRaWAN_Reference/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const uint8_t subBand = 0; // For US915, change this to 2, otherwise leave on 0
// SX1262 radio = new Module(8, 14, 12, 13);

// SX1278 pin order: Module(NSS/CS, DIO0, RESET, DIO1);
SX1278 radio = new Module(10, 2, 9, 3);
// SX1278 radio = new Module(10, 2, 9, 3);

#endif

Expand Down
2 changes: 1 addition & 1 deletion examples/LoRaWAN/LoRaWAN_Starter/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const uint8_t subBand = 0; // For US915, change this to 2, otherwise leave on 0
// SX1262 radio = new Module(8, 14, 12, 13);

// SX1278 pin order: Module(NSS/CS, DIO0, RESET, DIO1);
SX1278 radio = new Module(10, 2, 9, 3);
// SX1278 radio = new Module(10, 2, 9, 3);

#endif

Expand Down

0 comments on commit 2f126ed

Please sign in to comment.