Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/server/include/
Dtime_scene_server.h95 tai_utc_delta_curr : 15; member
271 uint16_t tai_utc_delta_curr : 15; member
279 uint16_t tai_utc_delta_curr : 15; member
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_time_scene_model_api.h191 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
495 tai_utc_delta_curr : 15; /*!< The value of the TAI-UTC Delta Current state */ member
664 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
674 uint16_t tai_utc_delta_curr : 15; /*!< Current difference between TAI and UTC in seconds */ member
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/server/
Dtime_scene_server.c99 … (srv->state->time.tai_utc_delta_curr << 1) | srv->state->time.time_authority); in send_time_status()
109 … (srv->state->time.tai_utc_delta_curr << 1) | srv->state->time.time_authority); in send_time_status()
130 net_buf_simple_add_le16(msg, srv->state->time.tai_utc_delta_curr); in send_time_status()
135 net_buf_simple_add_le16(msg, srv->state->time.tai_utc_delta_curr); in send_time_status()
261 srv->state->time.tai_utc_delta_curr = (val >> 1) & BIT_MASK(15); in time_get()
270 change.time_status.tai_utc_delta_curr = srv->state->time.subsecond; in time_get()
346 srv->state->time.tai_utc_delta_curr = (val >> 1) & BIT_MASK(15); in time_set()
413 change.time_set.tai_utc_delta_curr = srv->state->time.subsecond; in time_set()
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/client/include/
Dtime_scene_client.h70 uint16_t tai_utc_delta_curr : 15; /* Current difference between TAI and UTC in seconds */ member
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/client/
Dtime_scene_client.c190 status->tai_utc_delta_curr = temp & BIT_MASK(15); in time_scene_status()