nRF5 SDK for Thread and Zigbee v3.2.0
Functions
Operation

This module includes the platform abstraction for radio operations. More...

Functions

otRadioState otPlatRadioGetState (otInstance *aInstance)
 
otError otPlatRadioEnable (otInstance *aInstance)
 
otError otPlatRadioDisable (otInstance *aInstance)
 
bool otPlatRadioIsEnabled (otInstance *aInstance)
 
otError otPlatRadioSleep (otInstance *aInstance)
 
otError otPlatRadioReceive (otInstance *aInstance, uint8_t aChannel)
 
void otPlatRadioReceiveDone (otInstance *aInstance, otRadioFrame *aFrame, otError aError)
 
void otPlatDiagRadioReceiveDone (otInstance *aInstance, otRadioFrame *aFrame, otError aError)
 
otRadioFrameotPlatRadioGetTransmitBuffer (otInstance *aInstance)
 
otError otPlatRadioTransmit (otInstance *aInstance, otRadioFrame *aFrame)
 
void otPlatRadioTxStarted (otInstance *aInstance, otRadioFrame *aFrame)
 
void otPlatRadioTxDone (otInstance *aInstance, otRadioFrame *aFrame, otRadioFrame *aAckFrame, otError aError)
 
void otPlatDiagRadioTransmitDone (otInstance *aInstance, otRadioFrame *aFrame, otError aError)
 
void otPlatRadioFrameUpdated (otInstance *aInstance, otRadioFrame *aFrame)
 
int8_t otPlatRadioGetRssi (otInstance *aInstance)
 
otError otPlatRadioEnergyScan (otInstance *aInstance, uint8_t aScanChannel, uint16_t aScanDuration)
 
void otPlatRadioEnergyScanDone (otInstance *aInstance, int8_t aEnergyScanMaxRssi)
 
void otPlatRadioEnableSrcMatch (otInstance *aInstance, bool aEnable)
 
otError otPlatRadioAddSrcMatchShortEntry (otInstance *aInstance, otShortAddress aShortAddress)
 
otError otPlatRadioAddSrcMatchExtEntry (otInstance *aInstance, const otExtAddress *aExtAddress)
 
otError otPlatRadioClearSrcMatchShortEntry (otInstance *aInstance, otShortAddress aShortAddress)
 
otError otPlatRadioClearSrcMatchExtEntry (otInstance *aInstance, const otExtAddress *aExtAddress)
 
void otPlatRadioClearSrcMatchShortEntries (otInstance *aInstance)
 
void otPlatRadioClearSrcMatchExtEntries (otInstance *aInstance)
 
uint32_t otPlatRadioGetSupportedChannelMask (otInstance *aInstance)
 
uint32_t otPlatRadioGetPreferredChannelMask (otInstance *aInstance)
 

Detailed Description

This module includes the platform abstraction for radio operations.

Function Documentation

void otPlatDiagRadioReceiveDone ( otInstance aInstance,
otRadioFrame aFrame,
otError  aError 
)

The radio driver calls this method to notify OpenThread diagnostics module of a received frame.

This function is used when diagnostics is enabled.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameA pointer to the received frame or NULL if the receive operation failed.
[in]aErrorOT_ERROR_NONE when successfully received a frame, OT_ERROR_ABORT when reception was aborted and a frame was not received, OT_ERROR_NO_BUFS when a frame could not be received due to lack of rx buffer space.
void otPlatDiagRadioTransmitDone ( otInstance aInstance,
otRadioFrame aFrame,
otError  aError 
)

The radio driver calls this method to notify OpenThread diagnostics module that the transmission has completed.

This function is used when diagnostics is enabled.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameA pointer to the frame that was transmitted.
[in]aErrorOT_ERROR_NONE when the frame was transmitted, OT_ERROR_CHANNEL_ACCESS_FAILURE tx could not take place due to activity on the channel, OT_ERROR_ABORT when transmission was aborted for other reasons.
otError otPlatRadioAddSrcMatchExtEntry ( otInstance aInstance,
const otExtAddress aExtAddress 
)

Add an extended address to the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aExtAddressThe extended address to be added stored in little-endian byte order.
Return values
OT_ERROR_NONESuccessfully added extended address to the source match table.
OT_ERROR_NO_BUFSNo available entry in the source match table.
otError otPlatRadioAddSrcMatchShortEntry ( otInstance aInstance,
otShortAddress  aShortAddress 
)

Add a short address to the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aShortAddressThe short address to be added.
Return values
OT_ERROR_NONESuccessfully added short address to the source match table.
OT_ERROR_NO_BUFSNo available entry in the source match table.
void otPlatRadioClearSrcMatchExtEntries ( otInstance aInstance)

Clear all the extended/long addresses from source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
otError otPlatRadioClearSrcMatchExtEntry ( otInstance aInstance,
const otExtAddress aExtAddress 
)

Remove an extended address from the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aExtAddressThe extended address to be removed stored in little-endian byte order.
Return values
OT_ERROR_NONESuccessfully removed the extended address from the source match table.
OT_ERROR_NO_ADDRESSThe extended address is not in source address match table.
void otPlatRadioClearSrcMatchShortEntries ( otInstance aInstance)

Clear all short addresses from the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
otError otPlatRadioClearSrcMatchShortEntry ( otInstance aInstance,
otShortAddress  aShortAddress 
)

Remove a short address from the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aShortAddressThe short address to be removed.
Return values
OT_ERROR_NONESuccessfully removed short address from the source match table.
OT_ERROR_NO_ADDRESSThe short address is not in source address match table.
otError otPlatRadioDisable ( otInstance aInstance)

Disable the radio.

Parameters
[in]aInstanceThe OpenThread instance structure.
Return values
OT_ERROR_NONESuccessfully transitioned to Disabled.
OT_ERROR_INVALID_STATEThe radio was not in sleep state.
otError otPlatRadioEnable ( otInstance aInstance)

Enable the radio.

Parameters
[in]aInstanceThe OpenThread instance structure.
Return values
OT_ERROR_NONESuccessfully enabled.
OT_ERROR_FAILEDThe radio could not be enabled.
void otPlatRadioEnableSrcMatch ( otInstance aInstance,
bool  aEnable 
)

Enable/Disable source address match feature.

The source address match feature controls how the radio layer decides the "frame pending" bit for acks sent in response to data request commands from children.

If disabled, the radio layer must set the "frame pending" on all acks to data request commands.

If enabled, the radio layer uses the source address match table to determine whether to set or clear the "frame pending" bit in an ack to a data request command.

The source address match table provides the list of children for which there is a pending frame. Either a short address or an extended/long address can be added to the source address match table.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aEnableEnable/disable source address match feature.
otError otPlatRadioEnergyScan ( otInstance aInstance,
uint8_t  aScanChannel,
uint16_t  aScanDuration 
)

Begin the energy scan sequence on the radio.

This function is used when radio provides OT_RADIO_CAPS_ENERGY_SCAN capability.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aScanChannelThe channel to perform the energy scan on.
[in]aScanDurationThe duration, in milliseconds, for the channel to be scanned.
Return values
OT_ERROR_NONESuccessfully started scanning the channel.
OT_ERROR_NOT_IMPLEMENTEDThe radio doesn't support energy scanning.
void otPlatRadioEnergyScanDone ( otInstance aInstance,
int8_t  aEnergyScanMaxRssi 
)

The radio driver calls this method to notify OpenThread that the energy scan is complete.

This function is used when radio provides OT_RADIO_CAPS_ENERGY_SCAN capability.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aEnergyScanMaxRssiThe maximum RSSI encountered on the scanned channel.
void otPlatRadioFrameUpdated ( otInstance aInstance,
otRadioFrame aFrame 
)

The radio driver calls this method to notify OpenThread to process transmit security for the frame, this happens when the frame includes Header IE(s) that were updated before transmission.

This function is used when feature OPENTHREAD_CONFIG_HEADER_IE_SUPPORT is enabled.

Note
This function can be called from interrupt context and it would only read/write data passed in via aFrame, but would not read/write any state within OpenThread.
Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameThe radio frame which needs to process transmit security.
uint32_t otPlatRadioGetPreferredChannelMask ( otInstance aInstance)

Get the radio preferred channel mask that the device prefers to form on.

Parameters
[in]aInstanceThe OpenThread instance strucyyture.
Returns
The radio preferred channel mask.
int8_t otPlatRadioGetRssi ( otInstance aInstance)

Get the most recent RSSI measurement.

Parameters
[in]aInstanceThe OpenThread instance structure.
Returns
The RSSI in dBm when it is valid. 127 when RSSI is invalid.
otRadioState otPlatRadioGetState ( otInstance aInstance)

Get current state of the radio.

This function is not required by OpenThread. It may be used for debugging and/or application-specific purposes.

Note
This function may be not implemented. It does not affect OpenThread.
Parameters
[in]aInstanceThe OpenThread instance structure.
Returns
Current state of the radio.
uint32_t otPlatRadioGetSupportedChannelMask ( otInstance aInstance)

Get the radio supported channel mask that the device is allowed to be on.

Parameters
[in]aInstanceThe OpenThread instance structure.
Returns
The radio supported channel mask.
otRadioFrame* otPlatRadioGetTransmitBuffer ( otInstance aInstance)

Get the radio transmit frame buffer.

OpenThread forms the IEEE 802.15.4 frame in this buffer then calls otPlatRadioTransmit() to request transmission.

Parameters
[in]aInstanceThe OpenThread instance structure.
Returns
A pointer to the transmit frame buffer.
bool otPlatRadioIsEnabled ( otInstance aInstance)

Check whether radio is enabled or not.

Parameters
[in]aInstanceThe OpenThread instance structure.
Returns
TRUE if the radio is enabled, FALSE otherwise.
otError otPlatRadioReceive ( otInstance aInstance,
uint8_t  aChannel 
)

Transition the radio from Sleep to Receive (turn on the radio).

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aChannelThe channel to use for receiving.
Return values
OT_ERROR_NONESuccessfully transitioned to Receive.
OT_ERROR_INVALID_STATEThe radio was disabled or transmitting.
void otPlatRadioReceiveDone ( otInstance aInstance,
otRadioFrame aFrame,
otError  aError 
)

The radio driver calls this method to notify OpenThread of a received frame.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameA pointer to the received frame or NULL if the receive operation failed.
[in]aErrorOT_ERROR_NONE when successfully received a frame, OT_ERROR_ABORT when reception was aborted and a frame was not received, OT_ERROR_NO_BUFS when a frame could not be received due to lack of rx buffer space.
otError otPlatRadioSleep ( otInstance aInstance)

Transition the radio from Receive to Sleep (turn off the radio).

Parameters
[in]aInstanceThe OpenThread instance structure.
Return values
OT_ERROR_NONESuccessfully transitioned to Sleep.
OT_ERROR_BUSYThe radio was transmitting.
OT_ERROR_INVALID_STATEThe radio was disabled.
otError otPlatRadioTransmit ( otInstance aInstance,
otRadioFrame aFrame 
)

Begin the transmit sequence on the radio.

The caller must form the IEEE 802.15.4 frame in the buffer provided by otPlatRadioGetTransmitBuffer() before requesting transmission. The channel and transmit power are also included in the otRadioFrame structure.

The transmit sequence consists of:

  1. Transitioning the radio to Transmit from Receive.
  2. Transmits the psdu on the given channel and at the given transmit power.
Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameA pointer to the frame to be transmitted.
Return values
OT_ERROR_NONESuccessfully transitioned to Transmit.
OT_ERROR_INVALID_STATEThe radio was not in the Receive state.
void otPlatRadioTxDone ( otInstance aInstance,
otRadioFrame aFrame,
otRadioFrame aAckFrame,
otError  aError 
)

The radio driver calls this function to notify OpenThread that the transmit operation has completed, providing both the transmitted frame and, if applicable, the received ack frame.

Parameters
[in]aInstanceThe OpenThread instance structure.
[in]aFrameA pointer to the frame that was transmitted.
[in]aAckFrameA pointer to the ACK frame, NULL if no ACK was received.
[in]aErrorOT_ERROR_NONE when the frame was transmitted, OT_ERROR_NO_ACK when the frame was transmitted but no ACK was received, OT_ERROR_CHANNEL_ACCESS_FAILURE tx could not take place due to activity on the channel, OT_ERROR_ABORT when transmission was aborted for other reasons.
void otPlatRadioTxStarted ( otInstance aInstance,
otRadioFrame aFrame 
)

The radio driver calls this method to notify OpenThread that the transmission has started.

Note
This function should be called by the same thread that executes all of the other OpenThread code. It should not be called by ISR or any other task.
Parameters
[in]aInstanceA pointer to the OpenThread instance structure.
[in]aFrameA pointer to the frame that is being transmitted.

Documentation feedback | Developer Zone | Subscribe | Updated