aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/common/ad9361_driver/ad9361_client.h
diff options
context:
space:
mode:
authorAshish Chaudhari <ashish@ettus.com>2014-08-12 18:51:29 -0700
committerAshish Chaudhari <ashish@ettus.com>2014-08-12 18:51:29 -0700
commit9ad16ae70eb3a0448b297817a21c3cd66f5fbfa4 (patch)
treea0253d8aa5f41b9d64411f49ba7a1b4e679bcb3f /host/lib/usrp/common/ad9361_driver/ad9361_client.h
parentf999fe6552fa6e406dc6e6c18d041963dfa20f6e (diff)
downloaduhd-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_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;
};