From a0a496dcb423387e5faa3ab41e14dd6cf7743776 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 11 May 2022 11:53:07 +0200 Subject: [PATCH] refclock: set minimum maxlockage in local mode Use 3 as the minimum maxlockage in the local mode to avoid disruptions due to losing the lock when a single sample is missed, e.g. when the PPS driver polling interval is slightly longer than the pulse interval and a pulse is skipped. --- refclock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/refclock.c b/refclock.c index b59acc3..e91828a 100644 --- a/refclock.c +++ b/refclock.c @@ -237,6 +237,7 @@ RCL_AddRefclock(RefclockParameters *params) inst->pps_forced = 1; inst->lock_ref = inst->ref_id; inst->leap_status = LEAP_Unsynchronised; + inst->max_lock_age = MAX(inst->max_lock_age, 3); } if (inst->driver->poll) {