initial commit

This commit is contained in:
AlexandreRouma
2024-08-05 22:28:33 +02:00
commit 2f4eace8ab
15 changed files with 1024 additions and 0 deletions

20
src/main.cpp Normal file
View File

@@ -0,0 +1,20 @@
#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;
}