:orphan: .. title:: BT_MESH_ADV_BUF_COUNT .. option:: CONFIG_BT_MESH_ADV_BUF_COUNT *Number of advertising buffers* Type: ``int`` Help ==== Number of advertising buffers available. This should be chosen based on what kind of features the local node should have. E.g. a relay will perform better the more buffers it has. Another thing to consider is outgoing segmented messages. There must be at least three more advertising buffers than the maximum supported outgoing segment count (BT_MESH_TX_SEG_MAX). Direct dependencies =================== \ :option:`BT_MESH ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 6 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/mesh/Kconfig:219`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:258`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Mesh support .. parsed-literal:: config BT_MESH_ADV_BUF_COUNT int "Number of advertising buffers" range 1 256 default 6 depends on \ :option:`BT_MESH ` && \ :option:`BT ` help Number of advertising buffers available. This should be chosen based on what kind of features the local node should have. E.g. a relay will perform better the more buffers it has. Another thing to consider is outgoing segmented messages. There must be at least three more advertising buffers than the maximum supported outgoing segment count (BT_MESH_TX_SEG_MAX). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*