Now that we are registering a clock even for the PPS master when it supports that (i.e. when it is a PHC), introduce a new API to retrieve its clock in order to add timestamps to it. The PHC master can be synchronized to the extts events of a PHC slave, when in automatic mode. Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
22 lines
532 B
C
22 lines
532 B
C
/**
|
|
* @file ts2phc_master_private.h
|
|
* @note Copyright (C) 2019 Richard Cochran <richardcochran@gmail.com>
|
|
* @note SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#ifndef HAVE_TS2PHC_MASTER_PRIVATE_H
|
|
#define HAVE_TS2PHC_MASTER_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#include "contain.h"
|
|
#include "ts2phc_master.h"
|
|
|
|
struct ts2phc_master {
|
|
void (*destroy)(struct ts2phc_master *ts2phc_master);
|
|
int (*getppstime)(struct ts2phc_master *master, struct timespec *ts);
|
|
struct clock *(*get_clock)(struct ts2phc_master *m);
|
|
};
|
|
|
|
#endif
|