LoRaMac-node
LoRaMac-node copied to clipboard
Wrong comment in ProcessRadioRxDone() ?
In LoRaMac.c function ProcessRadioRxDone() comment says "Abort in case if the device isn't joined yet" but code actually aborts if device IS joined:
if( ( Nvm.MacGroup2.NetworkActivation != ACTIVATION_TYPE_NONE ) && ( Nvm.MacGroup2.IsRejoinRequestPending == false ) )
{
MacCtx.McpsIndication.Status = LORAMAC_EVENT_INFO_STATUS_ERROR;
PrepareRxDoneAbort( );
return;
}
Hi @sborshch ,
thanks for the report. Yes thats true. We will fix that.