diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-03-05 12:08:56 -0800 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-02 11:55:17 -0500 |
commit | a1f96194696494b756d691ff54e384a1ce478fc2 (patch) | |
tree | 1a1d480b5e35a239c5599ebcda1984e29bd0dd55 /host/lib/include/uhdlib/utils/paths.hpp | |
parent | 3fe5ccf700a0c6f27dca9511386460194dcc593c (diff) | |
download | uhd-a1f96194696494b756d691ff54e384a1ce478fc2.tar.gz uhd-a1f96194696494b756d691ff54e384a1ce478fc2.tar.bz2 uhd-a1f96194696494b756d691ff54e384a1ce478fc2.zip |
uhd: cal: Use usrp::cal::database instead of CSV files
Now that we have cal::iq_cal and cal::database, there's no need to
manually wrangle CSV files for calibration data. This commit replaces
all CSV operations with cal::database calls and uses cal::iq_cal as
a container.
CSV files can still be read, but are considered deprecated.
Diffstat (limited to 'host/lib/include/uhdlib/utils/paths.hpp')
-rw-r--r-- | host/lib/include/uhdlib/utils/paths.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/utils/paths.hpp b/host/lib/include/uhdlib/utils/paths.hpp index 7f0dc4046..7caac8a7d 100644 --- a/host/lib/include/uhdlib/utils/paths.hpp +++ b/host/lib/include/uhdlib/utils/paths.hpp @@ -18,6 +18,8 @@ namespace uhd { */ std::string path_expandvars(const std::string& path); +std::string get_appdata_path(void); + } /* namespace uhd */ #endif /* INCLUDED_UHDLIB_UTILS_PATHS_HPP */ |