Home
last modified time | relevance | path

Searched refs:CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dblob.h24 #ifndef CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX
25 #define CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX 0 macro
108 uint8_t missing[DIV_ROUND_UP(CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX,
Dblob_cli.h45 uint8_t missing[DIV_ROUND_UP(CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX, 8)];
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dblob.rst138 * :kconfig:option:`CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX`
140 The :kconfig:option:`CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX` option is also used by the BLOB Transfer
/Zephyr-latest/subsys/bluetooth/mesh/
Dblob_srv.c62 CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX); in max_chunk_count()
823 net_buf_simple_add_le16(&rsp, CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX); in handle_info_get()
Dblob_cli.c1498 cli->caps.max_chunks = CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX; in bt_mesh_blob_cli_caps_get()
1543 if (cli->block.chunk_count > CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX) { in bt_mesh_blob_cli_send()
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_dfu.c859 DIV_ROUND_UP(CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX, 8)); in dfu_cli_inputs_prepare()
Dtest_blob.c153 ASSERT_EQUAL(caps->max_chunks, CONFIG_BT_MESH_BLOB_CHUNK_COUNT_MAX); in blob_cli_caps()