Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/include/
Dhealth_cli.h44 uint16_t cid, uint8_t test_id, bool need_ack);
59 uint8_t test_id; member
65 uint8_t test_id; member
Dhealth_srv.h31 void (*fault_test)(struct bt_mesh_model *model, uint8_t test_id,
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dhealth_srv.c76 static bool health_is_test_id_exist(struct bt_mesh_model *model, uint8_t test_id) in health_is_test_id_exist() argument
82 if (srv->test.test_ids[i] == test_id) { in health_is_test_id_exist()
183 uint8_t test_id = 0U; in health_fault_test() local
192 test_id = net_buf_simple_pull_u8(buf); in health_fault_test()
193 if (health_is_test_id_exist(model, test_id) == false) { in health_fault_test()
194 BT_ERR("Unknown Test ID 0x%02x", test_id); in health_fault_test()
204 BT_DBG("test 0x%02x company 0x%04x", test_id, company_id); in health_fault_test()
206 srv->test.prev_test_id = test_id; in health_fault_test()
209 srv->cb.fault_test(model, test_id, company_id); in health_fault_test()
Dhealth_cli.c162 status.test_id = net_buf_simple_pull_u8(buf); in health_fault_status()
185 status.test_id = net_buf_simple_pull_u8(buf); in health_current_status()
277 uint16_t cid, uint8_t test_id, bool need_ack) in bt_mesh_health_fault_test() argument
282 net_buf_simple_add_u8(&msg, test_id); in bt_mesh_health_fault_test()
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_health_model_api.h183 uint8_t test_id; /*!< ID of a specific test to be performed */ member
221 uint8_t test_id; /*!< ID of a most recently performed test */ member
228 uint8_t test_id; /*!< ID of a most recently performed test */ member
284 uint8_t test_id; /*!< ID of a specific test to be performed */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_health_model.c376 …eturn bt_mesh_health_fault_test(&param, set->fault_test.company_id, set->fault_test.test_id, true); in btc_ble_mesh_health_client_set_state()
378 …turn bt_mesh_health_fault_test(&param, set->fault_test.company_id, set->fault_test.test_id, false); in btc_ble_mesh_health_client_set_state()
608 uint8_t test_id, uint16_t company_id) in btc_ble_mesh_health_server_fault_test() argument
613 param.fault_test.test_id = test_id; in btc_ble_mesh_health_server_fault_test()
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/include/
Dbtc_ble_mesh_health_model.h79 uint8_t test_id, uint16_t company_id);