|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsps_fir.h"Go to the source code of this file.
Functions | |
| int | dsps_fird_f32_ansi (fir_f32_t *fir, const float *input, float *output, int len) |
| 32 bit floating point Decimation FIR filter | |
| int dsps_fird_f32_ansi | ( | fir_f32_t * | fir, |
| const float * | input, | ||
| float * | output, | ||
| int | len ) |
32 bit floating point Decimation FIR filter
Function implements FIR filter with decimation 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 |
| input | input array |
| output | array with the result of FIR filter |
| len | length of result array |
Definition at line 17 of file dsps_fird_f32_ansi.c.
References fir_f32_s::coeffs, fir_f32_s::decim, fir_f32_s::delay, k, fir_f32_s::N, N, n, and fir_f32_s::pos.