Lines Matching full:channel
137 nrfx_err_t nrfx_rtc_cc_disable(nrfx_rtc_t const * const p_instance, uint32_t channel) in nrfx_rtc_cc_disable() argument
140 NRFX_ASSERT(channel<p_instance->cc_channel_count); in nrfx_rtc_cc_disable()
143 uint32_t int_mask = RTC_CHANNEL_INT_MASK(channel); in nrfx_rtc_cc_disable()
144 nrf_rtc_event_t event = RTC_CHANNEL_EVENT_ADDR(channel); in nrfx_rtc_cc_disable()
160 NRFX_LOG_INFO("RTC id: %d, channel disabled: %lu.", p_instance->instance_id, channel); in nrfx_rtc_cc_disable()
167 uint32_t channel, in nrfx_rtc_cc_set() argument
172 NRFX_ASSERT(channel<p_instance->cc_channel_count); in nrfx_rtc_cc_set()
175 uint32_t int_mask = RTC_CHANNEL_INT_MASK(channel); in nrfx_rtc_cc_set()
176 nrf_rtc_event_t event = RTC_CHANNEL_EVENT_ADDR(channel); in nrfx_rtc_cc_set()
184 nrf_rtc_cc_set(p_instance->p_reg,channel,val); in nrfx_rtc_cc_set()
202 nrf_rtc_cc_set(p_instance->p_reg,channel,val); in nrfx_rtc_cc_set()
212 NRFX_LOG_INFO("RTC id: %d, channel enabled: %lu, compare value: %lu.", in nrfx_rtc_cc_set()
214 channel, in nrfx_rtc_cc_set()