  | 
  
    USRP Hardware Driver and USRP Manual
    Version: 4.8.0.0
    
   UHD and USRP Manual 
   | 
           
 | 
 
 
 
 
Go to the documentation of this file.
   15 namespace uhd { 
namespace usrp { 
namespace cal {
 
   86     static std::vector<uint8_t> read_cal_data(
const std::string& key,
 
   87         const std::string& serial,
 
  107     static bool has_cal_data(
const std::string& key,
 
  108         const std::string& serial,
 
  129     static void write_cal_data(
const std::string& key,
 
  130         const std::string& serial,
 
  131         const std::vector<uint8_t>& cal_data,
 
  132         const std::string& backup_ext = 
"");
 
  143         std::function<std::vector<uint8_t>(
const std::string&, 
const std::string&)>;
 
  
 
@ USER
Provided by the user.
 
@ RC
Internal Resource Compiler (i.e., hard-coded within UHD)
 
@ FLASH
Stored on device flash memory, e.g. EEPROM.
 
#define UHD_API
Definition: config.h:87
 
source
Identify the source of calibration data, i.e., where was it stored.
Definition: database.hpp:22
 
std::function< std::vector< uint8_t >(const std::string &, const std::string &)> get_data_fn_type
Function type to return serialized cal data key and serial.
Definition: database.hpp:143
 
@ FILESYSTEM
Stored on the local filesystem.
 
Definition: build_info.hpp:12
 
Definition: database.hpp:66
 
@ NONE
No calibration data available.
 
std::function< bool(const std::string &, const std::string &)> has_data_fn_type
Function type to look up if there is cal data given a key and serial.
Definition: database.hpp:135