para el ventilador

Dependencies:   QEI FastPWM

filters.h

Committer:
miguelangelpachas
Date:
2020-05-15
Revision:
13:e0a6033cb39d
Parent:
11:5cb7ae8bd831

File content as of revision 13:e0a6033cb39d:

#ifndef FILTERS_H_
#define FILTERS_H_

/* Function declaration */
float RC_LPF_01(float raw_value, uint8_t restart);
float RC_HPF_01(float raw_value, uint8_t restart);
float RC_LPF_02(float raw_value, uint8_t restart);

float Pressure_01_Cheby2_LPF(float raw_value, uint8_t restart);
float Pressure_02_Cheby2_LPF(float raw_value, uint8_t restart);
float Flow_Cheby2_HPF(float raw_value, uint8_t restart);
float Flow_FIR_LPF(float raw_value, uint8_t restart);

#endif