aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps/omap_debug/usrp-e-led.c
diff options
context:
space:
mode:
authorPhilip Balister <philip@opensdr.com>2010-04-02 19:49:45 +0000
committerPhilip Balister <philip@opensdr.com>2010-04-02 19:49:45 +0000
commitd8052db8e5614935241a4824a3f9711bfe34507d (patch)
treee70c2fa0d9d273b29bc353daa6d144a10bab1536 /host/apps/omap_debug/usrp-e-led.c
parent80b2b928df6e3c1caf68dee199593a0af1cb91ae (diff)
downloaduhd-d8052db8e5614935241a4824a3f9711bfe34507d.tar.gz
uhd-d8052db8e5614935241a4824a3f9711bfe34507d.tar.bz2
uhd-d8052db8e5614935241a4824a3f9711bfe34507d.zip
Convert to use register include file. Fix peek/poke16 program.
Add program to cycle through LED's and test buttons. Only pushbuttons tested at the moment.
Diffstat (limited to 'host/apps/omap_debug/usrp-e-led.c')
-rw-r--r--host/apps/omap_debug/usrp-e-led.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/host/apps/omap_debug/usrp-e-led.c b/host/apps/omap_debug/usrp-e-led.c
new file mode 100644
index 000000000..159251c8a
--- /dev/null
+++ b/host/apps/omap_debug/usrp-e-led.c
@@ -0,0 +1,35 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <fcntl.h>
+#include <string.h>
+#include <sys/ioctl.h>
+#include <unistd.h>
+
+#include "usrp_e.h"
+#include "usrp_e_regs.hpp"
+
+// Usage: usrp_e_uart <string>
+
+
+int main(int argc, char *argv[])
+{
+ int fp, i, ret;
+ struct usrp_e_ctl16 d;
+
+ fp = open("/dev/usrp_e0", O_RDWR);
+ printf("fp = %d\n", fp);
+
+ d.offset = 4;
+ d.count = 1;
+
+ while (1) {
+ for (i=0; i<8; i++) {
+ d.buf[0] = i;
+ ret = ioctl(fp, USRP_E_WRITE_CTL16, &d);
+ sleep(1);
+ }
+ }
+
+ return 0;
+}