Part Number: CC1354P10
TI Friends & Family,
Our customer would like to know how to change the scifStartRtcTicksNow() RTC tick rate inside the TI Sensor Code Studio GUI. I would like to find out if this is possible.
First, to level-set, in general, users can set the sample interval to 10 msec in the main application:
// Set the Sensor Controller sample interval
scifStartRtcTicksNow(0x00010000 / 100); // sensor controller runs every 10 ms
In the SCS code, setting (1):
fwScheduleTask(1); will cause the sensor controller to wake up every sample interval (1 x 10 ms = 10 ms)
setting (10)
fwScheduleTask(10); will cause the sensor controller to wake up every 10th sample interval (10 * 10 ms = 100)
The customer does this today; but wants to know if there is a way to do this also within / inside Sensor Control Studio.
Any input is welcomed.
TY,
CY


