CC1310standby睡眠模式如何进入问题?
时间:12-23
整理:3721RD
点击:
CC1310的standby的模式应该如何设置才能进入?
直接调用Power_sleep(PowerCC26XX_STANDBY);?
我调用Power_sleep(PowerCC26XX_STANDBY); 后面的Task_sleep(1000000)的一些相关没有执行?
请下载tirtos_cc13xx_cc26xx_2_16_01_14,里面有pinstandby的例子
您可以参考http://www.ti.com/lit/ug/swra486/swra486.pdf
The following code for entering and exiting standby is from the TI-RTOS Power.c implementation: C:\ti\tirtos_simplelink_#_##_##_##\products\bios_#_##_##_##\packages\ti\sysbios\family\arm\cc26xx\Pow er.c.
你好! Viki Shi:
/* Sleep, to let the power policy transition the device to standby */
Task_sleep(standbyDurationUs / Clock_tickPeriod);
是不是这一句就是进入standby模式的睡眠的意思?