Home
last modified time | relevance | path

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

/hal_espressif-latest/components/hal/
Dtimer_hal.c42 void timer_hal_set_counter_value(timer_hal_context_t *hal, uint64_t load_val) in timer_hal_set_counter_value() argument
52 timer_ll_set_reload_value(hal->dev, hal->timer_id, load_val); in timer_hal_set_counter_value()
/hal_espressif-latest/components/hal/esp32/include/hal/
Dtimer_ll.h183 static inline void timer_ll_set_reload_value(timg_dev_t *hw, uint32_t timer_num, uint64_t load_val) in timer_ll_set_reload_value() argument
185 hw->hw_timer[timer_num].loadhi.tx_load_hi = (uint32_t) (load_val >> 32); in timer_ll_set_reload_value()
186 hw->hw_timer[timer_num].loadlo.tx_load_lo = (uint32_t) load_val; in timer_ll_set_reload_value()
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dtimer_ll.h187 static inline void timer_ll_set_reload_value(timg_dev_t *hw, uint32_t timer_num, uint64_t load_val) in timer_ll_set_reload_value() argument
189 hw->hw_timer[timer_num].loadhi.tx_load_hi = (uint32_t) (load_val >> 32); in timer_ll_set_reload_value()
190 hw->hw_timer[timer_num].loadlo.tx_load_lo = (uint32_t) load_val; in timer_ll_set_reload_value()
/hal_espressif-latest/components/hal/esp32c2/include/hal/
Dtimer_ll.h183 static inline void timer_ll_set_reload_value(timg_dev_t *hw, uint32_t timer_num, uint64_t load_val) in timer_ll_set_reload_value() argument
185 hw->hw_timer[timer_num].loadhi.tx_load_hi = (uint32_t) (load_val >> 32); in timer_ll_set_reload_value()
186 hw->hw_timer[timer_num].loadlo.tx_load_lo = (uint32_t) load_val; in timer_ll_set_reload_value()
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dtimer_ll.h183 static inline void timer_ll_set_reload_value(timg_dev_t *hw, uint32_t timer_num, uint64_t load_val) in timer_ll_set_reload_value() argument
185 hw->hw_timer[timer_num].loadhi.tx_load_hi = (uint32_t) (load_val >> 32); in timer_ll_set_reload_value()
186 hw->hw_timer[timer_num].loadlo.tx_load_lo = (uint32_t) load_val; in timer_ll_set_reload_value()
/hal_espressif-latest/components/hal/include/hal/
Dtimer_hal.h53 void timer_hal_set_counter_value(timer_hal_context_t *hal, uint64_t load_val);
/hal_espressif-latest/components/driver/deprecated/driver/
Dtimer.h60 esp_err_t timer_set_counter_value(timer_group_t group_num, timer_idx_t timer_num, uint64_t load_val
/hal_espressif-latest/components/driver/deprecated/
Dtimer_legacy.c88 esp_err_t timer_set_counter_value(timer_group_t group_num, timer_idx_t timer_num, uint64_t load_val) in timer_set_counter_value() argument
94 timer_hal_set_counter_value(&(p_timer_obj[group_num][timer_num]->hal), load_val); in timer_set_counter_value()