Function esp_idf_sys::ets_timer_arm_us
source ยท pub unsafe extern "C" fn ets_timer_arm_us(
ptimer: *mut ETSTimer,
us: 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 us, range is 1 to 429496729.
@param bool repeat : Timer is periodic repeated.
@return None