Function esp_idf_sys::esp_timer_restart
source ยท pub unsafe extern "C" fn esp_timer_restart(
timer: esp_timer_handle_t,
timeout_us: u64,
) -> esp_err_t
Expand description
@brief Restart a currently running timer
If the given timer is a one-shot timer, the timer is restarted immediately and will timeout once in timeout_us
microseconds.
If the given timer is a periodic timer, the timer is restarted immediately with a new period of timeout_us
microseconds.
@param timer timer Handle created using esp_timer_create @param timeout_us Timeout, in microseconds relative to the current time. In case of a periodic timer, also represents the new period. @return - ESP_OK on success - ESP_ERR_INVALID_ARG if the handle is invalid - ESP_ERR_INVALID_STATE if the timer is not running