Add 32768 as FFT size

This commit is contained in:
Jamie Vital 2024-03-09 15:05:56 -05:00
parent 5783ff261e
commit a7bd0ba365
2 changed files with 2 additions and 1 deletions

View file

@ -380,6 +380,7 @@ namespace satdump
{
if (ImGui::Combo("FFT Size", &selected_fft_size, "131072\0"
"65536\0"
"32768\0"
"16384\0"
"8192\0"
"4096\0"

View file

@ -85,7 +85,7 @@ namespace satdump
double xconverter_frequency = 0;
int selected_fft_size = 0;
std::vector<int> fft_sizes_lut = {131072, 65536, 16384, 8192, 4096, 2048, 1024};
std::vector<int> fft_sizes_lut = {131072, 65536, 32768, 16384, 8192, 4096, 2048, 1024};
int fft_size = 8192; // * 4;
int fft_rate = 120;
int waterfall_rate = 60;