aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps
diff options
context:
space:
mode:
authorPhilip Balister <philip@opensdr.com>2010-04-01 12:44:55 +0000
committerPhilip Balister <philip@opensdr.com>2010-04-01 12:44:55 +0000
commit3e01c94fe0c690293f13a09666deb79fcb6af58c (patch)
tree36249e288f4e044c0c1e0e53dfd69cf7975bcea5 /host/apps
parent93572731923e43bbb34a12db41170e56376ab03b (diff)
downloaduhd-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.c2
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') {