Beginning of FFT Hold feature

This commit is contained in:
AlexandreRouma
2022-03-31 15:13:42 +02:00
parent 54dd3a77db
commit 83da29e80b
2 changed files with 43 additions and 0 deletions

View File

@ -176,6 +176,8 @@ namespace ImGui {
void setBandPlanPos(int pos);
void setFFTHold(bool hold);
bool centerFreqMoved = false;
bool vfoFreqChanged = false;
bool bandplanEnabled = false;
@ -307,6 +309,7 @@ namespace ImGui {
int rawFFTSize;
float* rawFFTs = NULL;
float* latestFFT;
float* latestFFTHold;
int currentFFTLine = 0;
int fftLines = 0;
@ -324,6 +327,8 @@ namespace ImGui {
int bandPlanPos = BANDPLAN_POS_BOTTOM;
bool fftHold = false;
// UI Select elements
bool fftResizeSelect = false;
bool freqScaleSelect = false;