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

BladerRF2 input support (7). GUI and Plugin

This commit is contained in:
f4exb
2018-09-25 00:38:38 +02:00
parent cdeb6e6c42
commit b20feec1fd
10 changed files with 573 additions and 302 deletions
+9
View File
@@ -79,6 +79,15 @@ bool DeviceBladeRF2::open(const char *serial)
return true;
}
void DeviceBladeRF2::close()
{
if (m_dev)
{
bladerf_close(m_dev);
m_dev = 0;
}
}
struct bladerf *DeviceBladeRF2::open_bladerf_from_serial(const char *serial)
{
int status;