Lines Matching refs:channel
105 nrfx_err_t nrfx_ppi_channel_free(nrf_ppi_channel_t channel);
118 nrfx_err_t nrfx_ppi_channel_assign(nrf_ppi_channel_t channel, uint32_t eep, uint32_t tep);
130 nrfx_err_t nrfx_ppi_channel_fork_assign(nrf_ppi_channel_t channel, uint32_t fork_tep);
141 nrfx_err_t nrfx_ppi_channel_enable(nrf_ppi_channel_t channel);
152 nrfx_err_t nrfx_ppi_channel_disable(nrf_ppi_channel_t channel);
187 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel);
214 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_include_in_group(nrf_ppi_channel_t channel,
242 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_remove_from_group(nrf_ppi_channel_t channel,
306 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel) in nrfx_ppi_channel_to_mask() argument
308 return (1uL << (uint32_t) channel); in nrfx_ppi_channel_to_mask()
311 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
314 return nrfx_ppi_channels_include_in_group(nrfx_ppi_channel_to_mask(channel), group); in nrfx_ppi_channel_include_in_group()
317 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
320 return nrfx_ppi_channels_remove_from_group(nrfx_ppi_channel_to_mask(channel), group); in nrfx_ppi_channel_remove_from_group()