Home
last modified time | relevance | path

Searched refs:aEnable (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Dplatform-zephyr.h77 otError platformRadioTransmitCarrier(otInstance *aInstance, bool aEnable);
84 otError platformRadioTransmitModulatedCarrier(otInstance *aInstance, bool aEnable,
Dradio.c828 otError platformRadioTransmitCarrier(otInstance *aInstance, bool aEnable) in platformRadioTransmitCarrier() argument
834 if ((aEnable) && (sState == OT_RADIO_STATE_RECEIVE)) { in platformRadioTransmitCarrier()
842 } else if ((!aEnable) && (sState == OT_RADIO_STATE_TRANSMIT)) { in platformRadioTransmitCarrier()
851 otError platformRadioTransmitModulatedCarrier(otInstance *aInstance, bool aEnable, in platformRadioTransmitModulatedCarrier() argument
858 if (aEnable && sState == OT_RADIO_STATE_RECEIVE) { in platformRadioTransmitModulatedCarrier()
869 } else if ((!aEnable) && sState == OT_RADIO_STATE_TRANSMIT) { in platformRadioTransmitModulatedCarrier()
1029 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable) in otPlatRadioSetPromiscuous() argument
1032 .promiscuous = aEnable in otPlatRadioSetPromiscuous()
1037 LOG_DBG("PromiscuousMode=%d", aEnable ? 1 : 0); in otPlatRadioSetPromiscuous()
1039 promiscuous = aEnable; in otPlatRadioSetPromiscuous()
[all …]
Ddiag.c126 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable) in otPlatDiagRadioTransmitCarrier() argument
133 if (aEnable) { in otPlatDiagRadioTransmitCarrier()
139 return platformRadioTransmitCarrier(aInstance, aEnable); in otPlatDiagRadioTransmitCarrier()
Dradio_spinel.cpp147 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable) in otPlatRadioSetPromiscuous() argument
150 SuccessOrDie(psRadioSpinel->SetPromiscuous(aEnable)); in otPlatRadioSetPromiscuous()
218 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable) in otPlatRadioEnableSrcMatch() argument
221 SuccessOrDie(psRadioSpinel->EnableSrcMatch(aEnable)); in otPlatRadioEnableSrcMatch()