Move refclock slew and dispersion handler init
This commit is contained in:
parent
91c9f84a01
commit
a8956f2f56
1 changed files with 5 additions and 5 deletions
10
refclock.c
10
refclock.c
|
@ -114,6 +114,11 @@ RCL_Initialise(void)
|
||||||
{
|
{
|
||||||
CNF_AddRefclocks();
|
CNF_AddRefclocks();
|
||||||
|
|
||||||
|
if (n_sources > 0) {
|
||||||
|
LCL_AddParameterChangeHandler(slew_samples, NULL);
|
||||||
|
LCL_AddDispersionNotifyHandler(add_dispersion, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
logfileid = CNF_GetLogRefclocks() ? LOG_FileOpen("refclocks",
|
logfileid = CNF_GetLogRefclocks() ? LOG_FileOpen("refclocks",
|
||||||
" Date (UTC) Time Refid DP L P Raw offset Cooked offset Disp.")
|
" Date (UTC) Time Refid DP L P Raw offset Cooked offset Disp.")
|
||||||
: -1;
|
: -1;
|
||||||
|
@ -268,11 +273,6 @@ RCL_StartRefclocks(void)
|
||||||
} else
|
} else
|
||||||
inst->lock_ref = -1;
|
inst->lock_ref = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (n_sources > 0) {
|
|
||||||
LCL_AddParameterChangeHandler(slew_samples, NULL);
|
|
||||||
LCL_AddDispersionNotifyHandler(add_dispersion, NULL);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue