You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If application has not configured real time clock to nanostack, it
will now advance internal time by a day on each start up. Also
frame counter (and time) storing is forced to happen once a day.
#defineFRAME_COUNTER_STORE_INTERVAL 60 // Time interval (on seconds) between frame counter store operations
161
-
#defineFRAME_COUNTER_STORE_TRIGGER 5 // Delay (on seconds) before storing, when storing of frame counters is triggered
162
-
#defineFRAME_COUNTER_INCREMENT 1000 // How much frame counter is incremented on start up
163
-
#defineFRAME_COUNTER_STORE_THRESHOLD 800 // How much frame counter must increment before it is stored
160
+
#defineFRAME_COUNTER_STORE_INTERVAL 60 // Time interval (on seconds) between checking if frame counter storing is needed
161
+
#defineFRAME_COUNTER_STORE_FORCE_INTERVAL (3600 * 20) // Time interval (on seconds) before frame counter storing is forced (if no other storing operations triggered)
162
+
#defineFRAME_COUNTER_STORE_TRIGGER 5 // Delay (on seconds) before storing, when storing of frame counters is triggered
163
+
#defineFRAME_COUNTER_INCREMENT 1000 // How much frame counter is incremented on start up
164
+
#defineFRAME_COUNTER_STORE_THRESHOLD 800 // How much frame counter must increment before it is stored
tr_error("FATAL: system time less than reference time or more than 12 months in future: %"PRIi64" reference time: %"PRIi64, system_time, current_time);
0 commit comments