Skip to content

Commit 5bf1a82

Browse files
authored
Merge pull request #287 from pennam/channel_mask
Add missing channelMask parameter
2 parents 5e19f33 + cd906d9 commit 5bf1a82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/ArduinoIoTCloud-Advanced/thingProperties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void initProperties() {
3333
#elif defined(BOARD_HAS_GSM)
3434
GSMConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
3535
#elif defined(BOARD_HAS_LORA)
36-
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, _lora_class::CLASS_A);
36+
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, NULL, _lora_class::CLASS_A);
3737
#elif defined(BOARD_HAS_NB)
3838
NBConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
3939
#endif

examples/ArduinoIoTCloud-Basic/thingProperties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void initProperties() {
4040
#elif defined(BOARD_HAS_GSM)
4141
GSMConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
4242
#elif defined(BOARD_HAS_LORA)
43-
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, _lora_class::CLASS_A);
43+
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, NULL, _lora_class::CLASS_A);
4444
#elif defined(BOARD_HAS_NB)
4545
NBConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
4646
#endif

examples/ArduinoIoTCloud-Callbacks/thingProperties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void initProperties() {
2727
#elif defined(BOARD_HAS_GSM)
2828
GSMConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
2929
#elif defined(BOARD_HAS_LORA)
30-
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, _lora_class::CLASS_A);
30+
LoRaConnectionHandler ArduinoIoTPreferredConnection(SECRET_APP_EUI, SECRET_APP_KEY, _lora_band::EU868, NULL, _lora_class::CLASS_A);
3131
#elif defined(BOARD_HAS_NB)
3232
NBConnectionHandler ArduinoIoTPreferredConnection(SECRET_PIN, SECRET_APN, SECRET_LOGIN, SECRET_PASS);
3333
#endif

0 commit comments

Comments
 (0)