uhd/host/include/uhd.h
Nicholas Corgan 918e4ff20c C: Add uhd_get_abi_string, uhd_get_version_string
Clients that include the UHD C headers have access to
the version and ABI #defines, but this is not available
to clients that dynamically load the library. This
commit adds publicly exported functions to provide this
information.
2019-05-02 08:36:44 -07:00

34 lines
845 B
C

/*
* Copyright 2015 Ettus Research LLC
* Copyright 2018 Ettus Research, a National Instruments Company
* Copyright 2019 Ettus Research, a National Instruments Brand
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef INCLUDED_UHD_H
#define INCLUDED_UHD_H
#include <uhd/config.h>
#include <uhd/error.h>
#include <uhd/version.h>
#include <uhd/types/metadata.h>
#include <uhd/types/ranges.h>
#include <uhd/types/sensors.h>
#include <uhd/types/string_vector.h>
#include <uhd/types/tune_request.h>
#include <uhd/types/tune_result.h>
#include <uhd/types/usrp_info.h>
#include <uhd/usrp/dboard_eeprom.h>
#include <uhd/usrp/mboard_eeprom.h>
#include <uhd/usrp/subdev_spec.h>
#include <uhd/usrp/usrp.h>
#include <uhd/usrp_clock/usrp_clock.h>
#include <uhd/utils/thread_priority.h>
#include <uhd/utils/log.h>
#endif /* INCLUDED_UHD_H */