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.

CC2640: Establishing connection without BLE Stack

Part Number: CC2640
Other Parts Discussed in Thread: CC1350

Hello,

First of all, I'm developing firmware on a CC2640 without the BLE Stack. I'm trying to optimize the amount of time that the radio is active during a connection. To achieve this I'm trying to use the triggers defined in slave command parameters which are timeout trigger and end trigger(Table 23.89 in Technical Reference Manual).

As stated in 23.6.4.2 Slave Command section of Technical Reference Manual "The parameters pParams->timeoutTrigger and pParams->timeoutTime define the time to end the operation if no sync is found by the demodulator. The startTrigger and pParams->timeoutTrigger together define the receive window for the slave.", I'm using start trigger as TRIG_NOW and I'm trying different triggers to end this reception at a specific amount of time which is the window size for BLE.

I have tried both absolute timing(TRIG_ABSTIME) and relative timing(TRIG_REL_SUBMIT) for the radio to end the slave command but it always stays active with relative timing and doesn't stop at the time that I write to timeout time for absolute timing. I thought the problem might be because I was not using CMD_SYNC_START_RAT command for radio timer. But I also fixed that buy using CMD_START_RAT for the first time after system boot and CMD_SYNC_START_RAT with rat0 value received from CMD_SYNC_STOP_RAT command. Fixing it didn't solve the timeout issue either.

I would very much appreciate it, if someone can help me with this timeout trigger timing by giving an example such as what should I write to timeout time and end time parameters for the slave command for example given 10 ms of window size.

Thank you very much in advance.

  • Hi,

    Since you are making your own BLE stack, we don't have examples for using RF driver directly.

    I would recommend you to checkout how the RF drivers has been used in the CC1350 TI-RTOS example, (ex : rfWakeOnRadioRx) which contains how to use endtime with endTrigger type.

    If you have more questions, I would recommend you to post on 2.4GHz-Proprietary forum

    e2e.ti.com/.../964

  • Hi again,

    I checked the example as suggested and it seems like the command parameter actually uses the RAT ticks instead of RTC ticks. Subsequently, I checked if the Technical Reference Manual has been revised. In the end, I saw that the part I quoted was actually a mistake of the Technical Reference Manual that I was checking and it was corrected in the new one as: "Absolute timing uses the value of the 32-bit RAT. Relative timing uses the number of RAT ticks."

    Thank you for your help. If I need, I will ask further questions to 2.4GHz-Proprietary forum.