Lines Matching refs:channel
12 void nrf_ppi_channel_enable(NRF_PPI_Type * p_reg, nrf_ppi_channel_t channel) in nrf_ppi_channel_enable() argument
14 p_reg->CHENSET = (1 << channel); in nrf_ppi_channel_enable()
18 void nrf_ppi_channel_disable(NRF_PPI_Type * p_reg, nrf_ppi_channel_t channel) in nrf_ppi_channel_disable() argument
20 p_reg->CHENCLR = (1 << channel); in nrf_ppi_channel_disable()
37 nrf_ppi_channel_t channel, in nrf_ppi_channel_endpoint_setup() argument
41 p_reg->CH[(uint32_t) channel].EEP = eep; in nrf_ppi_channel_endpoint_setup()
42 nrf_ppi_regw_sideeffects_EEP(channel); in nrf_ppi_channel_endpoint_setup()
43 p_reg->CH[(uint32_t) channel].TEP = tep; in nrf_ppi_channel_endpoint_setup()
44 nrf_ppi_regw_sideeffects_TEP(channel); in nrf_ppi_channel_endpoint_setup()
48 nrf_ppi_channel_t channel, in nrf_ppi_event_endpoint_setup() argument
51 p_reg->CH[(uint32_t) channel].EEP = eep; in nrf_ppi_event_endpoint_setup()
52 nrf_ppi_regw_sideeffects_EEP(channel); in nrf_ppi_event_endpoint_setup()
56 nrf_ppi_channel_t channel, in nrf_ppi_task_endpoint_setup() argument
59 p_reg->CH[(uint32_t) channel].TEP = tep; in nrf_ppi_task_endpoint_setup()
60 nrf_ppi_regw_sideeffects_TEP(channel); in nrf_ppi_task_endpoint_setup()
64 nrf_ppi_channel_t channel, in nrf_ppi_fork_endpoint_setup() argument
67 p_reg->FORK[(uint32_t) channel].TEP = fork_tep; in nrf_ppi_fork_endpoint_setup()
68 nrf_ppi_regw_sideeffects_FORK_TEP(channel); in nrf_ppi_fork_endpoint_setup()