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.

CC1312R: 如何在未进入任务之前先休眠几分钟,让电源充电

Part Number: CC1312R

Hi,TI,

产品中需要用到交流电通过互感线圈来取电,之前一直通过直流电测试,但是现场测试时掉电厉害一直启动不了

想着在程序执行前休眠五六分钟,让电源先充电,

int main(void)
{


/* Call driver init functions. */
Board_initGeneral();


TimerTask_init();

echoTask_init();


/* Start BIOS */
BIOS_start();

return (0);
}

之前想着让计时器一直计时五六分钟,但是不做事情,不让RF打开,但是貌似这样还是不行,还是启动不了

想问下在程序之前什么函数可以直接让程序休眠等待固定时间?