summaryrefslogtreecommitdiff
path: root/usrp/host/apps/dump_shorts
diff options
context:
space:
mode:
authorjcorgan2006-08-03 04:51:51 +0000
committerjcorgan2006-08-03 04:51:51 +0000
commit5d69a524f81f234b3fbc41d49ba18d6f6886baba (patch)
treeb71312bf7f1e8d10fef0f3ac6f28784065e73e72 /usrp/host/apps/dump_shorts
downloadgnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.tar.gz
gnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.tar.bz2
gnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.zip
Houston, we have a trunk.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3122 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/apps/dump_shorts')
-rwxr-xr-xusrp/host/apps/dump_shorts23
1 files changed, 23 insertions, 0 deletions
diff --git a/usrp/host/apps/dump_shorts b/usrp/host/apps/dump_shorts
new file mode 100755
index 000000000..6104ea062
--- /dev/null
+++ b/usrp/host/apps/dump_shorts
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# -*- Python -*-
+
+import sys, errno
+
+counter = 0
+
+try:
+ while 1:
+ x = sys.stdin.read (2)
+ if not x:
+ break
+
+ v = (ord(x[1]) << 8) | ord(x[0])
+ sys.stdout.write ("0x%08x %6d 0x%04x\n" % (counter, v, v))
+ counter += 1
+except IOError, e:
+ if e.errno == errno.EPIPE:
+ sys.exit (0)
+
+
+
+