From bf0a126e8a9d30b77007829166f4bf91a3900079 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 8 Aug 2021 22:12:53 -0400 Subject: update templates to new api; open template status fix --- templates/1_convolve_simple.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates/1_convolve_simple.cpp') diff --git a/templates/1_convolve_simple.cpp b/templates/1_convolve_simple.cpp index 0f1973d..8de05d3 100644 --- a/templates/1_convolve_simple.cpp +++ b/templates/1_convolve_simple.cpp @@ -7,10 +7,10 @@ * transient response is not calculated. */ -adcsample_t *process_data(adcsample_t *samples, unsigned int size) +Sample *process_data(Samples samples) { // Define our output buffer. SIZE is the largest size of the 'samples' buffer. - static adcsample_t buffer[SIZE]; + static Sample buffer[samples.size()]; // Define our filter constexpr unsigned int filter_size = 3; @@ -19,7 +19,7 @@ adcsample_t *process_data(adcsample_t *samples, unsigned int size) }; // Begin convolving: - for (int n = 0; n < size - (filter_size - 1); n++) { + for (int n = 0; n < samples.size() - (filter_size - 1); n++) { buffer[n] = 0; for (int k = 0; k < filter_size; k++) buffer[n] += samples[n + k] * filter[k]; -- cgit v1.2.3