Home
last modified time | relevance | path

Searched refs:timer (Results 1 – 20 of 20) sorted by relevance

/external/platform/pico/rp2_common/hardware_dma/
A Ddma.c54 void dma_timer_claim(uint timer) { in dma_timer_claim() argument
55 check_dma_timer_param(timer); in dma_timer_claim()
56 hw_claim_or_assert(&_timer_claimed, timer, "DMA timer %d is already claimed"); in dma_timer_claim()
59 void dma_timer_unclaim(uint timer) { in dma_timer_unclaim() argument
60 check_dma_timer_param(timer); in dma_timer_unclaim()
61 hw_claim_clear(&_timer_claimed, timer); in dma_timer_unclaim()
68 bool dma_timer_is_claimed(uint timer) { in dma_timer_is_claimed() argument
69 check_dma_timer_param(timer); in dma_timer_is_claimed()
70 return hw_is_claimed(&_timer_claimed, timer); in dma_timer_is_claimed()
/external/platform/nrfx/drivers/src/
A Dnrfx_nfct.c210 nrfx_timer_clear(&m_timer_workaround.timer); in nrfx_nfct_field_event_handler()
211 nrfx_timer_enable(&m_timer_workaround.timer); in nrfx_nfct_field_event_handler()
213 nrfx_timer_clear(&m_timer_workaround.timer); in nrfx_nfct_field_event_handler()
214 nrfx_timer_enable(&m_timer_workaround.timer); in nrfx_nfct_field_event_handler()
269 nrfx_timer_clear(&m_timer_workaround.timer); in nrfx_nfct_activate_check()
270 nrfx_timer_enable(&m_timer_workaround.timer); in nrfx_nfct_activate_check()
325 nrfx_timer_disable(&m_timer_workaround.timer); in nrfx_nfct_field_poll()
356 nrfx_timer_disable(&m_timer_workaround.timer); in nrfx_nfct_field_timer_handler()
374 err_code = nrfx_timer_init(&m_timer_workaround.timer, in nrfx_nfct_field_timer_config()
382 nrfx_timer_extended_compare(&m_timer_workaround.timer, in nrfx_nfct_field_timer_config()
[all …]
/external/platform/lpc15xx/lpcopen/usbd_rom_hid_keyboard/example/src/
A Dms_timer.c68 ms_timer_t timer; in ms_timerDelay() local
70 ms_timerInit(&timer, n); in ms_timerDelay()
72 while (ms_timerExpired(&timer) == false) { in ms_timerDelay()
/external/platform/pico/rp2_common/pico_btstack/
A Dbtstack_run_loop_async_context.c56 static void btstack_run_loop_async_context_add_timer(btstack_timer_source_t *timer) { in btstack_run_loop_async_context_add_timer() argument
58 btstack_run_loop_base_add_timer(timer); in btstack_run_loop_async_context_add_timer()
63 static bool btstack_run_loop_async_context_remove_timer(btstack_timer_source_t *timer) { in btstack_run_loop_async_context_remove_timer() argument
65 bool rc = btstack_run_loop_base_remove_timer(timer); in btstack_run_loop_async_context_remove_timer()
/external/lib/lwip/core/ipv4/
A Digmp.c332 group->timer = 0; /* Not running */ in igmp_lookup_group()
489 group->timer = 0; /* stopped */ in igmp_input()
660 if (group->timer > 0) { in igmp_tmr()
661 group->timer--; in igmp_tmr()
662 if (group->timer == 0) { in igmp_tmr()
705 group->timer = (LWIP_RAND() % (max_time - 1)) + 1; in igmp_start_timer()
719 ((group->timer == 0) || (maxresp < group->timer)))) { in igmp_delaying_member()
A Dip_frag.c130 if (r->timer > 0) { in ip_reass_tmr()
131 r->timer--; in ip_reass_tmr()
132 LWIP_DEBUGF(IP_REASS_DEBUG, ("ip_reass_tmr: timer dec %"U16_F"\n",(u16_t)r->timer)); in ip_reass_tmr()
243 } else if (r->timer <= oldest->timer) { in ip_reass_remove_oldest_datagram()
288 ipr->timer = IP_REASS_MAXAGE; in ip_reass_enqueue_new_datagram()
/external/platform/pico/rp2_common/hardware_dma/include/hardware/
A Ddma.h838 void dma_timer_claim(uint timer);
847 void dma_timer_unclaim(uint timer);
864 bool dma_timer_is_claimed(uint timer);
876 static inline void dma_timer_set_fraction(uint timer, uint16_t numerator, uint16_t denominator) { in dma_timer_set_fraction() argument
877 check_dma_timer_param(timer); in dma_timer_set_fraction()
878 …dma_hw->timer[timer] = (((uint32_t)numerator) << DMA_TIMER0_X_LSB) | (((uint32_t)denominator) << D… in dma_timer_set_fraction()
/external/platform/lpc15xx/lpcopen/periph_pmu/example/
A Dreadme.dox35 * The PMU example demonstrates power state change using the RTC timer to wake-up
38 * The wakeup timer is configurable, allowing the user to select the time delay
40 * will wakeup from the RTC timer event. PMU power modes tested are:<br>
/external/platform/lpc15xx/lpcopen/periph_pmu_rom/example/
A Dreadme.dox35 * The PMU example demonstrates power state change using the RTC timer to wake-up
38 * The wakeup timer is configurable, allowing the user to select the time delay
40 * will wakeup from the RTC timer event. PMU power modes tested are:<br>
/external/platform/pico/common/pico_time/
A Dtime.c359 bool cancel_repeating_timer(repeating_timer_t *timer) { in cancel_repeating_timer() argument
361 if (timer->alarm_id) { in cancel_repeating_timer()
362 rc = alarm_pool_cancel_alarm(timer->pool, timer->alarm_id); in cancel_repeating_timer()
363 timer->alarm_id = 0; in cancel_repeating_timer()
/external/platform/lpc15xx/lpcopen/periph_systick/example/
A Dreadme.dox2 * @brief Systick example using systick timer, the SYSTICK clock divider, and the LED
36 * timer and SYSTICK clock divider. The LED state is toggled in the systick
49 * rate could not be changed or the SYSTICK timer clock disabled as described in the UM.
/external/lib/lwip/include/ipv4/lwip/
A Dip_frag.h60 u8_t timer; member
A Digmp.h84 u16_t timer; member
/external/platform/lpc15xx/lpcopen/periph_dac/example/
A Dreadme.dox38 * It uses the internal timer as a trigger source for generating DAC interrupts
39 * The timer is set up to generate interrupts at 2KHz i.e. 20 DAC output samples
/external/platform/stellaris/ti-driverlib/
A Drules.mk34 $(LOCAL_DIR)/driverlib/timer.c \
/external/platform/pico/rp2040/hardware_structs/include/hardware/structs/
A Ddma.h153 io_rw_32 timer[NUM_DMA_TIMERS]; // 4
/external/platform/stellaris/ti-driverlib/driverlib/
A DMakefile.driverlib-cm395 ${COMPILER}-cm3/libdriver-cm3.a: ${COMPILER}-cm3/timer.o
A DMakefile.driverlib-cm4f95 ${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/timer.o
/external/platform/pico/common/pico_time/include/pico/
A Dtime.h778 bool cancel_repeating_timer(repeating_timer_t *timer);
/external/platform/cc13xx/cc13xxware/startup_files/
A Dstartup_keil.s107 DCD WatchdogIntHandler ; 14 Watchdog timer

Completed in 23 milliseconds