Thread 中讨论的其他器件:CC2650、
工具/软件:TI-RTOS
我正在尝试使用 ProjectZero 实现 CC2650 1uA 待机状态。
按下 button0时、我可以停止广播、并在按下 handlebuttonpress 时使用以下代码释放按钮时将其重新打开:
uint8_t 模式= 0;//Dale
if (pState->state ==1){//Dale
GAPRole_SetParameter (GAPROLE_adverted_enabled、sizeof (uint8_t)、&mode);//Adv = Off Dale
}否则{
MODE = true;//Dale
GAPRole_SetParameter (GAPROLE_advertise_enabled,1,&mode);// Dale Adv=on
};
问题在于、在广播期间、CC2650芯片消耗~1700ua、而在不进行广播时、消耗~1900ua。
我将使用电流表在 XDS_VCC 和 CC2650_VDD 引脚之间测量 CC2650芯片电流。
发生什么事了? 另外、我还需要做什么才能进入待机模式?
谢谢、
戴尔