Lines Matching refs:channel
71 static nrfx_err_t channel_free(nrfx_atomic_t * p_allocated_channels, uint8_t channel) in channel_free() argument
74 if (channel == CHANNEL_INVALID) in channel_free()
78 return nrfx_flag32_free(p_allocated_channels, channel); in channel_free()
496 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument
498 (void)channel; in nrfx_gppi_event_endpoint_setup()
504 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument
506 (void)channel; in nrfx_gppi_task_endpoint_setup()
512 void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument
514 (void)channel; in nrfx_gppi_event_endpoint_clear()
520 void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_clear() argument
522 (void)channel; in nrfx_gppi_task_endpoint_clear()
528 void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_setup() argument
531 NRFX_ASSERT(nrfx_flag32_is_allocated(m_virtual_channels, channel)); in nrfx_gppi_fork_endpoint_setup()
533 nrfx_gppi_channels_path_t * p_path = &channels_path[channel]; in nrfx_gppi_fork_endpoint_setup()
550 void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_clear() argument
553 NRFX_ASSERT(nrfx_flag32_is_allocated(m_virtual_channels, channel)); in nrfx_gppi_fork_endpoint_clear()
555 nrfx_gppi_channels_path_t * p_path = &channels_path[channel]; in nrfx_gppi_fork_endpoint_clear()
570 void nrfx_gppi_channel_endpoints_setup(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_setup() argument
578 nrfx_gppi_channels_path_t * p_path = &channels_path[channel]; in nrfx_gppi_channel_endpoints_setup()
648 void nrfx_gppi_channel_endpoints_clear(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_clear() argument
656 nrfx_gppi_channels_path_t * p_path = &channels_path[channel]; in nrfx_gppi_channel_endpoints_clear()
712 nrfx_err_t nrfx_gppi_channel_free(uint8_t channel) in nrfx_gppi_channel_free() argument
717 err = nrfx_flag32_free(&m_virtual_channels, channel); in nrfx_gppi_channel_free()
722 p_path = &channels_path[channel]; in nrfx_gppi_channel_free()
727 bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument
729 nrfx_interconnect_apb_t const * p_src_apb = channels_path[channel].p_src_apb; in nrfx_gppi_channel_check()
730 nrfx_interconnect_apb_t const * p_dst_apb = channels_path[channel].p_dst_apb; in nrfx_gppi_channel_check()
731 uint8_t dppi_channel = channels_path[channel].dppi_channel; in nrfx_gppi_channel_check()
733 NRFX_ASSERT(nrfx_flag32_is_allocated(m_virtual_channels, channel)); in nrfx_gppi_channel_check()
788 nrfx_err_t nrfx_gppi_edge_connection_setup(uint8_t channel, in nrfx_gppi_edge_connection_setup() argument
794 (void)channel; in nrfx_gppi_edge_connection_setup()