:orphan: .. title:: CONFIG_ADXL372_INACTIVITY_TIME .. kconfig:: CONFIG_ADXL372_INACTIVITY_TIME CONFIG_ADXL372_INACTIVITY_TIME ############################## *In-activity time* Type: ``int`` Help ==== .. code-block:: none The time that all enabled axes must be lower than the inactivity threshold for an inactivity event to be detected. Number of multiples of 26 ms inactivity timer for which below threshold acceleration is required to detect inactivity. It is 26 ms per code for 3200 Hz ODR and below, and it is 13 ms per code for 6400 Hz ODR. Direct dependencies =================== \ :kconfig:`ADXL372 ` && \ :kconfig:`SENSOR ` *(Includes any dependencies from ifs and menus.)* Default ======= - 2 Kconfig definition ================== At ``/sensor/adxl372/Kconfig:161`` 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 config ADXL372_INACTIVITY_TIME int "In-activity time" range 0 255 default 2 depends on ADXL372 && SENSOR help The time that all enabled axes must be lower than the inactivity threshold for an inactivity event to be detected. Number of multiples of 26 ms inactivity timer for which below threshold acceleration is required to detect inactivity. It is 26 ms per code for 3200 Hz ODR and below, and it is 13 ms per code for 6400 Hz ODR. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*