This commit is contained in:
AlexandreRouma
2025-07-30 15:57:07 +02:00
parent 2f4eace8ab
commit 9acafbbee9
27 changed files with 1040 additions and 305 deletions

View File

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