Searched refs:timeout_ticks (Results 1 – 3 of 3) sorted by relevance
/Zephyr-Core-3.5.0/soc/xtensa/espressif_esp32/esp32s3/ |
D | soc_appcpu.c | 99 uint32_t timeout_ticks = (uint32_t)(1000ULL * rtc_clk_slow_freq_get_hz() / 1000ULL); in esp_restart_noos() local 103 wdt_hal_config_stage(&wdt_ctx, WDT_STAGE0, timeout_ticks, WDT_STAGE_ACTION_RESET_SYSTEM); in esp_restart_noos() 104 wdt_hal_config_stage(&wdt_ctx, WDT_STAGE1, timeout_ticks, WDT_STAGE_ACTION_RESET_RTC); in esp_restart_noos()
|
D | soc.c | 231 uint32_t timeout_ticks = (uint32_t)(1000ULL * rtc_clk_slow_freq_get_hz() / 1000ULL); in esp_restart_noos() local 235 wdt_hal_config_stage(&wdt_ctx, WDT_STAGE0, timeout_ticks, WDT_STAGE_ACTION_RESET_SYSTEM); in esp_restart_noos() 236 wdt_hal_config_stage(&wdt_ctx, WDT_STAGE1, timeout_ticks, WDT_STAGE_ACTION_RESET_RTC); in esp_restart_noos()
|
/Zephyr-Core-3.5.0/drivers/watchdog/ |
D | wdt_counter.c | 107 uint32_t timeout_ticks = counter_us_to_ticks(counter, cfg->window.max * 1000); in wdt_counter_install_timeout() local 117 if (timeout_ticks > max_timeout || timeout_ticks == 0) { in wdt_counter_install_timeout() 127 data->timeout[chan_id] = timeout_ticks; in wdt_counter_install_timeout()
|