From e63f682c58b0f30915afcd10b3df6205e24c6df4 Mon Sep 17 00:00:00 2001 From: Mason Tran Date: Mon, 22 Jan 2024 16:28:43 -0500 Subject: [PATCH] Revert unintentional deletion of `radioProcessTransmitSecurity()` call This deletion caused connectivity problems, preventing networks from being formed properly. --- src/src/radio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/src/radio.c b/src/src/radio.c index 3a1745d1..f5be2a9f 100644 --- a/src/src/radio.c +++ b/src/src/radio.c @@ -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