This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2530+Zstack3.0休眠电流

Other Parts Discussed in Thread: Z-STACK

平时待机电流是8~9mA,进入休眠模式后,没有任何定时事件,设置如下

void MyApp_EnterSleep(void)
{
  NLME_SetPollRate(10000); //进入休眠后,10轮询一次
  NLME_SetQueuedPollRate(10000);//
  NLME_SetResponseRate(10000);//
  ZDApp_SetRejoinBackoffDuration(10000);
  ZDApp_SetRejoinScanDuration(10000);
  osal_pwrmgr_device( PWRMGR_BATTERY );
  pwrmgr_attribute.pwrmgr_task_state = 0;
}

经测量电流为100uA~200uA。我感觉还是有点大,请问怎么才能让这个休眠电流更小?