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.

Compiler/CC2640R2F: About Util_constructClock

Part Number: CC2640R2F

Tool/software: TI C/C++ Compiler

HI Ti,

I have a question about the "Util_constructClock" function.

Like this:

Util_constructClock(&periodicClock, SimpleBLEPeripheral_clockHandler, 100, 0, false, NULL);

Then, the BlueTooth(With CC2640R2) signal should be sent 10 times per second.

However, when I use it as below:

Util_constructClock(&periodicClock, SimpleBLEPeripheral_clockHandler, 1, 0, false, NULL);

The BlueTooth signal cannot be sent about 1000 times per second. It’s slower.

Then actually, how much time does the CC2640R2 consume, when I set the clock to 1ms duration?

Thanks.