Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / host / apps / tx_samples.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007,2008 Free Software Foundation, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22 #include <usrp2/usrp2.h>
23 #include <usrp2/strtod_si.h>
24 #include <iostream>
25 #include <cstdio>
26 #include <complex>
27 #include <getopt.h>
28 #include <gruel/realtime.h>
29 #include <signal.h>
30 #include <string.h>
31 #include <stdexcept>
32
33
34 typedef std::complex<float> fcomplex;
35
36 static volatile bool signaled = false;
37
38 static void 
39 sig_handler(int sig)
40 {
41   signaled = true;
42 }
43
44 static void
45 install_sig_handler(int signum,
46                     void (*new_handler)(int))
47 {
48   struct sigaction new_action;
49   memset (&new_action, 0, sizeof (new_action));
50
51   new_action.sa_handler = new_handler;
52   sigemptyset (&new_action.sa_mask);
53   new_action.sa_flags = 0;
54
55   if (sigaction (signum, &new_action, 0) < 0){
56     perror ("sigaction (install new)");
57     throw std::runtime_error ("sigaction");
58   }
59 }
60
61
62 static const char *
63 prettify_progname(const char *progname)         // that's probably almost a word ;)
64 {
65   const char *p = strrchr(progname, '/');       // drop leading directory path
66   if (p)
67     p++;
68
69   if (strncmp(p, "lt-", 3) == 0)                // drop lt- libtool prefix
70     p += 3;
71
72   return p;
73 }
74
75 static void
76 usage(const char *progname)
77 {
78   fprintf(stderr, "Usage: %s [options]\n\n", prettify_progname(progname));
79   fprintf(stderr, "Options:\n");
80   fprintf(stderr, "  -h                   show this message and exit\n");
81   fprintf(stderr, "  -e ETH_INTERFACE     specify ethernet interface [default=eth0]\n");
82   fprintf(stderr, "  -m MAC_ADDR          mac address of USRP2 HH:HH [default=first one found]\n");
83   fprintf(stderr, "  -I INPUT_FILE        set input filename [default=stdin]\n");
84   fprintf(stderr, "  -r                   repeat.  When EOF of input file is reached, seek to beginning\n");
85   fprintf(stderr, "  -f FREQ              set frequency to FREQ [default=0]\n");
86   fprintf(stderr, "  -i INTERP            set interpolation rate to INTERP [default=32]\n");
87   fprintf(stderr, "  -g gain              set tx gain\n");
88   fprintf(stderr, "  -S SCALE             fpga scaling factor for I & Q [default=256]\n");
89 }
90
91 #define GAIN_NOT_SET (-1000)
92 #define MAX_SAMPLES (371)
93
94 int
95 main(int argc, char **argv)
96 {
97   const char *interface = "eth0";
98   const char *input_filename = 0;
99   bool repeat = false;
100   const char *mac_addr_str = "";
101   double freq = 0;
102   int32_t interp = 32;
103   int32_t samples_per_frame = MAX_SAMPLES;
104   int32_t scale = -1;
105   double gain = GAIN_NOT_SET;
106   
107   int    ch;
108   double tmp;
109
110
111   while ((ch = getopt(argc, argv, "he:m:I:rf:i:S:F:g:")) != EOF){
112     switch (ch){
113
114     case 'e':
115       interface = optarg;
116       break;
117       
118     case 'm':
119       mac_addr_str = optarg;
120 #if 0
121       if (!usrp2_basic::parse_mac_addr(optarg, &mac_addr)){
122         std::cerr << "invalid mac addr: " << optarg << std::endl;
123         usage(argv[0]);
124         return 1;
125       }
126 #endif
127       break;
128
129     case 'I':
130       input_filename = optarg;
131       break;
132       
133     case 'r':
134       repeat = true;
135       break;
136       
137     case 'f':
138       if (!strtod_si(optarg, &freq)){
139         std::cerr << "invalid number: " << optarg << std::endl;
140         usage(argv[0]);
141         return 1;
142       }
143       break;
144
145     case 'F':
146       samples_per_frame = strtol(optarg, 0, 0);
147       break;
148
149     case 'i':
150       interp = strtol(optarg, 0, 0);
151       break;
152
153     case 'S':
154       if (!strtod_si(optarg, &tmp)){
155         std::cerr << "invalid number: " << optarg << std::endl;
156         usage(argv[0]);
157         return 1;
158       }
159       scale = static_cast<int32_t>(tmp);
160       break;
161       
162     case 'h':
163     default:
164       usage(argv[0]);
165       return 1;
166     }
167   }
168
169   
170   if (argc - optind != 0){
171     usage(argv[0]);
172     return 1;
173   }
174   
175   if (samples_per_frame < 9 || samples_per_frame > MAX_SAMPLES){
176     std::cerr << prettify_progname(argv[0])
177               << ": samples_per_frame is out of range.  "
178               << "Must be in [9, " << MAX_SAMPLES << "].\n";
179     usage(argv[0]);
180     return 1;
181   }
182
183
184   FILE *fp = 0;
185   if (input_filename == 0)
186     fp = stdin;
187   else {
188     fp = fopen(input_filename, "rb");
189     if (fp == 0){
190       perror(input_filename);
191       return 1;
192     }
193   }
194
195   install_sig_handler(SIGINT, sig_handler);
196
197
198   gruel::rt_status_t rt = gruel::enable_realtime_scheduling();
199   if (rt != gruel::RT_OK)
200     std::cerr << "Failed to enable realtime scheduling" << std::endl;
201
202
203   usrp2::usrp2::sptr u2 = usrp2::usrp2::make(interface, mac_addr_str);
204   
205   if (gain != GAIN_NOT_SET){
206     if (!u2->set_tx_gain(gain)){
207       std::cerr << "set_tx_gain failed\n";
208       return 1;
209     }
210   }
211
212   usrp2::tune_result tr;
213   if (!u2->set_tx_center_freq(freq, &tr)){
214     fprintf(stderr, "set_tx_center_freq(%g) failed\n", freq);
215     return 1;
216   }
217
218   printf("Daughterboard configuration:\n");
219   printf("  baseband_freq=%f\n", tr.baseband_freq);
220   printf("       duc_freq=%f\n", tr.dxc_freq);
221   printf("  residual_freq=%f\n", tr.residual_freq);
222   printf("       inverted=%s\n\n", tr.spectrum_inverted ? "yes" : "no");
223
224   if (!u2->set_tx_interp(interp)){
225     fprintf(stderr, "set_tx_interp(%d) failed\n", interp);
226     return 1;
227   }
228
229   if (scale != -1){
230     if (!u2->set_tx_scale_iq(scale, scale)){
231       std::cerr << "set_tx_scale_iq failed\n";
232       return 1;
233     }
234   }
235
236   usrp2::tx_metadata    md;
237   md.timestamp = -1;
238   md.start_of_burst = 1;
239   md.send_now = 1;
240
241   while (!signaled){
242
243     std::complex<int16_t> samples[MAX_SAMPLES];
244
245     int r = fread(samples, sizeof(uint32_t), samples_per_frame, fp);
246
247     // fprintf(stderr, "fread -> %d\n", r);
248     
249     if (r == 0){
250       if (!repeat)
251         break;
252       if (fseek(fp, 0, SEEK_SET) == -1)
253         break;
254     }
255
256     // FIXME if r < 9, pad to 9 for minimum packet size constraint
257
258     if (!u2->tx_16sc(0, samples, r, &md)){
259       fprintf(stderr, "tx_complex_int16 failed\n");
260       break;
261     }
262   }
263
264   return 0;
265 }