From 9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4 Mon Sep 17 00:00:00 2001 From: Ashish Chaudhari Date: Tue, 12 Aug 2014 18:51:29 -0700 Subject: ad9361: Converted stdint types to boost types --- host/lib/usrp/common/ad9361_driver/ad9361_client.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'host/lib/usrp/common/ad9361_driver/ad9361_client.h') 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 #include 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; }; -- cgit v1.2.3