aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/common/ad9361_driver/ad9361_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/common/ad9361_driver/ad9361_client.h')
-rw-r--r--host/lib/usrp/common/ad9361_driver/ad9361_client.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/host/lib/usrp/common/ad9361_driver/ad9361_client.h b/host/lib/usrp/common/ad9361_driver/ad9361_client.h
index fa501b615..5e848d4c0 100644
--- a/host/lib/usrp/common/ad9361_driver/ad9361_client.h
+++ b/host/lib/usrp/common/ad9361_driver/ad9361_client.h
@@ -5,7 +5,6 @@
#ifndef INCLUDED_AD9361_CLIENT_H
#define INCLUDED_AD9361_CLIENT_H
-#include <stdint.h>
#include <boost/shared_ptr.hpp>
namespace uhd { namespace usrp {
@@ -39,10 +38,10 @@ typedef enum {
* Interface timing
*/
typedef struct {
- uint8_t rx_clk_delay;
- uint8_t rx_data_delay;
- uint8_t tx_clk_delay;
- uint8_t tx_data_delay;
+ boost::uint8_t rx_clk_delay;
+ boost::uint8_t rx_data_delay;
+ boost::uint8_t tx_clk_delay;
+ boost::uint8_t tx_data_delay;
} digital_interface_delays_t;
class ad9361_params {
@@ -64,8 +63,8 @@ public:
virtual ~ad9361_io() {}
- virtual uint8_t peek8(uint32_t reg) = 0;
- virtual void poke8(uint32_t reg, uint8_t val) = 0;
+ virtual boost::uint8_t peek8(boost::uint32_t reg) = 0;
+ virtual void poke8(boost::uint32_t reg, boost::uint8_t val) = 0;
};