Lines Matching refs:p_instance
216 nrfx_err_t nrfx_pwm_init(nrfx_pwm_t const * p_instance,
231 nrfx_err_t nrfx_pwm_reconfigure(nrfx_pwm_t const * p_instance, nrfx_pwm_config_t const * p_config);
240 void nrfx_pwm_uninit(nrfx_pwm_t const * p_instance);
250 bool nrfx_pwm_init_check(nrfx_pwm_t const * p_instance);
284 uint32_t nrfx_pwm_simple_playback(nrfx_pwm_t const * p_instance,
312 uint32_t nrfx_pwm_complex_playback(nrfx_pwm_t const * p_instance,
325 NRFX_STATIC_INLINE void nrfx_pwm_step(nrfx_pwm_t const * p_instance);
350 bool nrfx_pwm_stop(nrfx_pwm_t const * p_instance, bool wait_until_stopped);
360 bool nrfx_pwm_stopped_check(nrfx_pwm_t const * p_instance);
369 NRFX_STATIC_INLINE void nrfx_pwm_sequence_update(nrfx_pwm_t const * p_instance,
382 NRFX_STATIC_INLINE uint32_t nrfx_pwm_task_address_get(nrfx_pwm_t const * p_instance,
394 NRFX_STATIC_INLINE uint32_t nrfx_pwm_event_address_get(nrfx_pwm_t const * p_instance,
398 NRFX_STATIC_INLINE void nrfx_pwm_step(nrfx_pwm_t const * p_instance) in nrfx_pwm_step() argument
400 nrfy_pwm_task_trigger(p_instance->p_reg, NRF_PWM_TASK_NEXTSTEP); in nrfx_pwm_step()
403 NRFX_STATIC_INLINE void nrfx_pwm_sequence_update(nrfx_pwm_t const * p_instance, in nrfx_pwm_sequence_update() argument
407 nrfy_pwm_sequence_set(p_instance->p_reg, seq_id, p_sequence); in nrfx_pwm_sequence_update()
410 NRFX_STATIC_INLINE uint32_t nrfx_pwm_task_address_get(nrfx_pwm_t const * p_instance, in nrfx_pwm_task_address_get() argument
413 return nrfy_pwm_task_address_get(p_instance->p_reg, task); in nrfx_pwm_task_address_get()
416 NRFX_STATIC_INLINE uint32_t nrfx_pwm_event_address_get(nrfx_pwm_t const * p_instance, in nrfx_pwm_event_address_get() argument
419 return nrfy_pwm_event_address_get(p_instance->p_reg, event); in nrfx_pwm_event_address_get()