Hi,
I am testing drift RTC over time and get some really big numbers. On Arch_max board that doesn’t install external watch crystal, I get 300+ seconds/per hour drift.
The following is my code to measure the drift. It syncs time with a NTP server, and record time right before and after the sync, also the time taken by NTP request via timer.
minuteTicker.attach(&mtCallback, 60);
Timer t;
t.start();
NTPClient ntp(network);
time_t tbSync, taSync;
while (1)
{
if(minutePassed>= 59)
{
tbSync = time(NULL);
t.reset();
ntp.setTime("pool.ntp.org");
taSync = time(NULL);
printf("%ld: NTP synced, a-b = %ld, NTP took %f seconds\r\n", (long)taSync, (long)taSync - (long)tbSync, t.read());
minutePassed = 0;
}
ThisThread::sleep_for(5000);
}
On a customized board based on arch_max but with added external watch crystal, I get smaller but still disturbingly large numbers:
1578903084: NTP synced, a-b = 20, NTP took 0.044439 seconds
1578906672: NTP synced, a-b = 47, NTP took 0.080382 seconds
1578910263: NTP synced, a-b = 46, NTP took 0.090190 seconds
1578913856: NTP synced, a-b = 42, NTP took 0.089087 seconds
1578917449: NTP synced, a-b = 50, NTP took 0.105676 seconds
1578921042: NTP synced, a-b = 48, NTP took 0.077139 seconds
1578924636: NTP synced, a-b = 48, NTP took 0.083152 seconds
Change LSE_AVAILABLE in mbed_app.json doesn’t seem to make a difference:
"ARCH_MAX": {
"target.LSE_AVAILABLE": false,
"target.stdio_uart_tx": "PC_6",
"target.stdio_uart_rx": "PC_7"
}
Meanwhile, on NUCLEO_F401RE board, I get much smaller therefore more acceptable numbers:
1578903771: NTP re-synced, a-b = 1, took 0.284276
1578907330: NTP re-synced, a-b = 1, took 0.144254
1578910890: NTP re-synced, a-b = 4, took 4.068612
1578914454: NTP re-synced, a-b = 0, took 0.183230
1578918015: NTP re-synced, a-b = 1, took 0.128623
1578921577: NTP re-synced, a-b = 0, took 0.093269
1578925138: NTP re-synced, a-b = 1, took 0.134251
1578928701: NTP re-synced, a-b = 0, took 0.112265
Can anyone point a direction to how to increase the RTC accuracy of arch_max based boards? Thanks,