1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-23 02:24:16 -04:00

BladeRF output plugin: working basically

This commit is contained in:
f4exb
2017-01-02 20:24:25 +01:00
parent 8bd9c74620
commit f48fd4c3a4
8 changed files with 34 additions and 34 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ bool DeviceBladeRF::open_bladerf(struct bladerf **dev, const char *serial)
if ((*dev = open_bladerf_from_serial(0)) == 0)
{
fprintf(stderr, "DeviceBladeRF::open_bladerf: could not open BladeRF");
fprintf(stderr, "DeviceBladeRF::open_bladerf: could not open BladeRF\n");
return false;
}
@@ -33,13 +33,13 @@ bool DeviceBladeRF::open_bladerf(struct bladerf **dev, const char *serial)
if (fpga_loaded < 0)
{
fprintf(stderr, "DeviceBladeRF::open_bladerf: failed to check FPGA state: %s",
fprintf(stderr, "DeviceBladeRF::open_bladerf: failed to check FPGA state: %s\n",
bladerf_strerror(fpga_loaded));
return false;
}
else if (fpga_loaded == 0)
{
fprintf(stderr, "BladerfOutput::start: the device's FPGA is not loaded.");
fprintf(stderr, "BladerfOutput::start: the device's FPGA is not loaded.\n");
return false;
}