Files
dsp/src/main.cpp
AlexandreRouma 2f4eace8ab initial commit
2024-08-05 22:28:33 +02:00

20 lines
297 B
C++

#include "dsp/taps.h"
#include "dsp/taps/low_pass.h"
#include "dsp/complex.h"
#include "dsp/stream.h"
#include <stdio.h>
struct TestStruct {
bool a;
int b;
};
int main() {
dsp::taps::LowPass lp(3000, 100, 15000);
float test = lp[0];
dsp::Stream<float> str;
return 0;
}