mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-29 23:28:39 -05:00
visual studio fixes
This commit is contained in:
parent
f41c14f56c
commit
425927fb9e
@ -1,11 +1,13 @@
|
|||||||
#include "AppConfig.h"
|
#include "AppConfig.h"
|
||||||
#include "CubicSDR.h"
|
#include "CubicSDR.h"
|
||||||
|
|
||||||
DeviceConfig::DeviceConfig() : deviceId(""), ppm(0), directSampling(false), offset(0) {
|
DeviceConfig::DeviceConfig() : deviceId("") {
|
||||||
|
ppm.store(0);
|
||||||
|
directSampling.store(false);
|
||||||
|
offset.store(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
DeviceConfig::DeviceConfig(std::string deviceId) : ppm(0) {
|
DeviceConfig::DeviceConfig(std::string deviceId) : DeviceConfig() {
|
||||||
this->deviceId = deviceId;
|
this->deviceId = deviceId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user