Home
last modified time | relevance | path

Searched refs:BLE_MESH_MODEL_OP_2 (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/common/include/
Dmodel_opcode.h17 #define BLE_MESH_MODEL_OP_GEN_ONOFF_GET BLE_MESH_MODEL_OP_2(0x82, 0x01)
18 #define BLE_MESH_MODEL_OP_GEN_ONOFF_SET BLE_MESH_MODEL_OP_2(0x82, 0x02)
19 #define BLE_MESH_MODEL_OP_GEN_ONOFF_SET_UNACK BLE_MESH_MODEL_OP_2(0x82, 0x03)
20 #define BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS BLE_MESH_MODEL_OP_2(0x82, 0x04)
23 #define BLE_MESH_MODEL_OP_GEN_LEVEL_GET BLE_MESH_MODEL_OP_2(0x82, 0x05)
24 #define BLE_MESH_MODEL_OP_GEN_LEVEL_SET BLE_MESH_MODEL_OP_2(0x82, 0x06)
25 #define BLE_MESH_MODEL_OP_GEN_LEVEL_SET_UNACK BLE_MESH_MODEL_OP_2(0x82, 0x07)
26 #define BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS BLE_MESH_MODEL_OP_2(0x82, 0x08)
27 #define BLE_MESH_MODEL_OP_GEN_DELTA_SET BLE_MESH_MODEL_OP_2(0x82, 0x09)
28 #define BLE_MESH_MODEL_OP_GEN_DELTA_SET_UNACK BLE_MESH_MODEL_OP_2(0x82, 0x0A)
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dfoundation.h25 #define OP_APP_KEY_DEL BLE_MESH_MODEL_OP_2(0x80, 0x00)
26 #define OP_APP_KEY_GET BLE_MESH_MODEL_OP_2(0x80, 0x01)
27 #define OP_APP_KEY_LIST BLE_MESH_MODEL_OP_2(0x80, 0x02)
28 #define OP_APP_KEY_STATUS BLE_MESH_MODEL_OP_2(0x80, 0x03)
29 #define OP_ATTENTION_GET BLE_MESH_MODEL_OP_2(0x80, 0x04)
30 #define OP_ATTENTION_SET BLE_MESH_MODEL_OP_2(0x80, 0x05)
31 #define OP_ATTENTION_SET_UNREL BLE_MESH_MODEL_OP_2(0x80, 0x06)
32 #define OP_ATTENTION_STATUS BLE_MESH_MODEL_OP_2(0x80, 0x07)
33 #define OP_DEV_COMP_DATA_GET BLE_MESH_MODEL_OP_2(0x80, 0x08)
34 #define OP_BEACON_GET BLE_MESH_MODEL_OP_2(0x80, 0x09)
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/include/
Dmesh_access.h185 #define BLE_MESH_MODEL_OP_2(b0, b1) (((b0) << 8) | (b1)) macro