Hi,
At Simplelink Academy Sensor Controller here is the code set the Task Execution every 1 second. I have tested this and works. But I do not understand why you need to divide it by 1. Its like 65536 / 1 = 65536. So what is the explanation why you need to divide it by 1.
// Set the Sensor Controller task tick interval to 1 second uint32_t rtc_Hz = 1; // 1Hz RTC scifStartRtcTicksNow(0x00010000 / rtc_Hz);
-kel