:orphan: .. title:: CONFIG_BT_MESH_PROP_MAXSIZE .. kconfig:: CONFIG_BT_MESH_PROP_MAXSIZE CONFIG_BT_MESH_PROP_MAXSIZE ########################### *Generic Property value max size* Type: ``int`` Help ==== .. code-block:: none The upper boundary of a Generic Property value's size. The entire value with an 4 byte overhead must fit within a full TX packet payload (see BT_MESH_TX_SEG_MAX). Direct dependencies =================== (\ :kconfig:`BT_MESH_PROP_SRV ` || \ :kconfig:`BT_MESH_PROP_CLI `) && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 8 Kconfig definition ================== At ``/subsys/bluetooth/mesh/Kconfig.models:220`` Included via ``/Kconfig:8`` → ``/Kconfig.zephyr:31`` → ``/modules/Kconfig:6`` → ``/doc/_build/kconfig/Kconfig.modules:2`` → ``/Kconfig.nrf:54`` → ``/subsys/Kconfig:10`` → ``/subsys/bluetooth/Kconfig:30`` → ``/subsys/bluetooth/mesh/Kconfig:11`` Menu path: (Top) → Modules → nrf (/home/runner/work/sdk-nrf/sdk-nrf/ncs/nrf) → Nordic nRF Connect → Bluetooth Low Energy → Bluetooth mesh → nRF BT mesh models → Generic Property Model configuration .. code-block:: kconfig config BT_MESH_PROP_MAXSIZE int "Generic Property value max size" range 1 376 default 8 depends on (BT_MESH_PROP_SRV || BT_MESH_PROP_CLI) && BT_MESH && BT help The upper boundary of a Generic Property value's size. The entire value with an 4 byte overhead must fit within a full TX packet payload (see BT_MESH_TX_SEG_MAX). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*