Lines Matching refs:channel
45 bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument
47 return nrfy_dppi_channel_check(NRF_DPPIC, channel); in nrfx_gppi_channel_check()
70 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument
73 NRF_DPPI_ENDPOINT_SETUP(eep, channel); in nrfx_gppi_event_endpoint_setup()
76 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument
79 NRF_DPPI_ENDPOINT_SETUP(tep, channel); in nrfx_gppi_task_endpoint_setup()
82 void nrfx_gppi_channel_endpoints_setup(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_setup() argument
84 nrfx_gppi_event_endpoint_setup(channel, eep); in nrfx_gppi_channel_endpoints_setup()
85 nrfx_gppi_task_endpoint_setup(channel, tep); in nrfx_gppi_channel_endpoints_setup()
88 void nrfx_gppi_channel_endpoints_clear(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_clear() argument
90 nrfx_gppi_event_endpoint_clear(channel, eep); in nrfx_gppi_channel_endpoints_clear()
91 nrfx_gppi_task_endpoint_clear(channel, tep); in nrfx_gppi_channel_endpoints_clear()
94 void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument
97 (void)channel; in nrfx_gppi_event_endpoint_clear()
101 void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_clear() argument
104 (void)channel; in nrfx_gppi_task_endpoint_clear()
108 void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_setup() argument
110 nrfx_gppi_task_endpoint_setup(channel, fork_tep); in nrfx_gppi_fork_endpoint_setup()
113 void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_clear() argument
115 nrfx_gppi_task_endpoint_clear(channel, fork_tep); in nrfx_gppi_fork_endpoint_clear()
186 nrfx_err_t nrfx_gppi_channel_free(uint8_t channel) in nrfx_gppi_channel_free() argument
190 return nrfx_dppi_channel_free(&dppi, channel); in nrfx_gppi_channel_free()
192 return nrfx_dppi_channel_free(channel); in nrfx_gppi_channel_free()
195 (void)channel; in nrfx_gppi_channel_free()
228 nrfx_err_t nrfx_gppi_edge_connection_setup(uint8_t channel, in nrfx_gppi_edge_connection_setup() argument
234 (void)channel; in nrfx_gppi_edge_connection_setup()