aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1/usrp1_iface.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/usrp1/usrp1_iface.hpp')
-rw-r--r--host/lib/usrp/usrp1/usrp1_iface.hpp29
1 files changed, 16 insertions, 13 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_iface.hpp b/host/lib/usrp/usrp1/usrp1_iface.hpp
index b01b2d088..efcc50b58 100644
--- a/host/lib/usrp/usrp1/usrp1_iface.hpp
+++ b/host/lib/usrp/usrp1/usrp1_iface.hpp
@@ -8,23 +8,23 @@
#ifndef INCLUDED_USRP1_IFACE_HPP
#define INCLUDED_USRP1_IFACE_HPP
-#include <uhdlib/usrp/common/fx2_ctrl.hpp>
-#include <uhd/types/wb_iface.hpp>
#include <uhd/types/serial.hpp>
-#include <memory>
+#include <uhd/types/wb_iface.hpp>
#include <uhd/utils/noncopyable.hpp>
+#include <uhdlib/usrp/common/fx2_ctrl.hpp>
+#include <memory>
-#define SPI_ENABLE_FPGA 0x01
+#define SPI_ENABLE_FPGA 0x01
#define SPI_FMT_HDR_MASK (3 << 5)
-#define SPI_FMT_HDR_0 (0 << 5)
-#define SPI_FMT_HDR_1 (1 << 5)
-#define SPI_FMT_HDR_2 (2 << 5)
-#define SPI_FMT_LSB (1 << 7)
-#define SPI_FMT_MSB (0 << 7)
+#define SPI_FMT_HDR_0 (0 << 5)
+#define SPI_FMT_HDR_1 (1 << 5)
+#define SPI_FMT_HDR_2 (2 << 5)
+#define SPI_FMT_LSB (1 << 7)
+#define SPI_FMT_MSB (0 << 7)
#define SPI_FMT_xSB_MASK (1 << 7)
-#define VRQ_SPI_READ 0x82
-#define VRQ_SPI_WRITE 0x09
-#define VRQ_FW_COMPAT 0x83
+#define VRQ_SPI_READ 0x82
+#define VRQ_SPI_WRITE 0x09
+#define VRQ_FW_COMPAT 0x83
/*!
@@ -32,7 +32,10 @@
* Provides a set of functions to implementation layer.
* Including spi, peek, poke, control...
*/
-class usrp1_iface : public uhd::wb_iface, public uhd::i2c_iface, public uhd::spi_iface, uhd::noncopyable
+class usrp1_iface : public uhd::wb_iface,
+ public uhd::i2c_iface,
+ public uhd::spi_iface,
+ uhd::noncopyable
{
public:
typedef std::shared_ptr<usrp1_iface> sptr;