Commit 45c00b7a authored by rakesh mundlamuri's avatar rakesh mundlamuri

fix for 3072 fft size when using 80 MHz and -E

parent 1244c9a2
......@@ -953,6 +953,9 @@ void freq2time(uint16_t ofdm_symbol_size,
case 2048:
idft(IDFT_2048, freq_signal, time_signal, 1);
break;
case 3072:
idft(IDFT_3072, freq_signal, time_signal, 1);
break;
case 4096:
idft(IDFT_4096, freq_signal, time_signal, 1);
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment