mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-13 22:12:51 +01:00
new readme.md
This commit is contained in:
parent
ae47050556
commit
a7a0be1b83
@ -12,6 +12,15 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo
|
|||||||
* Multi-VFO
|
* Multi-VFO
|
||||||
* Plugins
|
* Plugins
|
||||||
* Digital demodulators and decoders
|
* Digital demodulators and decoders
|
||||||
|
* Quick replay (replay last n seconds, cool if you missed a short signal)
|
||||||
|
|
||||||
|
## Small things to add
|
||||||
|
* Switchable bandwidth for demodulators
|
||||||
|
* Switchable audio output device and sample rate
|
||||||
|
* Recording
|
||||||
|
* Light theme (I know you weirdos exist lol)
|
||||||
|
* Waterfall color scheme editor
|
||||||
|
*
|
||||||
|
|
||||||
# Building on Windows
|
# Building on Windows
|
||||||
## Requirements
|
## Requirements
|
||||||
|
@ -24,8 +24,6 @@ float* tempData;
|
|||||||
|
|
||||||
int fftSize = 8192 * 8;
|
int fftSize = 8192 * 8;
|
||||||
|
|
||||||
bool dcbias = true;
|
|
||||||
|
|
||||||
io::SoapyWrapper soapy;
|
io::SoapyWrapper soapy;
|
||||||
|
|
||||||
SignalPath sigPath;
|
SignalPath sigPath;
|
||||||
@ -104,6 +102,9 @@ int sampleRate = 1000000;
|
|||||||
|
|
||||||
bool playing = false;
|
bool playing = false;
|
||||||
|
|
||||||
|
bool dcbias = false;
|
||||||
|
bool _dcbias = false;
|
||||||
|
|
||||||
void setVFO(float freq) {
|
void setVFO(float freq) {
|
||||||
float currentOff = wtf.getVFOOfset();
|
float currentOff = wtf.getVFOOfset();
|
||||||
float currentTune = wtf.getCenterFrequency() + currentOff;
|
float currentTune = wtf.getCenterFrequency() + currentOff;
|
||||||
@ -232,6 +233,11 @@ void drawWindow() {
|
|||||||
bw = sampleRate;
|
bw = sampleRate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dcbias != _dcbias) {
|
||||||
|
_dcbias = dcbias;
|
||||||
|
sigPath.setDCBiasCorrection(dcbias);
|
||||||
|
}
|
||||||
|
|
||||||
ImVec2 vMin = ImGui::GetWindowContentRegionMin();
|
ImVec2 vMin = ImGui::GetWindowContentRegionMin();
|
||||||
ImVec2 vMax = ImGui::GetWindowContentRegionMax();
|
ImVec2 vMax = ImGui::GetWindowContentRegionMax();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user