Lines Matching full:channel

100 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[0]), ///< Task for capturing the timer value on channel 0.
101 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[1]), ///< Task for capturing the timer value on channel 1.
102 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[2]), ///< Task for capturing the timer value on channel 2.
103 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[3]), ///< Task for capturing the timer value on channel 3.
105 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[4]), ///< Task for capturing the timer value on channel 4.
108 …= offsetof(NRF_TIMER_Type, TASKS_CAPTURE[5]), ///< Task for capturing the timer value on channel 5.
119 …ER_EVENT_COMPARE0 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[0]), ///< Event from compare channel 0.
120 …ER_EVENT_COMPARE1 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[1]), ///< Event from compare channel 1.
121 …ER_EVENT_COMPARE2 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[2]), ///< Event from compare channel 2.
122 …ER_EVENT_COMPARE3 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[3]), ///< Event from compare channel 3.
124 …ER_EVENT_COMPARE4 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[4]), ///< Event from compare channel 4.
127 …ER_EVENT_COMPARE5 = offsetof(NRF_TIMER_Type, EVENTS_COMPARE[5]), ///< Event from compare channel 5.
204 NRF_TIMER_CC_CHANNEL0 = 0, ///< Timer capture/compare channel 0.
205 NRF_TIMER_CC_CHANNEL1, ///< Timer capture/compare channel 1.
206 NRF_TIMER_CC_CHANNEL2, ///< Timer capture/compare channel 2.
207 NRF_TIMER_CC_CHANNEL3, ///< Timer capture/compare channel 3.
209 NRF_TIMER_CC_CHANNEL4, ///< Timer capture/compare channel 4.
212 NRF_TIMER_CC_CHANNEL5, ///< Timer capture/compare channel 5.
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.
341 * @param[in] channel Channel through which to subscribe events.
345 uint8_t channel);
363 * @param[in] channel Channel through which to publish the event.
367 uint8_t channel);
435 * @brief Function for writing the capture/compare register for a specified channel.
438 * @param[in] cc_channel Requested capture/compare channel.
446 * @brief Function for retrieving the capture/compare value for a specified channel.
449 * @param[in] cc_channel Requested capture/compare channel.
459 * @param[in] channel Capture channel.
463 __STATIC_INLINE nrf_timer_task_t nrf_timer_capture_task_get(uint32_t channel);
468 * @param[in] channel Compare channel.
472 __STATIC_INLINE nrf_timer_event_t nrf_timer_compare_event_get(uint32_t channel);
477 * @param[in] channel Compare channel.
481 __STATIC_INLINE nrf_timer_int_mask_t nrf_timer_compare_int_get(uint32_t channel);
577 uint8_t channel) in nrf_timer_subscribe_set() argument
580 ((uint32_t)channel | TIMER_SUBSCRIBE_START_EN_Msk); in nrf_timer_subscribe_set()
591 uint8_t channel) in nrf_timer_publish_set() argument
594 ((uint32_t)channel | TIMER_PUBLISH_COMPARE_EN_Msk); in nrf_timer_publish_set()
655 __STATIC_INLINE nrf_timer_task_t nrf_timer_capture_task_get(uint32_t channel) in nrf_timer_capture_task_get() argument
658 ((uint32_t)NRF_TIMER_TASK_CAPTURE0 + (channel * sizeof(uint32_t))); in nrf_timer_capture_task_get()
661 __STATIC_INLINE nrf_timer_event_t nrf_timer_compare_event_get(uint32_t channel) in nrf_timer_compare_event_get() argument
664 ((uint32_t)NRF_TIMER_EVENT_COMPARE0 + (channel * sizeof(uint32_t))); in nrf_timer_compare_event_get()
667 __STATIC_INLINE nrf_timer_int_mask_t nrf_timer_compare_int_get(uint32_t channel) in nrf_timer_compare_int_get() argument
670 ((uint32_t)NRF_TIMER_INT_COMPARE0_MASK << channel); in nrf_timer_compare_int_get()