Added new patron to the readme and fixed radio remove/disable bug

This commit is contained in:
AlexandreRouma
2021-09-12 19:12:23 +02:00
parent 22acf33c01
commit 5a2b0c9d79
4 changed files with 26 additions and 0 deletions

View File

@ -35,6 +35,7 @@ namespace sdrpp_credits {
};
const char* patrons[] = {
"Bob Logan",
"Croccydile",
"Daniele D'Agnelli",
"EB3FRN",

View File

@ -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) {