Lines Matching full:task
80 … = offsetof(NRF_PWM_Type, EVENTS_STOPPED), ///< Response to STOP task, emitted when PWM p…
109 …K = PWM_SHORTS_SEQEND0_STOP_Msk, ///< Shortcut between SEQEND[0] event and STOP task.
110 …K = PWM_SHORTS_SEQEND1_STOP_Msk, ///< Shortcut between SEQEND[1] event and STOP task.
111 …K = PWM_SHORTS_LOOPSDONE_SEQSTART0_Msk, ///< Shortcut between LOOPSDONE event and SEQSTART[0] task.
112 …K = PWM_SHORTS_LOOPSDONE_SEQSTART1_Msk, ///< Shortcut between LOOPSDONE event and SEQSTART[1] task.
113 …ASK = PWM_SHORTS_LOOPSDONE_STOP_Msk ///< Shortcut between LOOPSDONE event and STOP task.
163 …GGERED = PWM_DECODER_MODE_NextStep ///< When the @ref NRF_PWM_TASK_NEXTSTEP task is triggered.
261 * @brief Function for activating a specific PWM task.
264 * @param[in] task Task to activate.
267 nrf_pwm_task_t task);
270 * @brief Function for getting the address of a specific PWM task register.
273 * @param[in] task Requested task.
275 * @return Address of the specified task register.
278 nrf_pwm_task_t task);
381 * PWM task.
384 * @param[in] task Task for which to set the configuration.
388 nrf_pwm_task_t task,
393 * PWM task.
396 * @param[in] task Task for which to clear the configuration.
399 nrf_pwm_task_t task);
552 nrf_pwm_task_t task) in nrf_pwm_task_trigger() argument
554 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)task)) = 0x1UL; in nrf_pwm_task_trigger()
558 nrf_pwm_task_t task) in nrf_pwm_task_address_get() argument
560 return ((uint32_t)p_reg + (uint32_t)task); in nrf_pwm_task_address_get()
629 nrf_pwm_task_t task, in nrf_pwm_subscribe_set() argument
632 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = in nrf_pwm_subscribe_set()
637 nrf_pwm_task_t task) in nrf_pwm_subscribe_clear() argument
639 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = 0; in nrf_pwm_subscribe_clear()