CONFIG_BT_ENOCEAN_STORE_TIMEOUT

Delay (in seconds) before storing EnOcean data persistently

Type: int

Help

This parameter controls the duration of the write delay. Whenever new EnOcean data is received, the library will start a timer that stores the sequence number when it expires. Reducing this timer shortens the timespan in which attackers could replay a message, but increases the wear on the storage medium.

Direct dependencies

BT_ENOCEAN_STORE_SEQ && BT_ENOCEAN_STORE && BT_ENOCEAN && BT

(Includes any dependencies from ifs and menus.)

Default

  • 5

Kconfig definition

At <nRF>/subsys/bluetooth/Kconfig.enocean:47

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:1<nRF>/Kconfig.nrf:25<nRF>/subsys/Kconfig:10<nRF>/subsys/bluetooth/Kconfig:29

Menu path: (Top) → Modules → Nordic nRF Connect → Bluetooth Low Energy → EnOcean library → Store EnOcean device data persistently → Continuously store the EnOcean sequence number

config BT_ENOCEAN_STORE_TIMEOUT
    int "Delay (in seconds) before storing EnOcean data persistently"
    range 0 10000000
    default 5
    depends on BT_ENOCEAN_STORE_SEQ && BT_ENOCEAN_STORE && BT_ENOCEAN && BT
    help
      This parameter controls the duration of the write delay.
      Whenever new EnOcean data is received, the library will start a timer
      that stores the sequence number when it expires. Reducing this timer
      shortens the timespan in which attackers could replay a message, but
      increases the wear on the storage medium.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)