Browse Source

Filter: Add Vector2f option to notch filter

gps-1.3.1
Michelle Rossouw 4 years ago committed by Andrew Tridgell
parent
commit
3379a1a215
  1. 1
      libraries/Filter/NotchFilter.cpp
  2. 1
      libraries/Filter/NotchFilter.h

1
libraries/Filter/NotchFilter.cpp

@ -146,4 +146,5 @@ NotchFilterParams::NotchFilterParams(void)
instantiate template classes instantiate template classes
*/ */
template class NotchFilter<float>; template class NotchFilter<float>;
template class NotchFilter<Vector2f>;
template class NotchFilter<Vector3f>; template class NotchFilter<Vector3f>;

1
libraries/Filter/NotchFilter.h

@ -66,5 +66,6 @@ protected:
}; };
typedef NotchFilter<float> NotchFilterFloat; typedef NotchFilter<float> NotchFilterFloat;
typedef NotchFilter<Vector2f> NotchFilterVector2f;
typedef NotchFilter<Vector3f> NotchFilterVector3f; typedef NotchFilter<Vector3f> NotchFilterVector3f;

Loading…
Cancel
Save