Push before merge

This commit is contained in:
Ryzerth
2020-10-22 02:33:50 +02:00
parent fbd7321b48
commit 087380c966
7 changed files with 24 additions and 10 deletions

View File

@ -46,6 +46,10 @@ int VFOManager::VFO::getOutputBlockSize() {
return dspVFO->getOutputBlockSize();
}
void VFOManager::VFO::setSnapInterval(double interval) {
wtfVFO->setSnapInterval(interval);
}
VFOManager::VFOManager() {

View File

@ -18,6 +18,7 @@ public:
void setSampleRate(double sampleRate, double bandwidth);
void setReference(int ref);
int getOutputBlockSize();
void setSnapInterval(double interval);
dsp::stream<dsp::complex_t>* output;