Searched refs:task_nbr (Results 1 – 8 of 8) sorted by relevance
/nrf_hw_models-latest/src/nrfx/hal/ |
D | nrf_ipc.c | 22 int task_nbr = (ipc_task - NRF_IPC_TASK_SEND_0)/sizeof(uint32_t); in nrf_ipc_task_trigger() local 23 nhw_IPC_regw_sideeffects_TASKS_SEND(i, task_nbr); in nrf_ipc_task_trigger() 60 int task_nbr = (task - NRF_IPC_TASK_SEND_0)/sizeof(uint32_t); in nrf_ipc_subscribe_set() local 62 nhw_IPC_regw_sideeffects_SUBSCRIBE_SEND(i, task_nbr); in nrf_ipc_subscribe_set() 72 int task_nbr = (task - NRF_IPC_TASK_SEND_0)/sizeof(uint32_t); in nrf_ipc_subscribe_clear() local 74 nhw_IPC_regw_sideeffects_SUBSCRIBE_SEND(i, task_nbr); in nrf_ipc_subscribe_clear()
|
D | nrf_egu.c | 22 int task_nbr = (egu_task - NRF_EGU_TASK_TRIGGER0)/sizeof(uint32_t); in nrf_egu_task_trigger() local 23 nhw_egu_regw_sideeffects_TASK_TRIGGER(i, task_nbr); in nrf_egu_task_trigger() 63 int task_nbr = (task - NRF_EGU_TASK_TRIGGER0)/sizeof(uint32_t); in nrf_egu_subscribe_set() local 65 nhw_egu_regw_sideeffects_SUBSCRIBE_TRIGGER(i, task_nbr); in nrf_egu_subscribe_set() 75 int task_nbr = (task - NRF_EGU_TASK_TRIGGER0)/sizeof(uint32_t); in nrf_egu_subscribe_clear() local 77 nhw_egu_regw_sideeffects_SUBSCRIBE_TRIGGER(i, task_nbr); in nrf_egu_subscribe_clear()
|
D | nrf_ppib.c | 29 int task_nbr = (task - NRF_PPIB_TASK_SEND_0)/sizeof(uint32_t); in nrf_ppib_subscribe_set() local 31 nhw_PPIB_regw_sideeffects_SUBSCRIBE_SEND(i, task_nbr); in nrf_ppib_subscribe_set() 41 int task_nbr = (task - NRF_PPIB_TASK_SEND_0)/sizeof(uint32_t); in nrf_ppib_subscribe_clear() local 43 nhw_PPIB_regw_sideeffects_SUBSCRIBE_SEND(i, task_nbr); in nrf_ppib_subscribe_clear()
|
D | nrf_timer.c | 49 int task_nbr = (task - NRF_TIMER_TASK_CAPTURE0)/sizeof(uint32_t); in nrf_timer_task_trigger() local 50 nhw_timer_regw_sideeffects_TASKS_CAPTURE(i, task_nbr); in nrf_timer_task_trigger() 101 int task_nbr = (task - NRF_TIMER_TASK_CAPTURE0)/sizeof(uint32_t); in nrf_timer_subscribe_common() local 102 nhw_timer_regw_sideeffects_SUBSCRIBE_CAPTURE(i, task_nbr); in nrf_timer_subscribe_common()
|
D | nrf_grtc.c | 92 int task_nbr = (task - NRF_GRTC_TASK_CAPTURE_0)/sizeof(uint32_t); in nrf_grtc_subscribe_set() local 94 nhw_GRTC_regw_sideeffects_SUBSCRIBE_CAPTURE(0, task_nbr); in nrf_grtc_subscribe_set() 108 int task_nbr = (task - NRF_GRTC_TASK_CAPTURE_0)/sizeof(uint32_t); in nrf_grtc_subscribe_clear() local 110 nhw_GRTC_regw_sideeffects_SUBSCRIBE_CAPTURE(0, task_nbr); in nrf_grtc_subscribe_clear() 170 int task_nbr = (grtc_task - NRF_GRTC_TASK_CAPTURE_0)/sizeof(uint32_t); in nrf_grtc_task_trigger() local 171 nhw_GRTC_regw_sideeffects_TASKS_CAPTURE(inst, task_nbr); in nrf_grtc_task_trigger()
|
D | nrf_gpiote.c | 293 int task_nbr; in nrf_gpiote_subscribe_common() local 296 task_nbr = (task - NRF_GPIOTE_TASK_OUT_0)/sizeof(uint32_t); in nrf_gpiote_subscribe_common() 297 nhw_gpiote_regw_sideeffects_SUBSCRIBE_OUT(inst, task_nbr); in nrf_gpiote_subscribe_common() 299 task_nbr = (task - NRF_GPIOTE_TASK_SET_0)/sizeof(uint32_t); in nrf_gpiote_subscribe_common() 300 nhw_gpiote_regw_sideeffects_SUBSCRIBE_SET(inst, task_nbr ); in nrf_gpiote_subscribe_common() 302 task_nbr = (task - NRF_GPIOTE_TASK_CLR_0)/sizeof(uint32_t); in nrf_gpiote_subscribe_common() 303 nhw_gpiote_regw_sideeffects_SUBSCRIBE_CLR(inst, task_nbr); in nrf_gpiote_subscribe_common()
|
/nrf_hw_models-latest/src/HW_models/ |
D | NHW_EGU.c | 152 void nhw_egu_TASK_TRIGGER(uint inst, uint task_nbr) in nhw_egu_TASK_TRIGGER() argument 154 nhw_egu_check_inst_event(inst, task_nbr, "task"); in nhw_egu_TASK_TRIGGER() 155 nhw_egu_signal_EVENTS_TRIGGERED(inst, task_nbr); in nhw_egu_TASK_TRIGGER() 210 void nhw_egu_regw_sideeffects_TASK_TRIGGER(uint inst, uint task_nbr){ in nhw_egu_regw_sideeffects_TASK_TRIGGER() argument 211 nhw_egu_check_inst_event(inst, task_nbr, "task"); in nhw_egu_regw_sideeffects_TASK_TRIGGER() 213 if (NRF_EGU_regs[inst].TASKS_TRIGGER[task_nbr] != 0) { in nhw_egu_regw_sideeffects_TASK_TRIGGER() 214 NRF_EGU_regs[inst].TASKS_TRIGGER[task_nbr] = 0; in nhw_egu_regw_sideeffects_TASK_TRIGGER() 215 nhw_egu_TASK_TRIGGER(inst, task_nbr); in nhw_egu_regw_sideeffects_TASK_TRIGGER()
|
D | NHW_EGU.h | 17 void nhw_egu_regw_sideeffects_TASK_TRIGGER(uint inst, uint task_nbr);
|