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: TIMAC, CC2650

我用的板子是CC2650,协议栈是TIMAC,协议栈里面有没有定时函数。

  • /* Create a periodic poll timer */
    msaPollParams.period = msaWaitPeriod;
    msaPollParams.startFlag = FALSE;
    msaPollParams.arg = (UArg)MSA_POLL_EVENT;
    Clock_construct(&msaPoll, MSA_ClockFxn, msaWaitPeriod, &msaPollParams);

  • 这个我知道,我想问一下msaWaitPeriod = MSA_WAIT_PERIOD * 1000 / Clock_tickPeriod;

    msaWaitPeriod 他等于多少秒;还有我们发送刚播消息,为什么接收方可以收到三个相同的数据包,不知道可不可以改成只接收到一次?