[csl] fix kRadioTypeIeee802154 not declared in scope error (#6281)

This commit is contained in:
Jonathan Hui
2021-03-16 11:38:57 -07:00
parent 7ad23e67e7
commit a6abb51426
+1 -1
View File
@@ -173,7 +173,7 @@ Mac::TxFrame *CslTxScheduler::HandleFrameRequest(Mac::TxFrames &aTxFrames)
VerifyOrExit(mCslTxChild != nullptr);
#if OPENTHREAD_CONFIG_MULTI_RADIO
frame = &aTxFrames.GetTxFrame(kRadioTypeIeee802154);
frame = &aTxFrames.GetTxFrame(Mac::kRadioTypeIeee802154);
#else
frame = &aTxFrames.GetTxFrame();
#endif