4 ** refclock_datum - clock driver for the Datum Programmable Time Server
6 ** Important note: This driver assumes that you have termios. If you have
7 ** a system that does not have termios, you will have to modify this driver.
9 ** Sorry, I have only tested this driver on SUN and HP platforms.
16 #if defined(REFCLOCK) && defined(CLOCK_DATUM)
24 #include "ntp_refclock.h"
25 #include "ntp_unixtime.h"
26 #include "ntp_stdlib.h"
31 #if defined(HAVE_BSD_TTYS)
33 #endif /* HAVE_BSD_TTYS */
35 #if defined(HAVE_SYSV_TTYS)
37 #endif /* HAVE_SYSV_TTYS */
39 #if defined(HAVE_TERMIOS)
45 #include <sys/clkdefs.h>
49 #include "ntp_stdlib.h"
52 ** This driver supports the Datum Programmable Time System (PTS) clock.
53 ** The clock works in very straight forward manner. When it receives a
54 ** time code request (e.g., the ascii string "//k/mn"), it responds with
55 ** a seven byte BCD time code. This clock only responds with a
56 ** time code after it first receives the "//k/mn" message. It does not
57 ** periodically send time codes back at some rate once it is started.
58 ** the returned time code can be broken down into the following fields.
60 ** _______________________________
61 ** Bit Index | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
62 ** ===============================
63 ** byte 0: | - - - - | H D |
64 ** ===============================
65 ** byte 1: | T D | U D |
66 ** ===============================
67 ** byte 2: | - - | T H | U H |
68 ** ===============================
69 ** byte 3: | - | T M | U M |
70 ** ===============================
71 ** byte 4: | - | T S | U S |
72 ** ===============================
73 ** byte 5: | t S | h S |
74 ** ===============================
75 ** byte 6: | m S | - - - - |
76 ** ===============================
78 ** In the table above:
80 ** "-" means don't care
81 ** "H D", "T D", and "U D" means Hundreds, Tens, and Units of Days
82 ** "T H", and "UH" means Tens and Units of Hours
83 ** "T M", and "U M" means Tens and Units of Minutes
84 ** "T S", and "U S" means Tens and Units of Seconds
85 ** "t S", "h S", and "m S" means tenths, hundredths, and thousandths
88 ** The Datum PTS communicates throught the RS232 port on your machine.
89 ** Right now, it assumes that you have termios. This driver has been tested
90 ** on SUN and HP workstations. The Datum PTS supports various IRIG and
91 ** NASA input codes. This driver assumes that the name of the device is
92 ** /dev/datum. You will need to make a soft link to your RS232 device or
93 ** create a new driver to use this refclock.
101 ** Note that if GMT is defined, then the Datum PTS must use Greenwich
102 ** time. Otherwise, this driver allows the Datum PTS to use the current
103 ** wall clock for its time. It determines the time zone offset by minimizing
104 ** the error after trying several time zone offsets. If the Datum PTS
105 ** time is Greenwich time and GMT is not defined, everything should still
106 ** work since the time zone will be found to be 0. What this really means
107 ** is that your system time (at least to start with) must be within the
108 ** correct time by less than +- 30 minutes. The default is for GMT to not
109 ** defined. If you really want to force GMT without the funny +- 30 minute
110 ** stuff then you must define (uncomment) GMT below.
115 #define DEBUG_DATUM_PTC
116 #define LOG_TIME_ERRORS
120 #define PRECISION (-10) /* precision assumed 1/1024 ms */
121 #define REFID "DATM" /* reference id */
122 #define DATUM_DISPERSION 0 /* fixed dispersion = 0 ms */
123 #define DATUM_MAX_ERROR 0.100 /* limits on sigma squared */
124 #define DATUM_DEV "/dev/datum" /* device name */
126 #define DATUM_MAX_ERROR2 (DATUM_MAX_ERROR*DATUM_MAX_ERROR)
129 ** The Datum PTS structure
133 ** I don't use a fixed array of MAXUNITS like everyone else just because
134 ** I don't like to program that way. Sorry if this bothers anyone. I assume
135 ** that you can use any id for your unit and I will search for it in a
136 ** dynamic array of units until I find it. I was worried that users might
137 ** enter a bad id in their configuration file (larger than MAXUNITS) and
138 ** besides, it is just cleaner not to have to assume that you have a fixed
139 ** number of anything in a program.
142 struct datum_pts_unit
{
143 struct peer
*peer
; /* peer used by ntp */
144 struct refclockio io
; /* io structure used by ntp */
145 int PTS_fd
; /* file descriptor for PTS */
146 u_int unit
; /* id for unit */
147 u_long timestarted
; /* time started */
148 l_fp lastrec
; /* time tag for the receive time (system) */
149 l_fp lastref
; /* reference time (Datum time) */
150 u_long yearstart
; /* the year that this clock started */
151 int coderecv
; /* number of time codes received */
154 int minute
; /* minutes */
155 int second
; /* seconds */
156 int msec
; /* miliseconds */
157 int usec
; /* miliseconds */
158 u_char leap
; /* funny leap character code */
159 char retbuf
[8]; /* returned time from the datum pts */
160 char nbytes
; /* number of bytes received from datum pts */
161 double sigma2
; /* average squared error (roughly) */
162 int tzoff
; /* time zone offest from GMT */
166 ** PTS static constant variables for internal use
169 static char TIME_REQUEST
[6]; /* request message sent to datum for time */
170 static int nunits
; /* number of active units */
171 static struct datum_pts_unit
172 **datum_pts_unit
; /* dynamic array of datum PTS structures */
175 ** Callback function prototypes that ntpd needs to know about.
178 static int datum_pts_start (int, struct peer
*);
179 static void datum_pts_shutdown (int, struct peer
*);
180 static void datum_pts_poll (int, struct peer
*);
181 static void datum_pts_control (int, struct refclockstat
*,
182 struct refclockstat
*, struct peer
*);
183 static void datum_pts_init (void);
184 static void datum_pts_buginfo (int, struct refclockbug
*, struct peer
*);
187 ** This is the call back function structure that ntpd actually uses for
191 struct refclock refclock_datum
= {
192 datum_pts_start
, /* start up a new Datum refclock */
193 datum_pts_shutdown
, /* shutdown a Datum refclock */
194 datum_pts_poll
, /* sends out the time request */
195 datum_pts_control
, /* not used */
196 datum_pts_init
, /* initialization (called first) */
197 datum_pts_buginfo
, /* not used */
198 NOFLAGS
/* we are not setting any special flags */
202 ** The datum_pts_receive callback function is handled differently from the
203 ** rest. It is passed to the ntpd io data structure. Basically, every
204 ** 64 seconds, the datum_pts_poll() routine is called. It sends out the time
205 ** request message to the Datum Programmable Time System. Then, ntpd
206 ** waits on a select() call to receive data back. The datum_pts_receive()
207 ** function is called as data comes back. We expect a seven byte time
208 ** code to be returned but the datum_pts_receive() function may only get
209 ** a few bytes passed to it at a time. In other words, this routine may
210 ** get called by the io stuff in ntpd a few times before we get all seven
211 ** bytes. Once the last byte is received, we process it and then pass the
212 ** new time measurement to ntpd for updating the system time. For now,
213 ** there is no 3 state filtering done on the time measurements. The
214 ** jitter may be a little high but at least for its current use, it is not
215 ** a problem. We have tried to keep things as simple as possible. This
216 ** clock should not jitter more than 1 or 2 mseconds at the most once
217 ** things settle down. It is important to get the right drift calibrated
218 ** in the ntpd.drift file as well as getting the right tick set up right
219 ** using tickadj for SUNs. Tickadj is not used for the HP but you need to
220 ** remember to bring up the adjtime daemon because HP does not support
221 ** the adjtime() call.
224 static void datum_pts_receive (struct recvbuf
*);
226 /*......................................................................*/
227 /* datum_pts_start - start up the datum PTS. This means open the */
228 /* RS232 device and set up the data structure for my unit. */
229 /*......................................................................*/
237 struct datum_pts_unit
**temp_datum_pts_unit
;
238 struct datum_pts_unit
*datum_pts
;
244 #ifdef DEBUG_DATUM_PTC
246 printf("Starting Datum PTS unit %d\n", unit
);
250 ** Open the Datum PTS device
252 fd
= open(DATUM_DEV
, O_RDWR
);
255 msyslog(LOG_ERR
, "Datum_PTS: open(\"%s\", O_RDWR) failed: %m", DATUM_DEV
);
260 ** Create the memory for the new unit
263 temp_datum_pts_unit
= (struct datum_pts_unit
**)
264 emalloc((nunits
+1)*sizeof(struct datum_pts_unit
*));
265 if (nunits
> 0) memcpy(temp_datum_pts_unit
, datum_pts_unit
,
266 nunits
*sizeof(struct datum_pts_unit
*));
267 free(datum_pts_unit
);
268 datum_pts_unit
= temp_datum_pts_unit
;
269 datum_pts_unit
[nunits
] = (struct datum_pts_unit
*)
270 emalloc(sizeof(struct datum_pts_unit
));
271 datum_pts
= datum_pts_unit
[nunits
];
273 datum_pts
->unit
= unit
; /* set my unit id */
274 datum_pts
->yearstart
= 0; /* initialize the yearstart to 0 */
275 datum_pts
->sigma2
= 0.0; /* initialize the sigma2 to 0 */
277 datum_pts
->PTS_fd
= fd
;
279 fcntl(datum_pts
->PTS_fd
, F_SETFL
, 0); /* clear the descriptor flags */
281 #ifdef DEBUG_DATUM_PTC
283 printf("Opening RS232 port with file descriptor %d\n",
288 ** Set up the RS232 terminal device information. Note that we assume that
289 ** we have termios. This code has only been tested on SUNs and HPs. If your
290 ** machine does not have termios this driver cannot be initialized. You can change this
291 ** if you want by editing this source. Please give the changes back to the
292 ** ntp folks so that it can become part of their regular distribution.
297 memset(&arg
, 0, sizeof(arg
));
299 arg
.c_iflag
= IGNBRK
;
301 arg
.c_cflag
= B9600
| CS8
| CREAD
| PARENB
| CLOCAL
;
303 arg
.c_cc
[VMIN
] = 0; /* start timeout timer right away (not used) */
304 arg
.c_cc
[VTIME
] = 30; /* 3 second timout on reads (not used) */
306 tcsetattr(datum_pts
->PTS_fd
, TCSANOW
, &arg
);
310 msyslog(LOG_ERR
, "Datum_PTS: Termios not supported in this driver");
311 (void)close(datum_pts
->PTS_fd
);
313 peer
->precision
= PRECISION
;
314 pp
->clockdesc
= DESCRIPTION
;
315 memcpy((char *)&pp
->refid
, REFID
, 4);
322 ** Initialize the ntpd IO structure
325 datum_pts
->peer
= peer
;
326 datum_pts
->io
.clock_recv
= datum_pts_receive
;
327 datum_pts
->io
.srcclock
= (caddr_t
)datum_pts
;
328 datum_pts
->io
.datalen
= 0;
329 datum_pts
->io
.fd
= datum_pts
->PTS_fd
;
331 if (!io_addclock(&(datum_pts
->io
))) {
333 #ifdef DEBUG_DATUM_PTC
335 printf("Problem adding clock\n");
338 msyslog(LOG_ERR
, "Datum_PTS: Problem adding clock");
339 (void)close(datum_pts
->PTS_fd
);
345 ** Now add one to the number of units and return a successful code
354 /*......................................................................*/
355 /* datum_pts_shutdown - this routine shuts doen the device and */
356 /* removes the memory for the unit. */
357 /*......................................................................*/
366 struct datum_pts_unit
**temp_datum_pts_unit
;
368 #ifdef DEBUG_DATUM_PTC
370 printf("Shutdown Datum PTS\n");
373 msyslog(LOG_ERR
, "Datum_PTS: Shutdown Datum PTS");
376 ** First we have to find the right unit (i.e., the one with the same id).
377 ** We do this by looping through the dynamic array of units intil we find
378 ** it. Note, that I don't simply use an array with a maximimum number of
379 ** Datum PTS units. Everything is completely dynamic.
382 for (i
=0; i
<nunits
; i
++) {
383 if (datum_pts_unit
[i
]->unit
== unit
) {
386 ** We found the unit so close the file descriptor and free up the memory used
390 io_closeclock(&datum_pts_unit
[i
]->io
);
391 close(datum_pts_unit
[i
]->PTS_fd
);
392 free(datum_pts_unit
[i
]);
395 ** Now clean up the datum_pts_unit dynamic array so that there are no holes.
396 ** This may mean moving pointers around, etc., to keep things compact.
401 temp_datum_pts_unit
= (struct datum_pts_unit
**)
402 emalloc((nunits
-1)*sizeof(struct datum_pts_unit
*));
403 if (i
!= 0) memcpy(temp_datum_pts_unit
, datum_pts_unit
,
404 i
*sizeof(struct datum_pts_unit
*));
406 for (j
=i
+1; j
<nunits
; j
++) {
407 temp_datum_pts_unit
[j
-1] = datum_pts_unit
[j
];
410 free(datum_pts_unit
);
411 datum_pts_unit
= temp_datum_pts_unit
;
415 free(datum_pts_unit
);
416 datum_pts_unit
= NULL
;
425 #ifdef DEBUG_DATUM_PTC
427 printf("Error, could not shut down unit %d\n",unit
);
430 msyslog(LOG_ERR
, "Datum_PTS: Could not shut down Datum PTS unit %d",unit
);
434 /*......................................................................*/
435 /* datum_pts_poll - this routine sends out the time request to the */
436 /* Datum PTS device. The time will be passed back in the */
437 /* datum_pts_receive() routine. */
438 /*......................................................................*/
449 struct datum_pts_unit
*datum_pts
;
451 #ifdef DEBUG_DATUM_PTC
453 printf("Poll Datum PTS\n");
457 ** Find the right unit and send out a time request once it is found.
461 for (i
=0; i
<nunits
; i
++) {
462 if (datum_pts_unit
[i
]->unit
== unit
) {
464 datum_pts
= datum_pts_unit
[i
];
465 error_code
= write(datum_pts
->PTS_fd
, TIME_REQUEST
, 6);
466 if (error_code
!= 6) perror("TIME_REQUEST");
467 datum_pts
->nbytes
= 0;
473 ** Print out an error message if we could not find the right unit.
476 if (unit_index
== -1) {
478 #ifdef DEBUG_DATUM_PTC
480 printf("Error, could not poll unit %d\n",unit
);
483 msyslog(LOG_ERR
, "Datum_PTS: Could not poll unit %d",unit
);
491 /*......................................................................*/
492 /* datum_pts_control - not used */
493 /*......................................................................*/
498 struct refclockstat
*in
,
499 struct refclockstat
*out
,
504 #ifdef DEBUG_DATUM_PTC
506 printf("Control Datum PTS\n");
512 /*......................................................................*/
513 /* datum_pts_init - initializes things for all possible Datum */
514 /* time code generators that might be used. In practice, this is */
515 /* only called once at the beginning before anything else is */
517 /*......................................................................*/
524 /*...... open up the log file if we are debugging ......................*/
528 ** Open up the log file if we are debugging. For now, send data out to the
532 #ifdef DEBUG_DATUM_PTC
534 printf("Init Datum PTS\n");
538 ** Initialize the time request command string. This is the only message
539 ** that we ever have to send to the Datum PTS (although others are defined).
542 memcpy(TIME_REQUEST
, "//k/mn",6);
545 ** Initialize the number of units to 0 and set the dynamic array of units to
546 ** NULL since there are no units defined yet.
549 datum_pts_unit
= NULL
;
555 /*......................................................................*/
556 /* datum_pts_buginfo - not used */
557 /*......................................................................*/
562 register struct refclockbug
*bug
,
563 register struct peer
*peer
567 #ifdef DEBUG_DATUM_PTC
569 printf("Buginfo Datum PTS\n");
575 /*......................................................................*/
576 /* datum_pts_receive - receive the time buffer that was read in */
577 /* by the ntpd io handling routines. When 7 bytes have been */
578 /* received (it may take several tries before all 7 bytes are */
579 /* received), then the time code must be unpacked and sent to */
580 /* the ntpd clock_receive() routine which causes the systems */
581 /* clock to be updated (several layers down). */
582 /*......................................................................*/
586 struct recvbuf
*rbufp
591 struct datum_pts_unit
*datum_pts
;
596 double ftimerr
, abserr
;
597 #ifdef DEBUG_DATUM_PTC
604 ** Get the time code (maybe partial) message out of the rbufp buffer.
607 datum_pts
= (struct datum_pts_unit
*)rbufp
->recv_srcclock
;
608 dpt
= (char *)&rbufp
->recv_space
;
609 dpend
= rbufp
->recv_length
;
611 #ifdef DEBUG_DATUM_PTC
613 printf("Receive Datum PTS: %d bytes\n", dpend
);
617 /*...... save the ntp system time when the first byte is received ......*/
621 ** Save the ntp system time when the first byte is received. Note that
622 ** because it may take several calls to this routine before all seven
623 ** bytes of our return message are finally received by the io handlers in
624 ** ntpd, we really do want to use the time tag when the first byte is
625 ** received to reduce the jitter.
628 if (datum_pts
->nbytes
== 0) {
629 datum_pts
->lastrec
= rbufp
->recv_time
;
633 ** Increment our count to the number of bytes received so far. Return if we
634 ** haven't gotten all seven bytes yet.
637 for (i
=0; i
<dpend
; i
++) {
638 datum_pts
->retbuf
[datum_pts
->nbytes
+i
] = dpt
[i
];
641 datum_pts
->nbytes
+= dpend
;
643 if (datum_pts
->nbytes
!= 7) {
648 ** Convert the seven bytes received in our time buffer to day, hour, minute,
649 ** second, and msecond values. The usec value is not used for anything
650 ** currently. It is just the fractional part of the time stored in units
654 datum_pts
->day
= 100*(datum_pts
->retbuf
[0] & 0x0f) +
655 10*((datum_pts
->retbuf
[1] & 0xf0)>>4) +
656 (datum_pts
->retbuf
[1] & 0x0f);
658 datum_pts
->hour
= 10*((datum_pts
->retbuf
[2] & 0x30)>>4) +
659 (datum_pts
->retbuf
[2] & 0x0f);
661 datum_pts
->minute
= 10*((datum_pts
->retbuf
[3] & 0x70)>>4) +
662 (datum_pts
->retbuf
[3] & 0x0f);
664 datum_pts
->second
= 10*((datum_pts
->retbuf
[4] & 0x70)>>4) +
665 (datum_pts
->retbuf
[4] & 0x0f);
667 datum_pts
->msec
= 100*((datum_pts
->retbuf
[5] & 0xf0) >> 4) +
668 10*(datum_pts
->retbuf
[5] & 0x0f) +
669 ((datum_pts
->retbuf
[6] & 0xf0)>>4);
671 datum_pts
->usec
= 1000*datum_pts
->msec
;
673 #ifdef DEBUG_DATUM_PTC
675 printf("day %d, hour %d, minute %d, second %d, msec %d\n",
684 ** Get the GMT time zone offset. Note that GMT should be zero if the Datum
685 ** reference time is using GMT as its time base. Otherwise we have to
686 ** determine the offset if the Datum PTS is using time of day as its time
690 goodtime
= 0; /* We are not sure about the time and offset yet */
695 ** This is the case where the Datum PTS is using GMT so there is no time
699 tzoff
= 0; /* set time zone offset to 0 */
704 ** This is the case where the Datum PTS is using regular time of day for its
705 ** time so we must compute the time zone offset. The way we do it is kind of
706 ** funny but it works. We loop through different time zones (0 to 24) and
707 ** pick the one that gives the smallest error (+- one half hour). The time
708 ** zone offset is stored in the datum_pts structure for future use. Normally,
709 ** the clocktime() routine is only called once (unless the time zone offset
710 ** changes due to daylight savings) since the goodtime flag is set when a
711 ** good time is found (with a good offset). Note that even if the Datum
712 ** PTS is using GMT, this mechanism will still work since it should come up
713 ** with a value for tzoff = 0 (assuming that your system clock is within
714 ** a half hour of the Datum time (even with time zone differences).
717 for (tzoff
=0; tzoff
<24; tzoff
++) {
718 if (clocktime( datum_pts
->day
,
722 (tzoff
+ datum_pts
->tzoff
) % 24,
723 datum_pts
->lastrec
.l_ui
,
724 &datum_pts
->yearstart
,
725 &datum_pts
->lastref
.l_ui
) ) {
727 datum_pts
->lastref
.l_uf
= 0;
728 error
= datum_pts
->lastref
.l_ui
- datum_pts
->lastrec
.l_ui
;
730 #ifdef DEBUG_DATUM_PTC
731 printf("Time Zone (clocktime method) = %d, error = %d\n", tzoff
, error
);
734 if ((error
< 1799) && (error
> -1799)) {
735 tzoff
= (tzoff
+ datum_pts
->tzoff
) % 24;
736 datum_pts
->tzoff
= tzoff
;
739 #ifdef DEBUG_DATUM_PTC
740 printf("Time Zone found (clocktime method) = %d\n",tzoff
);
752 ** Make sure that we have a good time from the Datum PTS. Clocktime() also
753 ** sets yearstart and lastref.l_ui. We will have to set astref.l_uf (i.e.,
754 ** the fraction of a second) stuff later.
759 if (!clocktime( datum_pts
->day
,
764 datum_pts
->lastrec
.l_ui
,
765 &datum_pts
->yearstart
,
766 &datum_pts
->lastref
.l_ui
) ) {
768 #ifdef DEBUG_DATUM_PTC
771 printf("Error: bad clocktime\n");
772 printf("GMT %d, lastrec %d, yearstart %d, lastref %d\n",
774 datum_pts
->lastrec
.l_ui
,
775 datum_pts
->yearstart
,
776 datum_pts
->lastref
.l_ui
);
780 msyslog(LOG_ERR
, "Datum_PTS: Bad clocktime");
786 #ifdef DEBUG_DATUM_PTC
788 printf("Good clocktime\n");
796 ** We have datum_pts->lastref.l_ui set (which is the integer part of the
797 ** time. Now set the microseconds field.
800 TVUTOTSF(datum_pts
->usec
, datum_pts
->lastref
.l_uf
);
803 ** Compute the time correction as the difference between the reference
804 ** time (i.e., the Datum time) minus the receive time (system time).
807 tstmp
= datum_pts
->lastref
; /* tstmp is the datum ntp time */
808 L_SUB(&tstmp
, &datum_pts
->lastrec
); /* tstmp is now the correction */
809 datum_pts
->coderecv
++; /* increment a counter */
811 #ifdef DEBUG_DATUM_PTC
812 dispersion
= DATUM_DISPERSION
; /* set the dispersion to 0 */
813 ftimerr
= dispersion
;
814 ftimerr
/= (1024.0 * 64.0);
816 printf("dispersion = %d, %f\n", dispersion
, ftimerr
);
820 ** Pass the new time to ntpd through the refclock_receive function. Note
821 ** that we are not trying to make any corrections due to the time it takes
822 ** for the Datum PTS to send the message back. I am (erroneously) assuming
823 ** that the time for the Datum PTS to send the time back to us is negligable.
824 ** I suspect that this time delay may be as much as 15 ms or so (but probably
825 ** less). For our needs at JPL, this kind of error is ok so it is not
826 ** necessary to use fudge factors in the ntp.conf file. Maybe later we will.
828 /*LFPTOD(&tstmp, doffset);*/
829 datum_pts
->lastref
= datum_pts
->lastrec
;
830 refclock_receive(datum_pts
->peer
);
833 ** Compute sigma squared (not used currently). Maybe later, this could be
834 ** used for the dispersion estimate. The problem is that ntpd does not link
835 ** in the math library so sqrt() is not available. Anyway, this is useful
836 ** for debugging. Maybe later I will just use absolute values for the time
837 ** error to come up with my dispersion estimate. Anyway, for now my dispersion
841 timerr
= tstmp
.l_ui
<<20;
842 timerr
|= (tstmp
.l_uf
>>12) & 0x000fffff;
844 ftimerr
/= 1024*1024;
846 if (ftimerr
< 0.0) abserr
= -ftimerr
;
848 if (datum_pts
->sigma2
== 0.0) {
849 if (abserr
< DATUM_MAX_ERROR
) {
850 datum_pts
->sigma2
= abserr
*abserr
;
852 datum_pts
->sigma2
= DATUM_MAX_ERROR2
;
855 if (abserr
< DATUM_MAX_ERROR
) {
856 datum_pts
->sigma2
= 0.95*datum_pts
->sigma2
+ 0.05*abserr
*abserr
;
858 datum_pts
->sigma2
= 0.95*datum_pts
->sigma2
+ 0.05*DATUM_MAX_ERROR2
;
862 #ifdef DEBUG_DATUM_PTC
864 printf("Time error = %f seconds\n", ftimerr
);
867 #if defined(DEBUG_DATUM_PTC) || defined(LOG_TIME_ERRORS)
869 printf("PTS: day %d, hour %d, minute %d, second %d, msec %d, Time Error %f\n",
880 int refclock_datum_bs
;
881 #endif /* REFCLOCK */