示例#1
0
文件: radio.c 项目: nodish/openthread
static void radioWakeup()
{
    if (sSleep)
    {
        PHY_Wakeup();
    }
}
示例#2
0
文件: radio.c 项目: nodish/openthread
static void radioTrxOff()
{
    if (sSleep)
    {
        PHY_Wakeup();
    }
    else if (sRxEnable)
    {
        PHY_SetRxState(false);
    }
}
示例#3
0
文件: radio.c 项目: nodish/openthread
static void radioRxEnable()
{
    if (sSleep)
    {
        PHY_Wakeup();

        sSleep = false;
    }

    if (!sRxEnable)
    {
        PHY_SetRxState(true);

        sRxEnable = true;
    }
}
示例#4
0
void NWK_WakeupReq(void)
{
  PHY_Wakeup();
}