xref: /netbsd-src/external/bsd/ntp/dist/html/hints/parse (revision abb0f93cd77b67f080613360c65701f85e5f5cfe)
1*abb0f93cSkardelCompilation:
2*abb0f93cSkardel	Usual thing: rm -f Config.local ; make for vanilla
3*abb0f93cSkardel			make refconf for reference clock (e. g. DCF77)
4*abb0f93cSkardel
5*abb0f93cSkardelDirectory contents:
6*abb0f93cSkardel
7*abb0f93cSkardel	hints/PARSE	- this file
8*abb0f93cSkardel
9*abb0f93cSkardel	xntpd/refclock_parse.c
10*abb0f93cSkardel			- reference clock support for DCF77/GPS in xntp
11*abb0f93cSkardel	parse/parse.c
12*abb0f93cSkardel			- Reference clock data parser framework
13*abb0f93cSkardel	parse/parse_conf.c
14*abb0f93cSkardel			- parser configuration (clock types)
15*abb0f93cSkardel	parse/clk_meinberg.c
16*abb0f93cSkardel			- Meinberg clock formats (DCF U/A 31, PZF 535, GPS166)
17*abb0f93cSkardel	parse/clk_schmid.c
18*abb0f93cSkardel			- Schmid receiver (DCF77)
19*abb0f93cSkardel	parse/clk_rawdcf.c
20*abb0f93cSkardel			- 100/200ms pulses via 50 Baud line (DCF77)
21*abb0f93cSkardel	parse/clk_dcf7000.c
22*abb0f93cSkardel			- ELV DCF7000 (DCF77)
23*abb0f93cSkardel	parse/clk_trimble.c
24*abb0f93cSkardel			- Trimble SV6 GPS receiver
25*abb0f93cSkardel
26*abb0f93cSkardel			  If you want to add new clock types please check
27*abb0f93cSkardel			  with kardel@informatik.uni-erlangen.de. These files
28*abb0f93cSkardel			  implement the conversion of RS232 data streams into
29*abb0f93cSkardel			  timing information used by refclock_parse.c which is
30*abb0f93cSkardel			  mostly generic except for NTP configuration constants.
31*abb0f93cSkardel
32*abb0f93cSkardel	parse/Makefile.kernel
33*abb0f93cSkardel			- *SIMPLE* makefile to build a loadable STREAMS
34*abb0f93cSkardel			  module for SunOS 4.x / SunOS 5.x systems
35*abb0f93cSkardel
36*abb0f93cSkardel	parse/parsestreams.c
37*abb0f93cSkardel			- SUN Streams module (loadable) for radio clocks
38*abb0f93cSkardel			  This streams module is designed for SunOS 4.1.X.
39*abb0f93cSkardel
40*abb0f93cSkardel	parse/parsesolaris.c
41*abb0f93cSkardel			- SUN Streams module (loadable) for radio clocks.
42*abb0f93cSkardel			  This streams module is designed for SunOS 5.x
43*abb0f93cSkardel			  Beware this is still new - so it might crash
44*abb0f93cSkardel			  your machine (we have seen it working, though).
45*abb0f93cSkardel
46*abb0f93cSkardel	parse/parsetest.c
47*abb0f93cSkardel			- simple test program for STREAMS module. Its so simple,
48*abb0f93cSkardel			  that it doesn't even set TTY-modes, thus they got to
49*abb0f93cSkardel			  be correct on startup - works for Meinberg receivers
50*abb0f93cSkardel
51*abb0f93cSkardel	parse/testdcf.c
52*abb0f93cSkardel			- test program for raw DCF77 (100/200ms pulses)
53*abb0f93cSkardel			  receivers
54*abb0f93cSkardel
55*abb0f93cSkardel        include/parse.h - interface to "parse" module and more
56*abb0f93cSkardel        include/parse_conf.h
57*abb0f93cSkardel			- interface to "parse" configuration
58*abb0f93cSkardel
59*abb0f93cSkardel	include/sys/parsestreams.h
60*abb0f93cSkardel			- STREAMS specific definitions
61*abb0f93cSkardel
62*abb0f93cSkardel	scripts/support
63*abb0f93cSkardel			- scripts (perl & sh) for statistics and rc startup
64*abb0f93cSkardel			  the startup scripts are used in Erlangen for
65*abb0f93cSkardel			  starting the daemon on a variety of Suns and HPs
66*abb0f93cSkardel			  and for Reference Clock startup on Suns
67*abb0f93cSkardel			  These scripts may or may not be helpful to you.
68*abb0f93cSkardel
69*abb0f93cSkardelSupported clocks:
70*abb0f93cSkardel	Meinberg DCF U/A 31
71*abb0f93cSkardel	Meinberg PZF535/TCXO	(Software revision PZFUERL 4.6)
72*abb0f93cSkardel	Meinberg PZF535/OCXO	(Software revision PZFUERL 4.6)
73*abb0f93cSkardel	Meinberg GPS166		(Software version for Uni-Erlangen)
74*abb0f93cSkardel	ELV DCF7000		(not recommended - casual/emergency use only)
75*abb0f93cSkardel	Conrad DCF77 receiver	(email: time@informatik.uni-erlangen.de)
76*abb0f93cSkardel	  + level converter
77*abb0f93cSkardel	TimeBrick		(email: time@informatik.uni-erlangen.de)
78*abb0f93cSkardel	Schmid Receiver Kit
79*abb0f93cSkardel	Trimble SV6 GPS receiver
80*abb0f93cSkardel
81*abb0f93cSkardelAddresses:
82*abb0f93cSkardel  Meinberg Funkuhren
83*abb0f93cSkardel  Auf der Landwehr 22
84*abb0f93cSkardel  31812 Bad Pyrmont
85*abb0f93cSkardel  Germany
86*abb0f93cSkardel  Tel.: 05281/20 18
87*abb0f93cSkardel  FAX:  05281/60 81 80
88*abb0f93cSkardel
89*abb0f93cSkardel  ELV Kundenservice
90*abb0f93cSkardel  Postfach 1000
91*abb0f93cSkardel  26787 Leer
92*abb0f93cSkardel  Germany
93*abb0f93cSkardel  Tel.: 0491/60 08 88
94*abb0f93cSkardel
95*abb0f93cSkardel  Walter Schmidt
96*abb0f93cSkardel  Eichwisrain 14
97*abb0f93cSkardel  8634 Hombrechtikon
98*abb0f93cSkardel  Switzerland
99*abb0f93cSkardel
100*abb0f93cSkardelIf you have problems mail to:
101*abb0f93cSkardel
102*abb0f93cSkardel	time@informatik.uni-erlangen.de
103*abb0f93cSkardel
104*abb0f93cSkardelWe'll help (conditions permitting)
105*abb0f93cSkardel
106