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