Lines Matching full:event

22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
119 …NRF_TIMER_EVENT_COMPARE0 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[0]), ///< Event from compare ch…
120 …NRF_TIMER_EVENT_COMPARE1 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[1]), ///< Event from compare ch…
121 …NRF_TIMER_EVENT_COMPARE2 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[2]), ///< Event from compare ch…
122 …NRF_TIMER_EVENT_COMPARE3 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[3]), ///< Event from compare ch…
124 …NRF_TIMER_EVENT_COMPARE4 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[4]), ///< Event from compare ch…
127 …NRF_TIMER_EVENT_COMPARE5 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[5]), ///< Event from compare ch…
221 …_COMPARE0_MASK = TIMER_INTENSET_COMPARE0_Msk, ///< Timer interrupt from compare event on channel 0.
222 …_COMPARE1_MASK = TIMER_INTENSET_COMPARE1_Msk, ///< Timer interrupt from compare event on channel 1.
223 …_COMPARE2_MASK = TIMER_INTENSET_COMPARE2_Msk, ///< Timer interrupt from compare event on channel 2.
224 …_COMPARE3_MASK = TIMER_INTENSET_COMPARE3_Msk, ///< Timer interrupt from compare event on channel 3.
226 …_COMPARE4_MASK = TIMER_INTENSET_COMPARE4_Msk, ///< Timer interrupt from compare event on channel 4.
229 …_COMPARE5_MASK = TIMER_INTENSET_COMPARE5_Msk, ///< Timer interrupt from compare event on channel 5.
255 * @brief Function for clearing a specific timer event.
258 * @param[in] event Event to clear.
261 nrf_timer_event_t event);
264 * @brief Function for checking the state of a specific timer event.
267 * @param[in] event Event to check.
269 * @retval true If the event is set.
270 * @retval false If the event is not set.
273 nrf_timer_event_t event);
276 * @brief Function for getting the address of a specific timer event register.
279 * @param[in] event Requested event.
281 * @return Address of the specified event register.
284 nrf_timer_event_t event);
359 * TIMER event.
362 * @param[in] event Event for which to set the configuration.
363 * @param[in] channel Channel through which to publish the event.
366 nrf_timer_event_t event,
371 * TIMER event.
374 * @param[in] event Event for which to clear the configuration.
377 nrf_timer_event_t event);
466 * @brief Function for getting a specific timer compare event.
470 * @return Compare event.
523 nrf_timer_event_t event) in nrf_timer_event_clear() argument
525 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)event)) = 0x0UL; in nrf_timer_event_clear()
527 volatile uint32_t dummy = *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)event)); in nrf_timer_event_clear()
533 nrf_timer_event_t event) in nrf_timer_event_check() argument
535 return (bool)*(volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)event); in nrf_timer_event_check()
539 nrf_timer_event_t event) in nrf_timer_event_address_get() argument
541 return (uint32_t *)((uint8_t *)p_reg + (uint32_t)event); in nrf_timer_event_address_get()
590 nrf_timer_event_t event, in nrf_timer_publish_set() argument
593 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) event + 0x80uL)) = in nrf_timer_publish_set()
598 nrf_timer_event_t event) in nrf_timer_publish_clear() argument
600 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) event + 0x80uL)) = 0; in nrf_timer_publish_clear()