2016-02-17 21:25:53 -04:00
|
|
|
#pragma once
|
2012-02-26 02:34:05 -04:00
|
|
|
|
2012-10-09 21:07:25 -03:00
|
|
|
/* Umbrella header for the Filter library */
|
2012-02-26 02:34:05 -04:00
|
|
|
|
2012-10-09 21:07:25 -03:00
|
|
|
#include "FilterClass.h"
|
|
|
|
#include "AverageFilter.h"
|
|
|
|
#include "DerivativeFilter.h"
|
|
|
|
#include "FilterWithBuffer.h"
|
|
|
|
#include "LowPassFilter.h"
|
|
|
|
#include "ModeFilter.h"
|
2013-01-14 23:18:47 -04:00
|
|
|
#include "Butter.h"
|
2023-11-06 03:24:43 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
the filter version is logged in the VER message to assist the online
|
|
|
|
analysis tools, so they can display the right filter formulas for
|
|
|
|
this version of the code
|
|
|
|
This should be incremented on significant filtering changes
|
|
|
|
*/
|
|
|
|
#define AP_FILTER_VERSION 2
|
|
|
|
|