summaryrefslogtreecommitdiff
path: root/usrp2/host/apps/gen_const.cc
diff options
context:
space:
mode:
authorJosh Blum2011-10-19 16:53:11 -0700
committerJosh Blum2011-10-19 16:53:11 -0700
commit604ae82b9f31d8b5d7775810ab2fa06b7595bea0 (patch)
treefe4c7ad82dca0d92d90e37c4b68dd729d29a9d66 /usrp2/host/apps/gen_const.cc
parentd8d886d42ef9966e0578f39f180348e908965f7a (diff)
parenteb95f431badf197b249131a3119a92bd5317621b (diff)
downloadgnuradio-604ae82b9f31d8b5d7775810ab2fa06b7595bea0.tar.gz
gnuradio-604ae82b9f31d8b5d7775810ab2fa06b7595bea0.tar.bz2
gnuradio-604ae82b9f31d8b5d7775810ab2fa06b7595bea0.zip
Merge branch 'next' of http://gnuradio.org/git/gnuradio into next
Diffstat (limited to 'usrp2/host/apps/gen_const.cc')
-rw-r--r--usrp2/host/apps/gen_const.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/usrp2/host/apps/gen_const.cc b/usrp2/host/apps/gen_const.cc
deleted file mode 100644
index d2c36ebba..000000000
--- a/usrp2/host/apps/gen_const.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <stdio.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <unistd.h>
-
-int
-main(int argc, char **argv)
-{
- if (argc != 3){
- fprintf(stderr, "usage: %s i-val q-val\n", argv[0]);
- return 1;
- }
-
- int i_val = strtol(argv[1], 0, 0);
- int q_val = strtol(argv[2], 0, 0);
-
- static const int NSAMPLES = 16384;
-
- uint32_t sample[NSAMPLES];
- sample[0] = ((i_val & 0xffff) << 16) | (q_val & 0xffff);
- for (int i = 1; i < NSAMPLES; i++)
- sample[i] = sample[0];
-
- while(1){
- write(1, sample, sizeof(sample));
- }
-}