Lines Matching refs:channel
99 nrfx_err_t nrfx_ppi_channel_free(nrf_ppi_channel_t channel);
112 nrfx_err_t nrfx_ppi_channel_assign(nrf_ppi_channel_t channel, uint32_t eep, uint32_t tep);
124 nrfx_err_t nrfx_ppi_channel_fork_assign(nrf_ppi_channel_t channel, uint32_t fork_tep);
135 nrfx_err_t nrfx_ppi_channel_enable(nrf_ppi_channel_t channel);
146 nrfx_err_t nrfx_ppi_channel_disable(nrf_ppi_channel_t channel);
177 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel);
204 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_include_in_group(nrf_ppi_channel_t channel,
232 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_remove_from_group(nrf_ppi_channel_t channel,
296 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel) in nrfx_ppi_channel_to_mask() argument
298 return (1uL << (uint32_t) channel); in nrfx_ppi_channel_to_mask()
301 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_include_in_group(nrf_ppi_channel_t channel, in nrfx_ppi_channel_include_in_group() argument
304 return nrfx_ppi_channels_include_in_group(nrfx_ppi_channel_to_mask(channel), group); in nrfx_ppi_channel_include_in_group()
307 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_remove_from_group(nrf_ppi_channel_t channel, in nrfx_ppi_channel_remove_from_group() argument
310 return nrfx_ppi_channels_remove_from_group(nrfx_ppi_channel_to_mask(channel), group); in nrfx_ppi_channel_remove_from_group()