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.

CC2650

Other Parts Discussed in Thread: CC2650, TIMAC, CC2530, SYSBIOS

我们用的是CC2650的板子和TIMAC协议栈,我们想使节点休眠,但是不知道如何进入 standy和shutdown模式,以前用的CC2530和TIAMC

进入休眠用的是:

#if defined( POWER_SAVING ) && !defined(USE_ICALL)
else // Complete pass through all task events with no activity?
{
osal_pwrmgr_powerconserve(); // Put the processor/system into sleep
}
#endif

用的是下面的函数,但是以前没有定义 USE_ICALL,不知道用CC2650的时候这个USE_ICALL宏是不是必须定义,如果不能去掉,有什么办法可以执行下面这句代码:

osal_pwrmgr_powerconserve(); // Put the processor/system into sleep;

并且这段代码这flash_rom for rom 中,还不能单步调试,希望可以指点一下!