Skip to content

Commit a7a0be1

Browse files
author
Ryzerth
committed
new readme.md
1 parent ae47050 commit a7a0be1

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

readme.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo
1212
* Multi-VFO
1313
* Plugins
1414
* 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+
*
1524

1625
# Building on Windows
1726
## Requirements

src/main_window.cpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ float* tempData;
2424

2525
int fftSize = 8192 * 8;
2626

27-
bool dcbias = true;
28-
2927
io::SoapyWrapper soapy;
3028

3129
SignalPath sigPath;
@@ -104,6 +102,9 @@ int sampleRate = 1000000;
104102

105103
bool playing = false;
106104

105+
bool dcbias = false;
106+
bool _dcbias = false;
107+
107108
void setVFO(float freq) {
108109
float currentOff = wtf.getVFOOfset();
109110
float currentTune = wtf.getCenterFrequency() + currentOff;
@@ -232,6 +233,11 @@ void drawWindow() {
232233
bw = sampleRate;
233234
}
234235

236+
if (dcbias != _dcbias) {
237+
_dcbias = dcbias;
238+
sigPath.setDCBiasCorrection(dcbias);
239+
}
240+
235241
ImVec2 vMin = ImGui::GetWindowContentRegionMin();
236242
ImVec2 vMax = ImGui::GetWindowContentRegionMax();
237243

0 commit comments

Comments
 (0)