mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-30 14:17:51 +02:00
Added new patron to the readme and fixed radio remove/disable bug
This commit is contained in:
@ -46,6 +46,7 @@ namespace dsp {
|
||||
if (running) { return; }
|
||||
xlator.start();
|
||||
resamp.start();
|
||||
running = true;
|
||||
}
|
||||
|
||||
void stop() {
|
||||
@ -53,6 +54,7 @@ namespace dsp {
|
||||
if (!running) { return; }
|
||||
xlator.stop();
|
||||
resamp.stop();
|
||||
running = false;
|
||||
}
|
||||
|
||||
void setInSampleRate(float inSampleRate) {
|
||||
|
Reference in New Issue
Block a user