Home
last modified time | relevance | path

Searched refs:gatt_proxy (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/subsys/bluetooth/mesh/
Dpriv_beacon_srv.c118 uint8_t gatt_proxy; in handle_gatt_proxy_set() local
120 gatt_proxy = net_buf_simple_pull_u8(buf); in handle_gatt_proxy_set()
121 if (gatt_proxy != BT_MESH_GATT_PROXY_DISABLED && in handle_gatt_proxy_set()
122 gatt_proxy != BT_MESH_GATT_PROXY_ENABLED) { in handle_gatt_proxy_set()
123 LOG_WRN("Invalid GATT proxy value %u", gatt_proxy); in handle_gatt_proxy_set()
127 LOG_DBG("%u", gatt_proxy); in handle_gatt_proxy_set()
129 bt_mesh_priv_gatt_proxy_set(gatt_proxy); in handle_gatt_proxy_set()
Dcfg.c31 uint8_t gatt_proxy; member
170 int bt_mesh_gatt_proxy_set(enum bt_mesh_feat_state gatt_proxy) in bt_mesh_gatt_proxy_set() argument
178 err = feature_set(BT_MESH_GATT_PROXY, gatt_proxy); in bt_mesh_gatt_proxy_set()
186 if (gatt_proxy == BT_MESH_FEATURE_ENABLED) { in bt_mesh_gatt_proxy_set()
190 if ((gatt_proxy == BT_MESH_FEATURE_ENABLED) || in bt_mesh_gatt_proxy_set()
191 (gatt_proxy == BT_MESH_FEATURE_DISABLED && in bt_mesh_gatt_proxy_set()
446 bt_mesh_gatt_proxy_set(cfg.gatt_proxy); in cfg_set()
478 val.gatt_proxy = bt_mesh_gatt_proxy_get(); in store_pending_cfg()
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dpriv_beacon_cli.h77 uint8_t gatt_proxy);
Dcfg.h252 int bt_mesh_gatt_proxy_set(enum bt_mesh_feat_state gatt_proxy);
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_persistence.c200 uint8_t gatt_proxy; member
219 .gatt_proxy = 1,
235 .gatt_proxy = 0,
922 current_stack_cfg->gatt_proxy, &status); in test_cfg_save()
923 if (err || status != current_stack_cfg->gatt_proxy) { in test_cfg_save()
1012 if (err || status != current_stack_cfg->gatt_proxy) { in test_cfg_load()
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dproxy.rst9 and the initial value can be set with :c:member:`bt_mesh_cfg_srv.gatt_proxy`.