Lines Matching refs:channel
148 NRF_STATIC_INLINE nrf_egu_task_t nrf_egu_trigger_task_get(uint8_t channel);
187 NRF_STATIC_INLINE nrf_egu_event_t nrf_egu_triggered_event_get(uint8_t channel);
222 NRF_STATIC_INLINE nrf_egu_int_mask_t nrf_egu_channel_int_get(uint8_t channel);
235 uint8_t channel);
257 uint8_t channel);
312 NRF_STATIC_INLINE nrf_egu_task_t nrf_egu_trigger_task_get(uint8_t channel) in nrf_egu_trigger_task_get() argument
314 return (nrf_egu_task_t)NRFX_OFFSETOF(NRF_EGU_Type, TASKS_TRIGGER[channel]); in nrf_egu_trigger_task_get()
337 NRF_STATIC_INLINE nrf_egu_event_t nrf_egu_triggered_event_get(uint8_t channel) in nrf_egu_triggered_event_get() argument
339 return (nrf_egu_event_t)NRFX_OFFSETOF(NRF_EGU_Type, EVENTS_TRIGGERED[channel]); in nrf_egu_triggered_event_get()
360 NRF_STATIC_INLINE nrf_egu_int_mask_t nrf_egu_channel_int_get(uint8_t channel) in nrf_egu_channel_int_get() argument
362 return (nrf_egu_int_mask_t)((uint32_t) (EGU_INTENSET_TRIGGERED0_Msk << channel)); in nrf_egu_channel_int_get()
368 uint8_t channel) in nrf_egu_subscribe_set() argument
371 ((uint32_t)channel | EGU_SUBSCRIBE_TRIGGER_EN_Msk); in nrf_egu_subscribe_set()
382 uint8_t channel) in nrf_egu_publish_set() argument
385 ((uint32_t)channel | EGU_PUBLISH_TRIGGERED_EN_Msk); in nrf_egu_publish_set()