Lines Matching refs:period
76 uint64_t period:56; member
191 const uint64_t period = timer->period; in esp_timer_restart() local
202 if (period != 0) { in esp_timer_restart()
206 timer->period = new_period; in esp_timer_restart()
210 timer->period = 0; in esp_timer_restart()
243 timer->period = 0; in esp_timer_start_once()
273 timer->period = period_us; in esp_timer_start_periodic()
325 timer->period = 0; in esp_timer_delete()
366 timer->period = 0; in timer_remove()
450 if (it->period > 0) { in timer_process_alarm()
451 int skipped = (now - it->alarm) / it->period; in timer_process_alarm()
453 it->alarm = now + it->period; in timer_process_alarm()
458 it->alarm += it->period; in timer_process_alarm()
634 (uint64_t)t->period, t->alarm, t->times_armed,
639 …size_t cb = snprintf(*dst, *dst_size, "timer@%-14p %-10lld %-12lld\n", t, (uint64_t)t->period, t…
751 esp_err_t IRAM_ATTR esp_timer_get_period(esp_timer_handle_t timer, uint64_t *period)
753 if (timer == NULL || period == NULL) {
760 *period = timer->period;
772 if (timer->period > 0) {