diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-06-20 20:45:59 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-06-20 20:45:59 +0200 |
commit | b20ac760403c31351d6f820cb5f2cdc54b042d2e (patch) | |
tree | 6574905111740deff55074d29954c4d8ae085bc0 | |
parent | c374ddd7dad3293a9452b5523f847878bfbb8071 (diff) | |
download | uhd-b20ac760403c31351d6f820cb5f2cdc54b042d2e.tar.gz uhd-b20ac760403c31351d6f820cb5f2cdc54b042d2e.tar.bz2 uhd-b20ac760403c31351d6f820cb5f2cdc54b042d2e.zip |
Add missing gps_ctrl function for E3xx buildslea-m8f-003_012_000_000
-rw-r--r-- | host/lib/usrp/gpsd_iface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/usrp/gpsd_iface.cpp b/host/lib/usrp/gpsd_iface.cpp index 6b47b6be5..35bbb9e67 100644 --- a/host/lib/usrp/gpsd_iface.cpp +++ b/host/lib/usrp/gpsd_iface.cpp @@ -104,6 +104,10 @@ public: bool gps_detected(void) { return _detected; }; + int gps_refclock_frequency(void) { + throw runtime_error("gps_refclock_frequency not implemented for gpsd_iface"); + }; + std::vector<std::string> get_sensors(void) { return _sensors; }; private: // member functions |