You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
208 B

  1. #ifndef __FIR_H__
  2. #define __FIR_H__
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. #include <stdint.h>
  7. #include <math.h>
  8. extern float FIR_filter(float);
  9. extern void FIR_reset_buffer();
  10. #endif