mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
Filter: Add Vector2f option to notch filter
This commit is contained in:
parent
f95cb16434
commit
3379a1a215
@ -146,4 +146,5 @@ NotchFilterParams::NotchFilterParams(void)
|
||||
instantiate template classes
|
||||
*/
|
||||
template class NotchFilter<float>;
|
||||
template class NotchFilter<Vector2f>;
|
||||
template class NotchFilter<Vector3f>;
|
||||
|
@ -66,5 +66,6 @@ protected:
|
||||
};
|
||||
|
||||
typedef NotchFilter<float> NotchFilterFloat;
|
||||
typedef NotchFilter<Vector2f> NotchFilterVector2f;
|
||||
typedef NotchFilter<Vector3f> NotchFilterVector3f;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user