diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-30 08:41:56 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-30 08:42:45 -0400 |
commit | e164629b3839eee0fda0be0e0a9842e78cf02f2b (patch) | |
tree | b72b58665b85a104e5b953af45f00579341b2802 /gui/templates/6_iir_test.cpp | |
parent | 162dd6de8a0d883962b0b1475f47cbb08e0958d4 (diff) | |
parent | 3dd57491b1e81a9d93054eff19ca0e6c65c85b9b (diff) |
merge in branch devel
Diffstat (limited to 'gui/templates/6_iir_test.cpp')
-rw-r--r-- | gui/templates/6_iir_test.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gui/templates/6_iir_test.cpp b/gui/templates/6_iir_test.cpp deleted file mode 100644 index cdb4ab3..0000000 --- a/gui/templates/6_iir_test.cpp +++ /dev/null @@ -1,13 +0,0 @@ -adcsample_t *process_data(adcsample_t *samples, unsigned int size) -{ - constexpr float alpha = 0.7; - - static adcsample_t prev = 2048; - - samples[0] = (1 - alpha) * samples[0] + alpha * prev; - for (unsigned int i = 1; i < size; i++) - samples[i] = (1 - alpha) * samples[i] + alpha * samples[i - 1]; - prev = samples[size - 1]; - - return samples; -} |