/usr/include/SoapySDR/Time.h is in libsoapysdr-dev 0.6.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ///
/// \file SoapySDR/Time.h
///
/// Utility functions to convert time and ticks.
///
/// \copyright
/// Copyright (c) 2015-2015 Josh Blum
/// SPDX-License-Identifier: BSL-1.0
///
#pragma once
#include <SoapySDR/Config.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* Convert a tick count into a time in nanoseconds using the tick rate.
* \param ticks a integer tick count
* \param rate the ticks per second
* \return the time in nanoseconds
*/
SOAPY_SDR_API long long SoapySDR_ticksToTimeNs(const long long ticks, const double rate);
/*!
* Convert a time in nanoseconds into a tick count using the tick rate.
* \param timeNs time in nanoseconds
* \param rate the ticks per second
* \return the integer tick count
*/
SOAPY_SDR_API long long SoapySDR_timeNsToTicks(const long long timeNs, const double rate);
#ifdef __cplusplus
}
#endif
|