Home
last modified time | relevance | path

Searched refs:tai_utc_delta_curr (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/
Dtime_scene_server.h87 tai_utc_delta_curr : 15; member
263 uint16_t tai_utc_delta_curr : 15; member
271 uint16_t tai_utc_delta_curr : 15; member
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_time_scene_model_api.h183 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
487 tai_utc_delta_curr : 15; /*!< The value of the TAI-UTC Delta Current state */ member
656 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
666 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/
Dtime_scene_server.c91 … (srv->state->time.tai_utc_delta_curr << 1) | srv->state->time.time_authority); in send_time_status()
101 … (srv->state->time.tai_utc_delta_curr << 1) | srv->state->time.time_authority); in send_time_status()
122 net_buf_simple_add_le16(msg, srv->state->time.tai_utc_delta_curr); in send_time_status()
127 net_buf_simple_add_le16(msg, srv->state->time.tai_utc_delta_curr); in send_time_status()
253 srv->state->time.tai_utc_delta_curr = (val >> 1) & BIT_MASK(15); in time_get()
262 change.time_status.tai_utc_delta_curr = srv->state->time.tai_utc_delta_curr; in time_get()
339 srv->state->time.tai_utc_delta_curr = (val >> 1) & BIT_MASK(15); in time_set()
406 change.time_set.tai_utc_delta_curr = srv->state->time.tai_utc_delta_curr; in time_set()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/
Dtime_scene_client.h62 uint16_t tai_utc_delta_curr : 15; /* Current difference between TAI and UTC in seconds */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/
Dtime_scene_client.c182 status->tai_utc_delta_curr = temp & BIT_MASK(15); in time_scene_status()