hackrf: support for hackrf_open_by_serial in hackrf source

Signed-off-by: Heikki Hannikainen <hessu@hes.iki.fi>
This commit is contained in:
Heikki Hannikainen 2015-02-24 10:53:10 +02:00 committed by Dimitri Stolnikov
parent b3fdf5b83d
commit 9595b044b6
1 changed files with 8 additions and 1 deletions

View File

@ -102,9 +102,13 @@ hackrf_source_c::hackrf_source_c (const std::string &args)
_bandwidth(0)
{
int ret;
std::string *hackrf_serial = NULL;
dict_t dict = params_to_dict(args);
if (dict.count("hackrf"))
hackrf_serial = &dict["hackrf"];
_buf_num = _buf_len = _buf_head = _buf_used = _buf_offset = 0;
if (dict.count("buffers"))
@ -142,6 +146,9 @@ hackrf_source_c::hackrf_source_c (const std::string &args)
}
_dev = NULL;
if (hackrf_serial)
ret = hackrf_open_by_serial(hackrf_serial->c_str(), &_dev);
else
ret = hackrf_open( &_dev );
HACKRF_THROW_ON_ERROR(ret, "Failed to open HackRF device")