Lines Matching refs:channel

173 __STATIC_INLINE bool nrfx_gppi_channel_check(uint8_t channel);
207 __STATIC_INLINE void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep);
218 __STATIC_INLINE void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep);
227 __STATIC_INLINE void nrfx_gppi_channel_endpoints_setup(uint8_t channel,
238 __STATIC_INLINE void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep);
247 __STATIC_INLINE void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep);
258 __STATIC_INLINE void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep);
267 __STATIC_INLINE void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep);
347 __STATIC_INLINE bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument
349 return (nrf_ppi_channel_enable_get(NRF_PPI, (nrf_ppi_channel_t)channel) == in nrfx_gppi_channel_check()
368 __STATIC_INLINE void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument
370 nrf_ppi_event_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, eep); in nrfx_gppi_event_endpoint_setup()
373 __STATIC_INLINE void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument
375 nrf_ppi_task_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, tep); in nrfx_gppi_task_endpoint_setup()
378 __STATIC_INLINE void nrfx_gppi_channel_endpoints_setup(uint8_t channel, in nrfx_gppi_channel_endpoints_setup() argument
382 nrf_ppi_channel_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, eep, tep); in nrfx_gppi_channel_endpoints_setup()
385 __STATIC_INLINE void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument
388 nrf_ppi_event_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, 0); in nrfx_gppi_event_endpoint_clear()
391 __STATIC_INLINE void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_clear() argument
394 nrf_ppi_task_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, 0); in nrfx_gppi_task_endpoint_clear()
398 __STATIC_INLINE void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_setup() argument
400 nrf_ppi_fork_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, fork_tep); in nrfx_gppi_fork_endpoint_setup()
403 __STATIC_INLINE void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_clear() argument
406 nrf_ppi_fork_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, 0); in nrfx_gppi_fork_endpoint_clear()
463 __STATIC_INLINE bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument
465 return nrf_dppi_channel_check(NRF_DPPIC, channel); in nrfx_gppi_channel_check()
488 __STATIC_INLINE void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument
491 *((volatile uint32_t *)(eep + 0x80uL)) = ((uint32_t)channel | DPPIC_SUBSCRIBE_CHG_EN_EN_Msk); in nrfx_gppi_event_endpoint_setup()
494 __STATIC_INLINE void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument
497 *((volatile uint32_t *)(tep + 0x80uL)) = ((uint32_t)channel | DPPIC_SUBSCRIBE_CHG_EN_EN_Msk); in nrfx_gppi_task_endpoint_setup()
500 __STATIC_INLINE void nrfx_gppi_channel_endpoints_setup(uint8_t channel, in nrfx_gppi_channel_endpoints_setup() argument
504 nrfx_gppi_event_endpoint_setup(channel, eep); in nrfx_gppi_channel_endpoints_setup()
505 nrfx_gppi_task_endpoint_setup(channel, tep); in nrfx_gppi_channel_endpoints_setup()
508 __STATIC_INLINE void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument
511 (void)channel; in nrfx_gppi_event_endpoint_clear()
515 __STATIC_INLINE void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_clear() argument
518 (void)channel; in nrfx_gppi_task_endpoint_clear()
522 __STATIC_INLINE void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_setup() argument
524 nrfx_gppi_task_endpoint_setup(channel, fork_tep); in nrfx_gppi_fork_endpoint_setup()
527 __STATIC_INLINE void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep) in nrfx_gppi_fork_endpoint_clear() argument
529 nrfx_gppi_task_endpoint_clear(channel, fork_tep); in nrfx_gppi_fork_endpoint_clear()