mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Add 32768 as FFT size
This commit is contained in:
parent
5783ff261e
commit
a7bd0ba365
2 changed files with 2 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue