diff options
author | Gareth Farrington <gareth@waves.ky> | 2025-03-19 09:22:45 -0700 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-05-29 19:01:38 -0400 |
commit | cb0c38f7d8450671f23915e01a2be355535a1d77 (patch) | |
tree | 59e2e48553da6a16fbb012b081e076f5ad405c79 /src/Kconfig | |
parent | 0181023954ca1602dc075d9742df980b02d9fd21 (diff) | |
download | kutter-cb0c38f7d8450671f23915e01a2be355535a1d77.tar.gz kutter-cb0c38f7d8450671f23915e01a2be355535a1d77.tar.xz kutter-cb0c38f7d8450671f23915e01a2be355535a1d77.zip |
sos_filter: Second Order Sections MCU Filter
This is an implementation of the SOS fliltering algorithm that runs on the MCU.
The filter opperates on data in fixed point format to avoid use of the FPU as klipper does not support FPU usage.
This host object handles duties of initalizing and resetting the filter so client dont have to declare their own commands for these opperations. Clients can select how many integer bits they want to use for both the filter coefficients and the filters output value. An arbitrary number of filter sections can be configured. Filters can be designed on the fly with the SciPy library or loaded from another source.
Signed-off-by: Gareth Farrington <gareth@waves.ky>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 05b9cb42..fba367d3 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -177,6 +177,10 @@ config NEED_SENSOR_BULK depends on WANT_ADXL345 || WANT_LIS2DW || WANT_MPU9250 || WANT_ICM20948 \ || WANT_HX71X || WANT_ADS1220 || WANT_LDC1612 || WANT_SENSOR_ANGLE default y +config NEED_SOS_FILTER + bool + depends on WANT_HX71X || WANT_ADS1220 + default y menu "Optional features (to reduce code size)" depends on HAVE_LIMITED_CODE_SIZE config WANT_ADC |