Home
last modified time | relevance | path

Searched refs:uncertainty (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/
Dtime_scene_server.h82 uint8_t uncertainty; member
261 uint8_t uncertainty; member
269 uint8_t uncertainty; member
319 uint8_t uncertainty; member
368 uint8_t uncertainty; member
Dgeneric_server.h125 uint16_t uncertainty; member
247 uint16_t uncertainty; member
338 uint16_t uncertainty; member
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_time_scene_model_api.h76 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
168 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
482 uint8_t uncertainty; /*!< The value of the Uncertainty field */ member
654 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
664 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
751 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
827 uint8_t uncertainty; /*!< The estimated uncertainty in 10-millisecond steps */ member
Desp_ble_mesh_generic_model_api.h233 uint16_t uncertainty; /*!< Uncertainty */ member
381 uint16_t uncertainty; /*!< Uncertainty */ member
896 uint16_t uncertainty; /*!< The value of the Uncertainty field */ member
1035 uint16_t uncertainty; /*!< The Uncertainty value of Generic Location state */ member
1189 uint16_t uncertainty; /*!< Uncertainty */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/
Dtime_scene_client.h49 uint8_t uncertainty; /* The estimated uncertainty in 10-millisecond steps */ member
76 uint8_t uncertainty; /* The estimated uncertainty in 10-millisecond steps */ member
Dgeneric_client.h279 uint16_t uncertainty; /* Uncertainty */ member
293 uint16_t uncertainty; /* Uncertainty */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/
Dtime_scene_server.c89 net_buf_simple_add_u8(msg, srv->state->time.uncertainty); in send_time_status()
99 net_buf_simple_add_u8(msg, srv->state->time.uncertainty); in send_time_status()
228 status.time_status.uncertainty = net_buf_simple_pull_u8(buf); in time_get()
251 srv->state->time.uncertainty = net_buf_simple_pull_u8(buf); in time_get()
260 change.time_status.uncertainty = srv->state->time.uncertainty; in time_get()
324 set.time_set.uncertainty = net_buf_simple_pull_u8(buf); in time_set()
336 srv->state->time.uncertainty = net_buf_simple_pull_u8(buf); in time_set()
404 change.time_set.uncertainty = srv->state->time.uncertainty; in time_set()
Dgeneric_server.c1371 net_buf_simple_add_le16(msg, srv->state->uncertainty); in send_gen_location_status()
1378 net_buf_simple_add_le16(msg, srv->state->uncertainty); in send_gen_location_status()
1492 uint16_t uncertainty = net_buf_simple_pull_le16(buf); in gen_location_set() local
1501 .loc_local_set.uncertainty = uncertainty, in gen_location_set()
1520 srv->state->uncertainty = uncertainty; in gen_location_set()
1527 .gen_loc_local_set.uncertainty = srv->state->uncertainty, in gen_location_set()
/hal_espressif-latest/components/bt/controller/esp32c3/
Dbt.c785 uint32_t uncertainty = (us_to_sleep >> 11); in btdm_sleep_enter_phase1_wrapper() local
789 uncertainty = us_to_sleep * BTDM_RTC_SLOW_CLK_RC_DRIFT_PERCENT / 100; in btdm_sleep_enter_phase1_wrapper()
793 if (uncertainty < BTDM_MIN_TIMER_UNCERTAINTY_US) { in btdm_sleep_enter_phase1_wrapper()
794 uncertainty = BTDM_MIN_TIMER_UNCERTAINTY_US; in btdm_sleep_enter_phase1_wrapper()
799 if (esp_timer_start_once(s_btdm_slp_tmr, us_to_sleep - uncertainty) == ESP_OK) { in btdm_sleep_enter_phase1_wrapper()
/hal_espressif-latest/zephyr/esp32c3/src/bt/
Desp_bt_adapter.c798 uint32_t uncertainty = (us_to_sleep >> 11); in btdm_sleep_enter_phase1_wrapper() local
799 if (uncertainty < BTDM_MIN_TIMER_UNCERTAINTY_US) { in btdm_sleep_enter_phase1_wrapper()
800 uncertainty = BTDM_MIN_TIMER_UNCERTAINTY_US; in btdm_sleep_enter_phase1_wrapper()
804 if (esp_timer_start_once(s_btdm_slp_tmr, us_to_sleep - uncertainty) == ESP_OK) { in btdm_sleep_enter_phase1_wrapper()
/hal_espressif-latest/zephyr/esp32s3/src/bt/
Desp_bt_adapter.c787 uint32_t uncertainty = (us_to_sleep >> 11); in btdm_sleep_enter_phase1_wrapper() local
788 if (uncertainty < BTDM_MIN_TIMER_UNCERTAINTY_US) { in btdm_sleep_enter_phase1_wrapper()
789 uncertainty = BTDM_MIN_TIMER_UNCERTAINTY_US; in btdm_sleep_enter_phase1_wrapper()
793 if (esp_timer_start_once(s_btdm_slp_tmr, us_to_sleep - uncertainty) == ESP_OK) { in btdm_sleep_enter_phase1_wrapper()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/
Dtime_scene_client.c142 status->uncertainty = net_buf_simple_pull_u8(buf); in time_scene_status()
412 net_buf_simple_add_u8(msg, set->uncertainty); in time_scene_set_state()
Dgeneric_client.c374 status->uncertainty = net_buf_simple_pull_le16(buf); in generic_status()
858 net_buf_simple_add_le16(msg, set->uncertainty); in gen_set_state()
/hal_espressif-latest/components/bt/controller/esp32/
Dbt.c947 uint32_t uncertainty = (us_to_sleep >> 11); in btdm_sleep_enter_phase1_wrapper() local
948 if (uncertainty < BTDM_MIN_TIMER_UNCERTAINTY_US) { in btdm_sleep_enter_phase1_wrapper()
949 uncertainty = BTDM_MIN_TIMER_UNCERTAINTY_US; in btdm_sleep_enter_phase1_wrapper()
952 if (esp_timer_start_once(s_btdm_slp_tmr, us_to_sleep - uncertainty) != ESP_OK) { in btdm_sleep_enter_phase1_wrapper()