Skip to content

Commit

Permalink
Revert unintentional deletion of radioProcessTransmitSecurity() call
Browse files Browse the repository at this point in the history
This deletion caused connectivity problems, preventing networks from being formed properly.
  • Loading branch information
lmnotran committed Jan 22, 2024
1 parent 0f79d1d commit e63f682
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/src/radio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1715,6 +1715,8 @@ otError otPlatRadioTransmit(otInstance *aInstance, otRadioFrame *aFrame)
// this results in calling the SE interface from a critical section which is not permitted.
#if OPENTHREAD_RADIO && OPENTHREAD_CONFIG_MULTIPAN_RCP_ENABLE == 1
radioProcessTransmitSecurity(sTxFrame, sTxFrame->mIid);
#else
radioProcessTransmitSecurity(sTxFrame, 0);
#endif
#endif // OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2

Expand Down

0 comments on commit e63f682

Please sign in to comment.