mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-26 04:17:50 +02:00
Added new patron to the readme and fixed radio remove/disable bug
This commit is contained in:
@ -35,6 +35,7 @@ namespace sdrpp_credits {
|
||||
};
|
||||
|
||||
const char* patrons[] = {
|
||||
"Bob Logan",
|
||||
"Croccydile",
|
||||
"Daniele D'Agnelli",
|
||||
"EB3FRN",
|
||||
|
@ -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