Function esp_idf_hal::sys::ets_timer_arm
source ยท pub unsafe extern "C" fn ets_timer_arm(
timer: *mut _ETSTIMER_,
tmout: u32,
repeat: bool,
)
Expand description
@brief Arm an ets timer, this timer range is 640 us to 429496 ms. In FreeRTOS, please call FreeRTOS apis, never call this api.
@param ETSTimer *timer : Timer struct pointer.
@param uint32_t tmout : Timer value in ms, range is 1 to 429496.
@param bool repeat : Timer is periodic repeated.
@return None