Function esp_idf_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