diff options
| author | Josh Blum <josh@joshknows.com> | 2011-03-17 17:41:12 -0700 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2011-03-17 17:41:12 -0700 | 
| commit | fb65f85e0f915b8587f218bde433210cc574b21f (patch) | |
| tree | d2697143dc158bae126675e6e66d8c6104e39663 | |
| parent | 843886694f847bb4ddfb838ca6e43094b51edec0 (diff) | |
| download | uhd-fb65f85e0f915b8587f218bde433210cc574b21f.tar.gz uhd-fb65f85e0f915b8587f218bde433210cc574b21f.tar.bz2 uhd-fb65f85e0f915b8587f218bde433210cc574b21f.zip | |
uhd: whoops, spi convenience functions have 32 bit data
| -rw-r--r-- | host/include/uhd/types/serial.hpp | 4 | ||||
| -rw-r--r-- | host/lib/types/serial.cpp | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/host/include/uhd/types/serial.hpp b/host/include/uhd/types/serial.hpp index 5c6de162b..ef6125933 100644 --- a/host/include/uhd/types/serial.hpp +++ b/host/include/uhd/types/serial.hpp @@ -151,7 +151,7 @@ namespace uhd{          virtual boost::uint32_t read_spi(              int which_slave,              const spi_config_t &config, -            boost::uint16_t data, +            boost::uint32_t data,              size_t num_bits          ); @@ -165,7 +165,7 @@ namespace uhd{          virtual void write_spi(              int which_slave,              const spi_config_t &config, -            boost::uint16_t data, +            boost::uint32_t data,              size_t num_bits          );      }; diff --git a/host/lib/types/serial.cpp b/host/lib/types/serial.cpp index aa1133e72..9e9d32954 100644 --- a/host/lib/types/serial.cpp +++ b/host/lib/types/serial.cpp @@ -58,7 +58,7 @@ byte_vector_t i2c_iface::read_eeprom(  boost::uint32_t spi_iface::read_spi(      int which_slave,      const spi_config_t &config, -    boost::uint16_t data, +    boost::uint32_t data,      size_t num_bits  ){      return transact_spi( @@ -69,7 +69,7 @@ boost::uint32_t spi_iface::read_spi(  void spi_iface::write_spi(      int which_slave,      const spi_config_t &config, -    boost::uint16_t data, +    boost::uint32_t data,      size_t num_bits  ){      transact_spi( | 
