|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsps_fir.h"Go to the source code of this file.
Functions | |
| esp_err_t | dsps_fir_f32_ansi (fir_f32_t *fir, const float *input, float *output, int len) |
| 32 bit floating point FIR filter | |
32 bit floating point FIR filter
Function implements FIR filter The extension (_ansi) uses ANSI C and could be compiled and run on any platform. The extension (_ae32) is optimized for ESP32 chip.
| fir | pointer to fir filter structure, that must be initialized before | |
| [in] | input | input array |
| [out] | output | array with the result of FIR filter |
| [in] | len | length of input and result arrays |
Definition at line 17 of file dsps_fir_f32_ansi.c.
References fir_f32_s::coeffs, fir_f32_s::delay, ESP_OK, fir_f32_s::N, N, n, and fir_f32_s::pos.
Referenced by test_fir().