diff options
author | Ashish Chaudhari <ashish@ettus.com> | 2014-08-12 18:51:29 -0700 |
---|---|---|
committer | Ashish Chaudhari <ashish@ettus.com> | 2014-08-12 18:51:29 -0700 |
commit | 9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4 (patch) | |
tree | a0253d8aa5f41b9d64411f49ba7a1b4e679bcb3f /host/lib/usrp/common/ad9361_ctrl.hpp | |
parent | f999fe6552fa6e406dc6e6c18d041963dfa20f6e (diff) | |
download | uhd-9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4.tar.gz uhd-9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4.tar.bz2 uhd-9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4.zip |
ad9361: Converted stdint types to boost types
Diffstat (limited to 'host/lib/usrp/common/ad9361_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/common/ad9361_ctrl.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/lib/usrp/common/ad9361_ctrl.hpp b/host/lib/usrp/common/ad9361_ctrl.hpp index 3b8738c51..ed778cadb 100644 --- a/host/lib/usrp/common/ad9361_ctrl.hpp +++ b/host/lib/usrp/common/ad9361_ctrl.hpp @@ -11,7 +11,6 @@ #include <boost/shared_ptr.hpp> #include <ad9361_device.h> #include <string> -#include <stdint.h> static const double AD9361_CLOCK_RATE_MAX = 61.44e6; static const double AD9361_1_CHAN_CLOCK_RATE_MAX = AD9361_CLOCK_RATE_MAX; @@ -29,7 +28,7 @@ public: //! make a new codec control object static sptr make_spi( - ad9361_params::sptr client_settings, uhd::spi_iface::sptr spi_iface, uint32_t slave_num); + ad9361_params::sptr client_settings, uhd::spi_iface::sptr spi_iface, boost::uint32_t slave_num); //! Get a list of gain names for RX or TX static std::vector<std::string> get_gain_names(const std::string &/*which*/) |