Add ASK BPSK DQPSK(not implemented yet) FFT QPSK WAV

This commit is contained in:
2025-09-28 21:53:50 +02:00
parent a0fb3d4799
commit aae240abb9
22 changed files with 648 additions and 0 deletions

8
FFT/fft.h Normal file
View File

@ -0,0 +1,8 @@
#include <math.h>
#include <complex.h>
#include <stdint.h>
#include <stdlib.h>
complex float* fft(complex float* p, uint32_t N);
complex float* ifft(complex float* p, uint32_t N);