diff --git a/libraries/Filter/Butter.h b/libraries/Filter/Butter.h index 4083aa2b1d..face55fcd1 100644 --- a/libraries/Filter/Butter.h +++ b/libraries/Filter/Butter.h @@ -1,3 +1,7 @@ + +#ifndef __FILTER_BUTTER_H__ +#define __FILTER_BUTTER_H__ + template class Butter2 { @@ -100,4 +104,6 @@ struct butter50_8_coeffs static const float GAIN = 6.881181354e+00; }; typedef Butter2 butter50hz8_0; //50hz sample, 8hz fcut -typedef Butter2 butter10hz1_6; //10hz sample, 1.6hz fcut \ No newline at end of file +typedef Butter2 butter10hz1_6; //10hz sample, 1.6hz fcut + +#endif // __FILTER_BUTTER_H__