SSTV-Decoder/include/fft/fft.h

12 lines
223 B
C
Raw Normal View History

2023-04-23 21:24:45 +08:00
#pragma once
#include "inttypes.h"
2023-04-23 21:36:04 +08:00
#define q15_t int16_t
#define q31_t int32_t
2023-04-23 21:24:45 +08:00
#define FFT_BIN(num, re) (uint16_t)((float)(num + 0.5) * re)
#define FFT_INDEX(freq, re) (uint16_t)((float)freq / re)
2023-04-23 21:24:45 +08:00
int FFT(q15_t *data);