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.
1 parent 3e2ef70 commit 1852d89Copy full SHA for 1852d89
src/apps/LoRaMac/common/LmHandler/packages/LmhpCompliance.c
@@ -213,6 +213,11 @@ static void LmhpComplianceOnMlmeConfirm( MlmeConfirm_t *mlmeConfirm )
213
return;
214
}
215
216
+ if( ComplianceTestState.IsRunning == false )
217
+ {
218
+ return;
219
+ }
220
+
221
if( mlmeConfirm->MlmeRequest == MLME_LINK_CHECK )
222
{
223
ComplianceTestState.LinkCheck = true;
@@ -228,6 +233,11 @@ static LmHandlerErrorStatus_t LmhpComplianceTxProcess( void )
228
233
return LORAMAC_HANDLER_ERROR;
229
234
230
235
236
237
238
+ return LORAMAC_HANDLER_SUCCESS;
239
240
231
241
if( ComplianceTestState.LinkCheck == true )
232
242
243
ComplianceTestState.LinkCheck = false;
0 commit comments