Lines Matching full:task
96 …NRF_ECB_TASK_STARTECB = offsetof(NRF_ECB_Type, TASKS_STARTECB), /**< Task for starting ECB block e…
97 …NRF_ECB_TASK_STOPECB = offsetof(NRF_ECB_Type, TASKS_STOPECB), /**< Task for stopping ECB block e…
108 …pe, EVENTS_ERRORECB), /**< ECB block encrypt aborted because of a STOPECB task or due to an error.…
123 * @brief Function for activating a specific ECB task.
126 * @param[in] task Task to activate.
128 __STATIC_INLINE void nrf_ecb_task_trigger(NRF_ECB_Type * p_reg, nrf_ecb_task_t task);
131 * @brief Function for getting the address of a specific ECB task register.
134 * @param[in] task Requested task.
136 * @return Address of the specified task register.
139 nrf_ecb_task_t task);
221 __STATIC_INLINE void nrf_ecb_task_trigger(NRF_ECB_Type * p_reg, nrf_ecb_task_t task) in nrf_ecb_task_trigger() argument
223 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)task)) = 0x1UL; in nrf_ecb_task_trigger()
227 nrf_ecb_task_t task) in nrf_ecb_task_address_get() argument
229 return ((uint32_t)p_reg + (uint32_t)task); in nrf_ecb_task_address_get()