CONFIG_MEMFAULT_HTTP_PERIODIC_UPLOAD

Enables a work job to periodically push new data to Memfault

Type: bool

Help

This implementation makes use of a k_timer_* and k_work_submit to schedule
a background job that periodically checks to see if new Memfault data
is available and pushes it to Memfault if so (via a HTTP POST).

Direct dependencies

MEMFAULT_HTTP_ENABLE && MEMFAULT

(Includes any dependencies from ifs and menus.)

Default

  • n

Kconfig definition

At /home/runner/work/sdk-nrf/sdk-nrf/ncs/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig:133

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:23<Zephyr>/modules/Kconfig:6<BuildDir>/kconfig/Kconfig.modules:38

Menu path: (Top) → Modules → memfault-firmware-sdk (/home/runner/work/sdk-nrf/sdk-nrf/ncs/modules/lib/memfault-firmware-sdk) → MEMFAULT Support

config MEMFAULT_HTTP_PERIODIC_UPLOAD
    bool "Enables a work job to periodically push new data to Memfault"
    default n
    depends on MEMFAULT_HTTP_ENABLE && MEMFAULT
    help
      This implementation makes use of a k_timer_* and k_work_submit to schedule
      a background job that periodically checks to see if new Memfault data
      is available and pushes it to Memfault if so (via a HTTP POST).

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