Home
last modified time | relevance | path

Searched refs:period_ms (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/esp_system/task_wdt/
Dtask_wdt_impl_esp_timer.c25 uint32_t period_ms; member
56 ctx->period_ms = config->timeout_ms; in esp_task_wdt_impl_timer_allocate()
78 ctx->period_ms = config->timeout_ms; in esp_task_wdt_impl_timer_reconfigure()
106 ret = esp_timer_restart(ctx->sw_timer, ctx->period_ms * 1000); in esp_task_wdt_impl_timer_feed()
146 esp_timer_start_periodic(ctx->sw_timer, ctx->period_ms * 1000); in esp_task_wdt_impl_timer_restart()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dmain.c334 int32_t period_ms = bt_mesh_model_pub_period_get(mod); in model_resume() local
336 if (period_ms) { in model_resume()
337 k_delayed_work_submit(&mod->pub->timer, period_ms); in model_resume()
Daccess.c237 int32_t period_ms = 0; in mod_publish() local
242 period_ms = bt_mesh_model_pub_period_get(pub->mod); in mod_publish()
243 BT_INFO("Publish period %u ms", period_ms); in mod_publish()
253 if (period_ms) { in mod_publish()
254 k_delayed_work_submit(&pub->timer, period_ms); in mod_publish()
261 if (!period_ms) { in mod_publish()
Dcfg_srv.c271 int32_t period_ms; in _mod_pub_set() local
273 period_ms = bt_mesh_model_pub_period_get(model); in _mod_pub_set()
274 BT_DBG("period %u ms", period_ms); in _mod_pub_set()
276 if (period_ms) { in _mod_pub_set()
277 k_delayed_work_submit(&model->pub->timer, period_ms); in _mod_pub_set()
3203 int32_t period_ms = 0; in heartbeat_sub_set() local
3247 period_ms = 0; in heartbeat_sub_set()
3254 period_ms = hb_pwr2(sub_period, 1) * 1000U; in heartbeat_sub_set()
3260 BT_DBG("period_ms %u", period_ms); in heartbeat_sub_set()
3262 if (period_ms) { in heartbeat_sub_set()
[all …]