Filter: implement 3 element mode filter

This commit is contained in:
Randy Mackay 2023-02-28 11:49:17 +09:00 committed by Andrew Tridgell
parent 1977005bd9
commit e4d60347fb
1 changed files with 1 additions and 0 deletions

View File

@ -97,4 +97,5 @@ void ModeFilter<T,FILTER_SIZE>::isort(T new_sample, bool drop_high)
// instantiate required implementations
template class ModeFilter<float,5>;
template class ModeFilter<int16_t,3>;
template class ModeFilter<int16_t,5>;