1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
/*
* Copyright 2017 by Lukas Lao Beyer <lukas@electronics.kitchen>
*
* This file is part of libfreesrp.
*
* libfreesrp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* libfreesrp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with libfreesrp. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <fstream>
#include <mutex>
#include <condition_variable>
#include <chrono>
#include <boost/lexical_cast.hpp>
#include <freesrp.hpp>
#include "optionparser.hpp"
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <iomanip>
using namespace std;
using namespace FreeSRP;
enum optionIndex {NONE, HELP, OUTFILE, INFILE, FPGA, TX, LOOPBACK, CENTER_FREQ, BANDWIDTH, GAIN};
const option::Descriptor usage[] = {
{NONE, 0, "", "", option::Arg::None, "usage: freesrp-io [options] -ofilename\n"
" input/output format is complex signed 16-bit\noptions:"},
{HELP, 0, "h", "help", option::Arg::None, " -h, --help Print usage and exit"},
{OUTFILE, 0, "o", "out", option::Arg::Optional, " -o[filename], --out=[filename] Output to specified file ('-o-' for stdout)"},
{INFILE, 0, "i", "in", option::Arg::Optional, " -i[filename], --in=[filename] Read from specified file ('-i-' for stdin)"},
{FPGA, 0, "", "fpga", option::Arg::Optional, " --fpga=/path/to/bitstream.bin Load the FPGA with the specified bitstream"},
{TX, 0, "t", "tx", option::Arg::Optional, " -t, --tx Enable the transmitter"},
{LOOPBACK, 0, "l", "loopback", option::Arg::Optional, " -l, --loopback Put transceiver in loopback mode"},
{CENTER_FREQ, 0, "f", "freq", option::Arg::Optional, " -f[freq], --freq=[freq] Center frequency in hertz (70e6 to 6e9)"},
{BANDWIDTH, 0, "b", "bandwidth", option::Arg::Optional, " -b[bw], --bandwidth=[bw] Bandwidth in hertz (1e6 to 61.44e6)"},
{GAIN, 0, "g", "gain", option::Arg::Optional, " -g[gain], --gain=[gain] Gain in decibels (0 to 74)"},
{NONE, 0, "", "", option::Arg::None, "\nexample: freesrp-io -f2.42e9 -b4e6 -g30 -o-"},
{0,0,0,0,0,0}
};
unique_ptr<ostream> _out = nullptr;
unique_ptr<istream> _in = nullptr;
mutex _interrupt_mut;
condition_variable _interrupt;
void sigint_callback(int s)
{
_interrupt.notify_all();
}
void rx_callback(const vector<sample> &samples)
{
static vector<int16_t> buf;
// For rate counter
static long rate_probe_counter = 0; // Samples processed since last comparison period
static long rate_probe_counter_comp = 10000000; // Calculate rate every this many processed samples
static time_t current_ms = 0, previous_ms = 0;
buf.resize(samples.size() * 2);
int buf_index = 0;
for(const sample &s : samples)
{
// Convert from 12-bit to full scale 16-bit and copy to output buffer
buf[buf_index++] = (int16_t) (s.i * 16);
buf[buf_index++] = (int16_t) (s.q * 16);
}
_out->write((char *) buf.data(), sizeof(int16_t) * 2 * samples.size());
// Calculate & report sample rate
rate_probe_counter += samples.size();
if(rate_probe_counter >= rate_probe_counter_comp)
{
if(previous_ms == 0)
{
previous_ms = chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now().time_since_epoch()).count();
}
else
{
current_ms = chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now().time_since_epoch()).count();;
time_t elapsed_ms = current_ms - previous_ms;
previous_ms = current_ms;
cerr << "RX: " << fixed << setprecision(4) << ((double) rate_probe_counter) / ((double) elapsed_ms) / 1000.0 << "MSps" << endl;
}
rate_probe_counter = 0;
}
}
void tx_callback(vector<sample> &samples)
{
static vector<int16_t> buf;
// For rate counter
static long rate_probe_counter = 0; // Samples processed since last comparison period
static long rate_probe_counter_comp = 10000000; // Calculate rate every this many processed samples
static time_t current_ms = 0, previous_ms = 0;
buf.resize(samples.size() * 2);
_in->read((char *) buf.data(), sizeof(int16_t) * 2 * samples.size());
int buf_index = 0;
for(sample &s : samples)
{
// Convert from full scale 16-bit to 12 bit and copy to output buffer
s.i = (int16_t) (buf[buf_index++] / 16);
s.q = (int16_t) (buf[buf_index++] / 16);
}
// Calculate & report sample rate
rate_probe_counter += samples.size();
if(rate_probe_counter >= rate_probe_counter_comp)
{
if(previous_ms == 0)
{
previous_ms = chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now().time_since_epoch()).count();
}
else
{
current_ms = chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now().time_since_epoch()).count();;
time_t elapsed_ms = current_ms - previous_ms;
previous_ms = current_ms;
cerr << "TX: " << fixed << setprecision(4) << ((double) rate_probe_counter) / ((double) elapsed_ms) / 1000.0 << "MSps" << endl;
}
rate_probe_counter = 0;
}
}
void start(FreeSRP::FreeSRP &srp)
{
// Enable datapath and start receiver
FreeSRP::response res = srp.send_cmd({SET_DATAPATH_EN, 1});
if(res.error != FreeSRP::CMD_OK)
{
throw runtime_error("Error enabling FreeSRP datapath!");
}
srp.start_rx(rx_callback);
}
void stop(FreeSRP::FreeSRP &srp)
{
srp.stop_rx();
FreeSRP::response res = srp.send_cmd({SET_DATAPATH_EN, 0});
if(res.error != FreeSRP::CMD_OK)
{
throw runtime_error("Error disabling FreeSRP datapath!");
}
}
int main(int argc, char *argv[])
{
// Parse options
argc-=(argc>0); argv+=(argc>0); // Skip program name (argv[0]), if present
option::Stats stats(usage, argc, argv);
option::Option options[stats.options_max], buffer[stats.buffer_max];
option::Parser parse(usage, argc, argv, options, buffer);
if(parse.error())
{
return 1;
}
if(options[HELP])
{
option::printUsage(cout, usage);
return 0;
}
streambuf *of_buf;
ofstream of;
if(options[OUTFILE] && options[OUTFILE].arg)
{
string outfile = options[OUTFILE].arg;
if(outfile == "-")
{
of_buf = cout.rdbuf();
}
else
{
of.open(outfile, ios::binary | ios::out);
of_buf = of.rdbuf();
}
_out.reset(new ostream(of_buf));
}
else
{
cerr << "Error: You must specify an output file using the '-o' option. See 'freesrp-io --help'." << endl;
return 1;
}
bool loopback = false, transmit = false;
streambuf *if_buf;
ifstream ifs;
if((!options[TX] != !options[LOOPBACK]) && options[INFILE] && options[INFILE].arg)
{
if(options[TX])
{
transmit = true;
}
if(options[LOOPBACK])
{
loopback = true;
}
string infile = options[INFILE].arg;
if(infile == "-")
{
if_buf = cin.rdbuf();
}
else
{
ifs.open(infile, ios::binary | ios::in);
if_buf = ifs.rdbuf();
}
_in.reset(new istream(if_buf));
}
else if(options[LOOPBACK] || options[TX] || options[INFILE])
{
cerr << "Error: You must both enable the transmitter or the loopback mode and specify an input file." << endl;
return 1;
}
double center_freq = 0, bandwidth = 0, gain = 0;
if(options[CENTER_FREQ] && options[BANDWIDTH] && options[GAIN] ||
options[CENTER_FREQ].arg && !options[BANDWIDTH].arg && options[GAIN].arg)
{
try
{
center_freq = boost::lexical_cast<double>(options[CENTER_FREQ].arg);
bandwidth = boost::lexical_cast<double>(options[BANDWIDTH].arg);
gain = boost::lexical_cast<double>(options[GAIN].arg);
}
catch(boost::bad_lexical_cast)
{
cerr << "Error: Please specify valid numerical values" << endl;
return 1;
}
}
else
{
cerr << "Error: Please specify center frequency, bandwidth and gain. See 'freesrp-io --help'." << endl;
return 1;
}
string fpgaconfig_filename = "";
if(options[FPGA])
{
if(options[FPGA].arg)
{
fpgaconfig_filename = options[FPGA].arg;
}
else
{
cerr << "Error: --fpga option expects a filename! See 'freesrp-io --help'." << endl;
return 1;
}
}
// Connect to FreeSRP
try
{
FreeSRP::FreeSRP srp;
cerr << "Found FreeSRP" << endl;
// Configure FPGA if bitstream specified
if(fpgaconfig_filename.length() > 0)
{
cerr << "Loading FPGA with '" << fpgaconfig_filename << "'" << endl;
switch(srp.load_fpga(fpgaconfig_filename))
{
case FPGA_CONFIG_DONE:
cerr << "FPGA configured successfully" << endl;
break;
case FPGA_CONFIG_ERROR:
cerr << "Error configuring FPGA!" << endl;
break;
case FPGA_CONFIG_SKIPPED:
cerr << "FPGA already configured. To re-configure, please restart the FreeSRP." << endl;
break;
}
}
// Check FPGA status
if(!srp.fpga_loaded())
{
cerr << "FPGA not configured. Please configure the FPGA first: " << endl;
cerr << "Example: freesrp-io --fpga=/path/to/bitstream.bin" << endl;
return 1;
}
cerr << "Connected to FreeSRP" << endl;
cerr << "Version: " << srp.version() << endl;
// Set center frequency
response r = srp.send_cmd(srp.make_command(SET_RX_LO_FREQ, center_freq));
if(r.error != CMD_OK)
{
std::cerr << "Could not set RX LO frequency, error: " << r.error << endl;
return 1;
}
// Set bandwidth and sample rate
r = srp.send_cmd(srp.make_command(SET_RX_RF_BANDWIDTH, bandwidth));
if(r.error != CMD_OK)
{
std::cerr << "Could not set RX bandwidth, error: " << r.error << endl;
return 1;
}
r = srp.send_cmd(srp.make_command(SET_RX_SAMP_FREQ, bandwidth));
if(r.error != CMD_OK)
{
std::cerr << "Could not set RX sample frequency, error: " << r.error << endl;
return 1;
}
// Set gain
r = srp.send_cmd(srp.make_command(SET_RX_RF_GAIN, gain));
if(r.error != CMD_OK)
{
std::cerr << "Could not set RX gain, error: " << r.error << endl;
return 1;
}
if(loopback)
{
// Enable loopback
r = srp.send_cmd(srp.make_command(SET_LOOPBACK_EN, 1));
if(r.error != CMD_OK)
{
std::cerr << "Could not enable loopback mode, error: " << r.error << endl;
return 1;
}
else
{
std::cerr << "FreeSRP in loopback mode" << endl;
}
}
// Enable signal chain and start receiving samples
start(srp);
if(transmit || loopback)
{
// Enable transmit signal chain
srp.start_tx(tx_callback);
}
// Wait for Control-C
struct sigaction sigint_handler;
sigint_handler.sa_handler = sigint_callback;
sigemptyset(&sigint_handler.sa_mask);
sigint_handler.sa_flags = 0;
sigaction(SIGINT, &sigint_handler, NULL);
sigaction(SIGPIPE, &sigint_handler, NULL);
unique_lock<mutex> lck(_interrupt_mut);
_interrupt.wait(lck);
if(transmit || loopback)
{
// Disable transmitter
srp.stop_tx();
}
// Disable signal chain
stop(srp);
_out->flush();
if(loopback)
{
// Disable loopback
r = srp.send_cmd(srp.make_command(SET_LOOPBACK_EN, 0));
if(r.error != CMD_OK)
{
std::cerr << "Could not disable loopback mode, error: " << r.error << endl;
return 1;
}
}
cerr << endl << "Stopped." << endl;
return 0;
}
catch(const ConnectionError &e)
{
cerr << "Could not connect to FreeSRP: " << e.what() << endl;
}
catch(const runtime_error &e)
{
cerr << "Unexpected exception occurred! " << e.what() << endl;
}
// Check for FX3
if(Util::find_fx3())
{
cerr << "NOTE: Found a Cypress EZ-USB FX3 device. This could be a FreeSRP in bootloader mode.\n"
"You can upload the FreeSRP firmware to it by running 'freesrp-ctl --fx3=/path/to/firmware.img'" << endl;
}
return 1;
}
|