You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
i was making power profiling and i found there is always a leakage before first Transmission "doesn't matter it's a join or anything else".
After first transmission everything turns to be fine. I am using LmHandlerInit to init mac, i found that after setting public network param leakage occurs which seems to be writing on radio and radio doesn't go to sleep after it when i removed this part issue solved.
.
Here's the code line 328:
I think the solution is to sleep radio at the end of LmHandlerInit.
2 images attached for the power profiling. Power seems to be higher than usual because i am having some extra hw connected
The text was updated successfully, but these errors were encountered:
After tracing. In loramac.c file line 4686:
case MIB_PUBLIC_NETWORK:
{
Nvm.MacGroup2.PublicNetwork = mibSet->Param.EnablePublicNetwork;
Radio.SetPublicNetwork( Nvm.MacGroup2.PublicNetwork );
break;
}
setting this command in radio wakes it up so we should be sleeping radio after this
Same on Restoring NVM line 3512:
// The public/private network flag may change upon reloading MacGroup2
// from NVM and we thus need to synchronize the radio. The same function
// is invoked in LoRaMacInitialization.
Radio.SetPublicNetwork( Nvm.MacGroup2.PublicNetwork );
If i added Radio.sleep()
Everything works fine
Hello,
i was making power profiling and i found there is always a leakage before first Transmission "doesn't matter it's a join or anything else".
After first transmission everything turns to be fine. I am using LmHandlerInit to init mac, i found that after setting public network param leakage occurs which seems to be writing on radio and radio doesn't go to sleep after it when i removed this part issue solved.
.
Here's the code line 328:
I think the solution is to sleep radio at the end of LmHandlerInit.
2 images attached for the power profiling. Power seems to be higher than usual because i am having some extra hw connected
The text was updated successfully, but these errors were encountered: