Other Parts Discussed in Thread: CC2640, SYSBIOS
Tool/software: TI-RTOS
Hi,
In my application, I want to use the RTC in cc2640r2f and the logic is very simple.
get timestamp periodically by using
ISeconds_Time ts;
Seconds_getTime(&ts);
and update/set the timestamp when needed by using,
Seconds_set(newTime);
But the issue is that the RTC clock lost after any reboot triggered by either OAD or Watchdog, meaning I have to re-sync timestamp again. Since the battery is always connected to the board and no power loss, is there a way to let the timestamp/RTC continue?
Thank you,