Skip to content

Commit 93bb40a

Browse files
committedNov 4, 2021
Add missing channelMask parameter for LoraConnectionHandler
1 parent 6f51148 commit 93bb40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎examples/ArduinoIoTCloud-DeferredOTA/thingProperties.h

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

0 commit comments

Comments
 (0)
Please sign in to comment.