We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4cab24f + 88b2858 commit 35fb35aCopy full SHA for 35fb35a
features/lorawan/LoRaWANStack.cpp
@@ -1082,6 +1082,7 @@ void LoRaWANStack::process_shutdown_state(lorawan_status_t &op_status)
1082
_device_current_state = DEVICE_STATE_SHUTDOWN;
1083
op_status = LORAWAN_STATUS_DEVICE_OFF;
1084
_ctrl_flags &= ~CONNECTED_FLAG;
1085
+ _ctrl_flags &= ~CONN_IN_PROGRESS_FLAG;
1086
send_event_to_application(DISCONNECTED);
1087
}
1088
@@ -1162,6 +1163,7 @@ void LoRaWANStack::process_joining_state(lorawan_status_t &op_status)
1162
1163
bool can_continue = _loramac.continue_joining_process();
1164
1165
if (!can_continue) {
1166
1167
send_event_to_application(JOIN_FAILURE);
1168
_device_current_state = DEVICE_STATE_IDLE;
1169
return;
0 commit comments