Home
last modified time | relevance | path

Searched refs:time_us (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/components/esp_timer/src/
Dets_timer_legacy.c72 void IRAM_ATTR ets_timer_arm_us(ETSTimer *ptimer, uint32_t time_us, bool repeat_flag) in ets_timer_arm_us() argument
77 ESP_ERROR_CHECK( esp_timer_start_once(ESP_TIMER(ptimer), time_us) ); in ets_timer_arm_us()
79 ESP_ERROR_CHECK( esp_timer_start_periodic(ESP_TIMER(ptimer), time_us) ); in ets_timer_arm_us()
85 uint64_t time_us = 1000LL * (uint64_t) time_ms; in ets_timer_arm() local
89 ESP_ERROR_CHECK( esp_timer_start_once(ESP_TIMER(ptimer), time_us) ); in ets_timer_arm()
91 ESP_ERROR_CHECK( esp_timer_start_periodic(ESP_TIMER(ptimer), time_us) ); in ets_timer_arm()
/hal_espressif-latest/components/newlib/port/
Desp_time_impl.c92 void esp_time_impl_set_boot_time(uint64_t time_us) in esp_time_impl_set_boot_time() argument
96 REG_WRITE(RTC_BOOT_TIME_LOW_REG, (uint32_t) (time_us & 0xffffffff)); in esp_time_impl_set_boot_time()
97 REG_WRITE(RTC_BOOT_TIME_HIGH_REG, (uint32_t) (time_us >> 32)); in esp_time_impl_set_boot_time()
99 s_boot_time = time_us; in esp_time_impl_set_boot_time()
/hal_espressif-latest/components/esp_rom/patches/
Desp_rom_systimer.c57 …stimer_hal_counter_value_advance(systimer_hal_context_t *hal, uint32_t counter_id, int64_t time_us) in systimer_hal_counter_value_advance() argument
60 .val = systimer_hal_get_counter_value(hal, counter_id) + hal->us_to_ticks(time_us), in systimer_hal_counter_value_advance()
/hal_espressif-latest/components/esp_timer/private_include/
Desp_timer_impl.h97 void esp_timer_impl_advance(int64_t time_us);
/hal_espressif-latest/components/hal/
Dsystimer_hal.c137 …stimer_hal_counter_value_advance(systimer_hal_context_t *hal, uint32_t counter_id, int64_t time_us) in systimer_hal_counter_value_advance() argument
140 .val = systimer_hal_get_counter_value(hal, counter_id) + hal->us_to_ticks(time_us), in systimer_hal_counter_value_advance()
/hal_espressif-latest/components/hal/include/hal/
Dsystimer_hal.h110 …timer_hal_counter_value_advance(systimer_hal_context_t *hal, uint32_t counter_id, int64_t time_us);
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
Dpmu_sleep.c96 #define rtc_time_us_to_fastclk(time_us, period) rtc_time_us_to_slowclk((time_us), (period)) argument
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/
Dpmu_sleep.c156 #define rtc_time_us_to_fastclk(time_us, period) rtc_time_us_to_slowclk((time_us), (period)) argument