Lines Matching refs:sTransmitFrame
89 static otRadioFrame sTransmitFrame; variable
336 sTransmitFrame.mPsdu = tx_payload->data; in dataInit()
343 sTransmitFrame.mInfo.mTxInfo.mIeInfo = &tx_ie_info; in dataInit()
397 tx_payload->len = sTransmitFrame.mLength - FCS_SIZE; in transmit_message()
399 radio_api->set_txpower(radio_dev, get_transmit_power_for_channel(sTransmitFrame.mChannel)); in transmit_message()
402 if (sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeIeOffset != 0) { in transmit_message()
404 sTransmitFrame.mPsdu + sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeIeOffset; in transmit_message()
406 otPlatTimeGet() + sTransmitFrame.mInfo.mTxInfo.mIeInfo->mNetworkTimeOffset; in transmit_message()
408 *(time_ie++) = sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in transmit_message()
414 sTransmitFrame.mInfo.mTxInfo.mIsSecurityProcessed); in transmit_message()
415 net_pkt_set_ieee802154_mac_hdr_rdy(tx_pkt, sTransmitFrame.mInfo.mTxInfo.mIsHeaderUpdated); in transmit_message()
418 (sTransmitFrame.mInfo.mTxInfo.mTxDelay != 0)) { in transmit_message()
420 uint32_t tx_at = sTransmitFrame.mInfo.mTxInfo.mTxDelayBaseTime + in transmit_message()
421 sTransmitFrame.mInfo.mTxInfo.mTxDelay; in transmit_message()
426 net_pkt_set_ieee802154_txchannel(tx_pkt, sTransmitFrame.mChannel); in transmit_message()
428 radio_set_channel(sTransmitFrame.mChannel); in transmit_message()
431 radio_set_channel(sTransmitFrame.mChannel); in transmit_message()
435 } else if (sTransmitFrame.mInfo.mTxInfo.mCsmaCaEnabled) { in transmit_message()
436 radio_set_channel(sTransmitFrame.mChannel); in transmit_message()
448 radio_set_channel(sTransmitFrame.mChannel); in transmit_message()
483 sTransmitFrame.mInfo.mTxInfo.mIsSecurityProcessed = in handle_tx_done()
485 sTransmitFrame.mInfo.mTxInfo.mIsHeaderUpdated = net_pkt_ieee802154_mac_hdr_rdy(tx_pkt); in handle_tx_done()
488 otPlatDiagRadioTransmitDone(aInstance, &sTransmitFrame, tx_result); in handle_tx_done()
490 otPlatRadioTxDone(aInstance, &sTransmitFrame, ack_frame.mLength ? &ack_frame : NULL, in handle_tx_done()
670 otPlatRadioTxStarted(aInstance, &sTransmitFrame); in platformRadioProcess()
905 __ASSERT_NO_MSG(aPacket == &sTransmitFrame); in otPlatRadioTransmit()
926 return &sTransmitFrame; in otPlatRadioGetTransmitBuffer()