Lines Matching full:task

95 …NRF_TIMER_TASK_START    = offsetof(NRF_TIMER_Type, TASKS_START),      ///< Task for starting the t…
96 …NRF_TIMER_TASK_STOP = offsetof(NRF_TIMER_Type, TASKS_STOP), ///< Task for stopping the t…
97 …NRF_TIMER_TASK_COUNT = offsetof(NRF_TIMER_Type, TASKS_COUNT), ///< Task for incrementing t…
98 …NRF_TIMER_TASK_CLEAR = offsetof(NRF_TIMER_Type, TASKS_CLEAR), ///< Task for resetting the …
99 …NRF_TIMER_TASK_SHUTDOWN = offsetof(NRF_TIMER_Type, TASKS_SHUTDOWN), ///< Task for powering off t…
100 …NRF_TIMER_TASK_CAPTURE0 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[0]), ///< Task for capturing the …
101 …NRF_TIMER_TASK_CAPTURE1 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[1]), ///< Task for capturing the …
102 …NRF_TIMER_TASK_CAPTURE2 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[2]), ///< Task for capturing the …
103 …NRF_TIMER_TASK_CAPTURE3 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[3]), ///< Task for capturing the …
105 …NRF_TIMER_TASK_CAPTURE4 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[4]), ///< Task for capturing the …
108 …NRF_TIMER_TASK_CAPTURE5 = offsetof(NRF_TIMER_Type, TASKS_CAPTURE[5]), ///< Task for capturing the …
235 * @brief Function for activating a specific timer task.
238 * @param[in] task Task to activate.
241 nrf_timer_task_t task);
244 * @brief Function for getting the address of a specific timer task register.
247 * @param[in] task Requested task.
249 * @return Address of the specified task register.
252 nrf_timer_task_t task);
337 * TIMER task.
340 * @param[in] task Task for which to set the configuration.
344 nrf_timer_task_t task,
349 * TIMER task.
352 * @param[in] task Task for which to clear the configuration.
355 nrf_timer_task_t task);
457 * @brief Function for getting a specific timer capture task.
461 * @return Capture task.
511 nrf_timer_task_t task) in nrf_timer_task_trigger() argument
513 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)task)) = 0x1UL; in nrf_timer_task_trigger()
517 nrf_timer_task_t task) in nrf_timer_task_address_get() argument
519 return (uint32_t *)((uint8_t *)p_reg + (uint32_t)task); in nrf_timer_task_address_get()
576 nrf_timer_task_t task, in nrf_timer_subscribe_set() argument
579 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = in nrf_timer_subscribe_set()
584 nrf_timer_task_t task) in nrf_timer_subscribe_clear() argument
586 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = 0; in nrf_timer_subscribe_clear()