File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,15 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo
12
12
* Multi-VFO
13
13
* Plugins
14
14
* Digital demodulators and decoders
15
+ * Quick replay (replay last n seconds, cool if you missed a short signal)
16
+
17
+ ## Small things to add
18
+ * Switchable bandwidth for demodulators
19
+ * Switchable audio output device and sample rate
20
+ * Recording
21
+ * Light theme (I know you weirdos exist lol)
22
+ * Waterfall color scheme editor
23
+ *
15
24
16
25
# Building on Windows
17
26
## Requirements
Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ float* tempData;
24
24
25
25
int fftSize = 8192 * 8 ;
26
26
27
- bool dcbias = true ;
28
-
29
27
io::SoapyWrapper soapy;
30
28
31
29
SignalPath sigPath;
@@ -104,6 +102,9 @@ int sampleRate = 1000000;
104
102
105
103
bool playing = false ;
106
104
105
+ bool dcbias = false ;
106
+ bool _dcbias = false ;
107
+
107
108
void setVFO (float freq) {
108
109
float currentOff = wtf.getVFOOfset ();
109
110
float currentTune = wtf.getCenterFrequency () + currentOff;
@@ -232,6 +233,11 @@ void drawWindow() {
232
233
bw = sampleRate;
233
234
}
234
235
236
+ if (dcbias != _dcbias) {
237
+ _dcbias = dcbias;
238
+ sigPath.setDCBiasCorrection (dcbias);
239
+ }
240
+
235
241
ImVec2 vMin = ImGui::GetWindowContentRegionMin ();
236
242
ImVec2 vMax = ImGui::GetWindowContentRegionMax ();
237
243
You can’t perform that action at this time.
0 commit comments