1 /* 2 * Copyright (c) 2017 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef _XO_IF_H 7 #define _XO_IF_H 8 9 #ifdef __cplusplus 10 extern "C"{ 11 #endif 12 13 long double phy_time_from_dev(long double dev_t); 14 long double dev_time_from_phy(long double phy_t); 15 void xo_model_set_toffset(double t_off); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif 22