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 /host/lib | |
parent | 843886694f847bb4ddfb838ca6e43094b51edec0 (diff) | |
download | uhd-fb65f85e0f915b8587f218bde433210cc574b21f.tar.gz uhd-fb65f85e0f915b8587f218bde433210cc574b21f.tar.bz2 uhd-fb65f85e0f915b8587f218bde433210cc574b21f.zip |
uhd: whoops, spi convenience functions have 32 bit data
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/types/serial.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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( |