diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-03-04 15:23:28 -0800 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-03-26 07:46:03 -0500 |
commit | 8055879242b43500c49e8ea8d4035687d13f9fae (patch) | |
tree | 24605e64cfd02f55959d166a23836f78ab66a644 /host/include | |
parent | 39d6007ca7e3b27e8230db6690faa7469ca62cb2 (diff) | |
download | uhd-8055879242b43500c49e8ea8d4035687d13f9fae.tar.gz uhd-8055879242b43500c49e8ea8d4035687d13f9fae.tar.bz2 uhd-8055879242b43500c49e8ea8d4035687d13f9fae.zip |
uhd: paths: Add get_cal_data_path() API call
This points to the location where cal data is stored.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/utils/paths.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/include/uhd/utils/paths.hpp b/host/include/uhd/utils/paths.hpp index e5b451542..f55f584a5 100644 --- a/host/include/uhd/utils/paths.hpp +++ b/host/include/uhd/utils/paths.hpp @@ -29,6 +29,9 @@ UHD_API std::string get_lib_path(void); //! Get a string representing the system's pkg directory UHD_API std::string get_pkg_path(void); +//! Get a string representing the location of the calibration database +UHD_API std::string get_cal_data_path(void); + //! Get UHD library paths UHD_API std::vector<fs::path> get_module_paths(void); |