[fuzz] add stub for CCA ED radio APIs (#4269)

This commit is contained in:
Jonathan Hui
2019-10-23 20:07:11 -07:00
committed by GitHub
parent 4871f12645
commit aaafa1a480
+14
View File
@@ -344,6 +344,20 @@ otError otPlatRadioSetTransmitPower(otInstance *aInstance, int8_t aPower)
return OT_ERROR_NOT_IMPLEMENTED;
}
otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aThreshold);
return OT_ERROR_NOT_IMPLEMENTED;
}
otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aThreshold);
return OT_ERROR_NOT_IMPLEMENTED;
}
int8_t otPlatRadioGetReceiveSensitivity(otInstance *aInstance)
{
OT_UNUSED_VARIABLE(aInstance);