2015-09-13 22:18:29 -04:00
|
|
|
#include "SoapySDRThread.h"
|
|
|
|
#include "CubicSDRDefs.h"
|
|
|
|
#include <vector>
|
|
|
|
#include "CubicSDR.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
|
|
SDRThread::SDRThread() : IOThread() {
|
2015-10-03 21:35:11 -04:00
|
|
|
device = NULL;
|
|
|
|
|
|
|
|
deviceConfig.store(NULL);
|
|
|
|
deviceInfo.store(NULL);
|
|
|
|
|
2015-10-20 23:57:54 -04:00
|
|
|
sampleRate.store(0);
|
2015-10-03 21:35:11 -04:00
|
|
|
frequency.store(0);
|
|
|
|
offset.store(0);
|
|
|
|
ppm.store(0);
|
|
|
|
direct_sampling_mode.store(0);
|
|
|
|
|
|
|
|
numElems.store(0);
|
|
|
|
|
|
|
|
rate_changed.store(false);
|
|
|
|
freq_changed.store(false);
|
|
|
|
offset_changed.store(false);
|
|
|
|
ppm_changed .store(false);
|
|
|
|
direct_sampling_changed.store(false);
|
|
|
|
device_changed.store(false);
|
|
|
|
|
|
|
|
hasPPM.store(false);
|
|
|
|
hasHardwareDC.store(false);
|
2015-10-14 00:54:48 -04:00
|
|
|
numChannels.store(8);
|
2015-10-15 01:35:03 -04:00
|
|
|
|
2015-10-17 16:17:12 -04:00
|
|
|
// dcFilter = iirfilt_crcf_create_dc_blocker(0.0005);
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SDRThread::~SDRThread() {
|
2015-10-03 21:35:11 -04:00
|
|
|
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
void SDRThread::init() {
|
|
|
|
SDRDeviceInfo *devInfo = deviceInfo.load();
|
|
|
|
deviceConfig.store(wxGetApp().getConfig()->getDevice(devInfo->getDeviceId()));
|
|
|
|
DeviceConfig *devConfig = deviceConfig.load();
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
ppm.store(devConfig->getPPM());
|
|
|
|
direct_sampling_mode.store(devConfig->getDirectSampling());
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
std::string driverName = devInfo->getDriver();
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
offset = devConfig->getOffset();
|
2015-09-13 22:18:29 -04:00
|
|
|
wxGetApp().setSwapIQ(devConfig->getIQSwap());
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
SoapySDR::Kwargs args = devInfo->getDeviceArgs();
|
2015-09-26 01:41:30 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
args["direct_samp"] = std::to_string(devConfig->getDirectSampling());
|
2015-09-26 01:41:30 -04:00
|
|
|
|
|
|
|
if (driverName == "rtl" || driverName == "rtlsdr") {
|
2015-10-05 02:21:08 -04:00
|
|
|
args["iq_swap"] = std::to_string(devConfig->getIQSwap()?1:0);
|
2015-10-03 21:35:11 -04:00
|
|
|
args["buffers"] = "6";
|
|
|
|
args["buflen"] = "16384";
|
2015-09-26 01:41:30 -04:00
|
|
|
hasPPM = true;
|
2015-10-03 21:35:11 -04:00
|
|
|
} else {
|
|
|
|
hasPPM = false;
|
2015-09-26 01:41:30 -04:00
|
|
|
}
|
|
|
|
|
2015-10-05 02:21:08 -04:00
|
|
|
wxGetApp().sdrEnumThreadNotify(SDREnumerator::SDR_ENUM_MESSAGE, std::string("Initializing device."));
|
2015-10-03 21:35:11 -04:00
|
|
|
device = SoapySDR::Device::make(args);
|
|
|
|
stream = device->setupStream(SOAPY_SDR_RX,"CF32", std::vector<size_t>(), devInfo->getStreamArgs());
|
2015-09-30 23:45:06 -04:00
|
|
|
|
2015-10-05 02:21:08 -04:00
|
|
|
wxGetApp().sdrEnumThreadNotify(SDREnumerator::SDR_ENUM_MESSAGE, std::string("Activating stream."));
|
2015-09-13 22:18:29 -04:00
|
|
|
device->setSampleRate(SOAPY_SDR_RX,0,sampleRate.load());
|
|
|
|
device->setFrequency(SOAPY_SDR_RX,0,"RF",frequency - offset.load());
|
2015-10-20 01:54:20 -04:00
|
|
|
device->activateStream(stream);
|
2015-10-05 02:21:08 -04:00
|
|
|
SDRDeviceChannel *chan = devInfo->getRxChannel();
|
|
|
|
if (chan->hasCORR()) {
|
|
|
|
hasPPM.store(true);
|
|
|
|
device->setFrequency(SOAPY_SDR_RX,0,"CORR",ppm.load());
|
|
|
|
} else {
|
|
|
|
hasPPM.store(false);
|
|
|
|
}
|
|
|
|
if (chan->hasHardwareDC()) {
|
|
|
|
hasHardwareDC.store(true);
|
2015-10-17 16:17:12 -04:00
|
|
|
// wxGetApp().sdrEnumThreadNotify(SDREnumerator::SDR_ENUM_MESSAGE, std::string("Found hardware DC offset correction support, internal disabled."));
|
2015-10-05 02:21:08 -04:00
|
|
|
device->setDCOffsetMode(SOAPY_SDR_RX, chan->getChannel(), true);
|
|
|
|
} else {
|
|
|
|
hasHardwareDC.store(false);
|
2015-09-26 01:41:30 -04:00
|
|
|
}
|
2015-10-05 02:21:08 -04:00
|
|
|
|
2015-09-30 23:45:06 -04:00
|
|
|
device->setGainMode(SOAPY_SDR_RX,0,true);
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-14 00:54:48 -04:00
|
|
|
numChannels.store(getOptimalChannelCount(sampleRate.load()));
|
|
|
|
numElems.store(getOptimalElementCount(sampleRate.load(), 30));
|
2015-10-15 01:35:03 -04:00
|
|
|
inpBuffer.data.resize(numElems.load());
|
2015-09-22 21:03:23 -04:00
|
|
|
|
|
|
|
buffs[0] = malloc(numElems * 2 * sizeof(float));
|
2015-10-03 21:35:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void SDRThread::deinit() {
|
|
|
|
device->deactivateStream(stream);
|
|
|
|
device->closeStream(stream);
|
|
|
|
SoapySDR::Device::unmake(device);
|
|
|
|
free(buffs[0]);
|
|
|
|
}
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
void SDRThread::readStream(SDRThreadIQDataQueue* iqDataOutQueue) {
|
2015-09-13 22:18:29 -04:00
|
|
|
int flags;
|
|
|
|
long long timeNs;
|
|
|
|
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
int n_read = 0;
|
2015-10-14 00:54:48 -04:00
|
|
|
while (n_read != numElems && !terminated) {
|
2015-10-03 21:35:11 -04:00
|
|
|
int n_stream_read = device->readStream(stream, buffs, numElems-n_read, flags, timeNs);
|
|
|
|
if (n_stream_read > 0) {
|
2015-10-15 01:35:03 -04:00
|
|
|
memcpy(&inpBuffer.data[n_read], buffs[0], n_stream_read * sizeof(float) * 2);
|
2015-10-03 21:35:11 -04:00
|
|
|
n_read += n_stream_read;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-14 00:54:48 -04:00
|
|
|
if (n_read > 0 && !terminated) {
|
2015-10-15 01:35:03 -04:00
|
|
|
SDRThreadIQData *dataOut = buffers.getBuffer();
|
|
|
|
|
2015-10-17 16:17:12 -04:00
|
|
|
// if (hasHardwareDC) {
|
2015-10-15 01:35:03 -04:00
|
|
|
dataOut->data.assign(inpBuffer.data.begin(), inpBuffer.data.begin()+n_read);
|
2015-10-17 16:17:12 -04:00
|
|
|
// } else {
|
|
|
|
// if (dataOut->data.size() != n_read) {
|
|
|
|
// dataOut->data.resize(n_read);
|
|
|
|
// }
|
|
|
|
// iirfilt_crcf_execute_block(dcFilter, &inpBuffer.data[0], n_read, &dataOut->data[0]);
|
|
|
|
// }
|
2015-10-15 01:35:03 -04:00
|
|
|
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
dataOut->setRefCount(1);
|
2015-10-14 00:54:48 -04:00
|
|
|
dataOut->frequency = frequency.load();
|
2015-10-03 21:35:11 -04:00
|
|
|
dataOut->sampleRate = sampleRate.load();
|
2015-10-14 00:54:48 -04:00
|
|
|
dataOut->dcCorrected = hasHardwareDC.load();
|
|
|
|
dataOut->numChannels = numChannels.load();
|
2015-10-03 21:35:11 -04:00
|
|
|
|
|
|
|
iqDataOutQueue->push(dataOut);
|
|
|
|
}
|
|
|
|
}
|
2015-09-13 22:18:29 -04:00
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
void SDRThread::readLoop() {
|
|
|
|
SDRThreadIQDataQueue* iqDataOutQueue = (SDRThreadIQDataQueue*) getOutputQueue("IQDataOutput");
|
|
|
|
|
|
|
|
if (iqDataOutQueue == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!terminated.load()) {
|
|
|
|
if (offset_changed.load()) {
|
|
|
|
if (!freq_changed.load()) {
|
|
|
|
frequency.store(frequency.load());
|
|
|
|
freq_changed.store(true);
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
offset_changed.store(false);
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
if (rate_changed.load()) {
|
|
|
|
device->setSampleRate(SOAPY_SDR_RX,0,sampleRate.load());
|
|
|
|
sampleRate.store(device->getSampleRate(SOAPY_SDR_RX,0));
|
2015-10-14 00:54:48 -04:00
|
|
|
numChannels.store(getOptimalChannelCount(sampleRate.load()));
|
2015-10-03 21:35:11 -04:00
|
|
|
numElems.store(getOptimalElementCount(sampleRate.load(), 60));
|
2015-10-15 01:35:03 -04:00
|
|
|
inpBuffer.data.resize(numElems.load());
|
2015-10-03 21:35:11 -04:00
|
|
|
free(buffs[0]);
|
|
|
|
buffs[0] = malloc(numElems.load() * 2 * sizeof(float));
|
|
|
|
rate_changed.store(false);
|
2015-09-26 20:39:33 -04:00
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
if (ppm_changed.load() && hasPPM.load()) {
|
|
|
|
device->setFrequency(SOAPY_SDR_RX,0,"CORR",ppm.load());
|
|
|
|
direct_sampling_changed.store(false);
|
2015-09-26 20:39:33 -04:00
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
if (freq_changed.load()) {
|
|
|
|
device->setFrequency(SOAPY_SDR_RX,0,"RF",frequency.load() - offset.load());
|
|
|
|
freq_changed.store(false);
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
if (direct_sampling_changed.load()) {
|
|
|
|
// rtlsdr_set_direct_sampling(dev, direct_sampling_mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
readStream(iqDataOutQueue);
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
2015-09-14 20:31:39 -04:00
|
|
|
buffers.purge();
|
2015-10-03 21:35:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SDRThread::run() {
|
|
|
|
//#ifdef __APPLE__
|
|
|
|
// pthread_t tID = pthread_self(); // ID of this thread
|
2015-10-14 00:54:48 -04:00
|
|
|
// int priority = sched_get_priority_max( SCHED_FIFO);
|
2015-10-03 21:35:11 -04:00
|
|
|
// sched_param prio = { priority }; // scheduling priority of thread
|
|
|
|
// pthread_setschedparam(tID, SCHED_FIFO, &prio);
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
std::cout << "SDR thread starting." << std::endl;
|
|
|
|
terminated.store(false);
|
|
|
|
|
|
|
|
if (deviceInfo.load() != NULL) {
|
|
|
|
std::cout << "device init()" << std::endl;
|
|
|
|
init();
|
|
|
|
std::cout << "starting readLoop()" << std::endl;
|
|
|
|
readLoop();
|
|
|
|
std::cout << "readLoop() ended." << std::endl;
|
|
|
|
deinit();
|
|
|
|
std::cout << "device deinit()" << std::endl;
|
|
|
|
} else {
|
2015-10-04 16:07:14 -04:00
|
|
|
std::cout << "SDR Thread started with null device?" << std::endl;
|
2015-10-03 21:35:11 -04:00
|
|
|
}
|
|
|
|
|
2015-09-13 22:18:29 -04:00
|
|
|
std::cout << "SDR thread done." << std::endl;
|
2015-10-03 21:35:11 -04:00
|
|
|
|
|
|
|
if (!terminated.load()) {
|
|
|
|
terminated.store(true);
|
|
|
|
wxGetApp().sdrThreadNotify(SDRThread::SDR_THREAD_TERMINATED, "Done.");
|
|
|
|
}
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
SDRDeviceInfo *SDRThread::getDevice() {
|
|
|
|
return deviceInfo.load();
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
void SDRThread::setDevice(SDRDeviceInfo *dev) {
|
|
|
|
deviceInfo.store(dev);
|
|
|
|
deviceConfig.store(wxGetApp().getConfig()->getDevice(dev->getDeviceId()));
|
2015-09-13 22:18:29 -04:00
|
|
|
}
|
2015-09-22 21:03:23 -04:00
|
|
|
|
|
|
|
int SDRThread::getOptimalElementCount(long long sampleRate, int fps) {
|
|
|
|
int elemCount = (int)floor((double)sampleRate/(double)fps);
|
2015-10-14 00:54:48 -04:00
|
|
|
int nch = numChannels.load();
|
|
|
|
elemCount = int(ceil((double)elemCount/(double)nch))*nch;
|
|
|
|
std::cout << "Calculated optimal " << numChannels.load() << " channel element count of " << elemCount << std::endl;
|
2015-09-22 21:03:23 -04:00
|
|
|
return elemCount;
|
|
|
|
}
|
2015-10-03 21:35:11 -04:00
|
|
|
|
2015-10-14 00:54:48 -04:00
|
|
|
int SDRThread::getOptimalChannelCount(long long sampleRate) {
|
|
|
|
int optimal_rate = CHANNELIZER_RATE_MAX;
|
|
|
|
int optimal_count = int(ceil(double(sampleRate)/double(optimal_rate)));
|
|
|
|
|
|
|
|
if (optimal_count % 2 == 1) {
|
|
|
|
optimal_count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optimal_count < 4) {
|
|
|
|
optimal_count = 4;
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:01:07 -04:00
|
|
|
// if (optimal_count > 16) {
|
|
|
|
// optimal_count = 16;
|
|
|
|
// }
|
2015-10-14 00:54:48 -04:00
|
|
|
return optimal_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-03 21:35:11 -04:00
|
|
|
void SDRThread::setFrequency(long long freq) {
|
|
|
|
if (freq < sampleRate.load() / 2) {
|
|
|
|
freq = sampleRate.load() / 2;
|
|
|
|
}
|
|
|
|
frequency.store(freq);
|
|
|
|
freq_changed.store(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
long long SDRThread::getFrequency() {
|
|
|
|
return frequency.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRThread::setOffset(long long ofs) {
|
|
|
|
offset.store(ofs);
|
|
|
|
offset_changed.store(true);
|
|
|
|
std::cout << "Set offset: " << offset.load() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
long long SDRThread::getOffset() {
|
|
|
|
return offset.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRThread::setSampleRate(int rate) {
|
|
|
|
sampleRate.store(rate);
|
|
|
|
rate_changed = true;
|
|
|
|
std::cout << "Set sample rate: " << sampleRate.load() << std::endl;
|
|
|
|
}
|
|
|
|
int SDRThread::getSampleRate() {
|
|
|
|
return sampleRate.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRThread::setPPM(int ppm) {
|
|
|
|
this->ppm.store(ppm);
|
|
|
|
ppm_changed.store(true);
|
|
|
|
std::cout << "Set PPM: " << this->ppm.load() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SDRThread::getPPM() {
|
|
|
|
return ppm.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRThread::setDirectSampling(int dsMode) {
|
|
|
|
direct_sampling_mode.store(dsMode);
|
|
|
|
direct_sampling_changed.store(true);
|
|
|
|
std::cout << "Set direct sampling mode: " << this->direct_sampling_mode.load() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SDRThread::getDirectSampling() {
|
|
|
|
return direct_sampling_mode.load();
|
|
|
|
}
|