diff options
author | Philip Balister <philip@opensdr.com> | 2010-04-01 12:44:55 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-04-01 12:44:55 +0000 |
commit | 3e01c94fe0c690293f13a09666deb79fcb6af58c (patch) | |
tree | 36249e288f4e044c0c1e0e53dfd69cf7975bcea5 /host/apps | |
parent | 93572731923e43bbb34a12db41170e56376ab03b (diff) | |
download | uhd-3e01c94fe0c690293f13a09666deb79fcb6af58c.tar.gz uhd-3e01c94fe0c690293f13a09666deb79fcb6af58c.tar.bz2 uhd-3e01c94fe0c690293f13a09666deb79fcb6af58c.zip |
Spi word length is in bits, not bytes.
Diffstat (limited to 'host/apps')
-rw-r--r-- | host/apps/omap_debug/usrp-e-spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/apps/omap_debug/usrp-e-spi.c b/host/apps/omap_debug/usrp-e-spi.c index 1af47b172..f7131bbe3 100644 --- a/host/apps/omap_debug/usrp-e-spi.c +++ b/host/apps/omap_debug/usrp-e-spi.c @@ -26,7 +26,7 @@ int main(int argc, char *argv[]) spi_dat.slave = slave; spi_dat.data = data; - spi_dat.length = 2; + spi_dat.length = 32; spi_dat.flags = 0; if (*argv[1] == 'r') { |