1650 lines
38 KiB
C
1650 lines
38 KiB
C
/**
|
|
* @file phc2sys.c
|
|
* @brief Utility program to synchronize two clocks via a PPS.
|
|
* @note Copyright (C) 2012 Richard Cochran <richardcochran@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <float.h>
|
|
#include <inttypes.h>
|
|
#include <limits.h>
|
|
#include <net/if.h>
|
|
#include <poll.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include <linux/pps.h>
|
|
#include <linux/ptp_clock.h>
|
|
|
|
#include "clockadj.h"
|
|
#include "clockcheck.h"
|
|
#include "ds.h"
|
|
#include "fsm.h"
|
|
#include "missing.h"
|
|
#include "notification.h"
|
|
#include "ntpshm.h"
|
|
#include "phc.h"
|
|
#include "pi.h"
|
|
#include "pmc_common.h"
|
|
#include "print.h"
|
|
#include "servo.h"
|
|
#include "sk.h"
|
|
#include "stats.h"
|
|
|