:orphan: .. title:: choice: Low-Pass (Antialiasing) Filter corner frequency .. _choice_333: .. describe:: choice: Low-Pass (Antialiasing) Filter corner frequency *Low-Pass (Antialiasing) Filter corner frequency* Type: ``bool`` Help ==== .. code-block:: none High g events often include acceleration content over a wide range of frequencies. The ADC of the ADXL372 samples the input acceleration at the user selected ODR. In the absence of antialiasing filters, input signals whose frequency is more than half the ODR alias or fold into the measurement bandwidth can lead to inaccurate measurements. Direct dependencies =================== \ :kconfig:`ADXL372 ` && \ :kconfig:`SENSOR ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - \ :kconfig:`ADXL372_BW_200HZ ` if \ :kconfig:`ADXL372_ODR_400HZ ` - \ :kconfig:`ADXL372_BW_400HZ ` if \ :kconfig:`ADXL372_ODR_800HZ ` - \ :kconfig:`ADXL372_BW_800HZ ` if \ :kconfig:`ADXL372_ODR_1600HZ ` - \ :kconfig:`ADXL372_BW_1600HZ ` if \ :kconfig:`ADXL372_ODR_3200HZ ` - \ :kconfig:`ADXL372_BW_3200HZ ` if \ :kconfig:`ADXL372_ODR_6400HZ ` Choice options ============== - \ :kconfig:`ADXL372_LPF_DISABLE ` - \ :kconfig:`ADXL372_BW_200HZ ` - \ :kconfig:`ADXL372_BW_400HZ ` - \ :kconfig:`ADXL372_BW_800HZ ` - \ :kconfig:`ADXL372_BW_1600HZ ` - \ :kconfig:`ADXL372_BW_3200HZ ` Kconfig definition ================== At ``/sensor/adxl372/Kconfig:72`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:64`` → ``/sensor/Kconfig:47`` Menu path: (Top) → Device Drivers → Sensor Drivers → ADXL372 Three Axis High-g I2C/SPI accelerometer .. code-block:: kconfig choice bool "Low-Pass (Antialiasing) Filter corner frequency" default ADXL372_BW_200HZ if ADXL372_ODR_400HZ default ADXL372_BW_400HZ if ADXL372_ODR_800HZ default ADXL372_BW_800HZ if ADXL372_ODR_1600HZ default ADXL372_BW_1600HZ if ADXL372_ODR_3200HZ default ADXL372_BW_3200HZ if ADXL372_ODR_6400HZ depends on ADXL372 && SENSOR help High g events often include acceleration content over a wide range of frequencies. The ADC of the ADXL372 samples the input acceleration at the user selected ODR. In the absence of antialiasing filters, input signals whose frequency is more than half the ODR alias or fold into the measurement bandwidth can lead to inaccurate measurements. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*