Home
last modified time | relevance | path

Searched refs:IRQn_ID_t (Results 1 – 7 of 7) sorted by relevance

/cmsis_6-latest/CMSIS/Core/Source/
Dirq_ctrl_gic.c61 __WEAK int32_t IRQ_SetHandler (IRQn_ID_t irqn, IRQHandler_t handler) { in IRQ_SetHandler()
64 if ((irqn >= 0) && (irqn < (IRQn_ID_t)IRQ_GIC_LINE_COUNT)) { in IRQ_SetHandler()
85 __WEAK IRQHandler_t IRQ_GetHandler (IRQn_ID_t irqn) { in IRQ_GetHandler()
91 if ((irqn >= 0) && (irqn < (IRQn_ID_t)IRQ_GIC_LINE_COUNT)) { in IRQ_GetHandler()
102 __WEAK int32_t IRQ_Enable (IRQn_ID_t irqn) { in IRQ_Enable()
105 if ((irqn >= 0) && (irqn < (IRQn_ID_t)IRQ_GIC_LINE_COUNT)) { in IRQ_Enable()
117 __WEAK int32_t IRQ_Disable (IRQn_ID_t irqn) { in IRQ_Disable()
120 if ((irqn >= 0) && (irqn < (IRQn_ID_t)IRQ_GIC_LINE_COUNT)) { in IRQ_Disable()
132 __WEAK uint32_t IRQ_GetEnableState (IRQn_ID_t irqn) { in IRQ_GetEnableState()
135 if ((irqn >= 0) && (irqn < (IRQn_ID_t)IRQ_GIC_LINE_COUNT)) { in IRQ_GetEnableState()
[all …]
/cmsis_6-latest/CMSIS/Core/Include/a-profile/
Dirq_ctrl.h43 typedef int32_t IRQn_ID_t; typedef
99 int32_t IRQ_SetHandler (IRQn_ID_t irqn, IRQHandler_t handler);
104 IRQHandler_t IRQ_GetHandler (IRQn_ID_t irqn);
109 int32_t IRQ_Enable (IRQn_ID_t irqn);
114 int32_t IRQ_Disable (IRQn_ID_t irqn);
119 uint32_t IRQ_GetEnableState (IRQn_ID_t irqn);
125 int32_t IRQ_SetMode (IRQn_ID_t irqn, uint32_t mode);
130 uint32_t IRQ_GetMode (IRQn_ID_t irqn);
134 IRQn_ID_t IRQ_GetActiveIRQ (void);
138 IRQn_ID_t IRQ_GetActiveFIQ (void);
[all …]
/cmsis_6-latest/CMSIS/Documentation/Doxygen/Core_A/src/
Dref_irq_ctrl.txt41 IRQ_ClearPending((IRQn_ID_t)SGI0_IRQn);
49 IRQ_SetHandler((IRQn_ID_t)SGI0_IRQn, SGI0_Handler);
53 IRQ_SetPriority((IRQn_ID_t)SGI0_IRQn, 1u << subprio);
56 …IRQ_SetMode((IRQn_ID_t)SGI0_IRQn, IRQ_MODE_TYPE_IRQ | IRQ_MODE_CPU_0 | IRQ_MODE_TRIG_EDGE | IRQ_MO…
58 IRQ_Enable((IRQn_ID_t)SGI0_IRQn);
61 IRQ_SetPending((IRQn_ID_t)SGI0_IRQn);
63 IRQ_Disable((IRQn_ID_t)SGI0_IRQn);
202 \fn int32_t IRQ_SetHandler (IRQn_ID_t irqn, IRQHandler_t handler)
209 int32_t IRQ_SetHandler (IRQn_ID_t irqn, IRQHandler_t handler) {
226 \fn IRQHandler_t IRQ_GetHandler (IRQn_ID_t irqn)
[all …]
Dusing.md79 IRQ_SetHandler((IRQn_ID_t)PrivTimer_IRQn, SysTick_Handler);
82 IRQ_SetPriority ((IRQn_ID_t)PrivTimer_IRQn, IRQ_PRIORITY_Msk);
85 IRQ_SetPriority ((IRQn_ID_t)PrivTimer_IRQn, GIC_GetPriority((IRQn_ID_t)PrivTimer_IRQn)-1);
88 IRQ_Enable ((IRQn_ID_t)PrivTimer_IRQn);
Dtemplate.md125 \ref device_h_pg contains the enumeration \ref IRQn_ID_t that defines all exceptions and interrupts…
/cmsis_6-latest/CMSIS/CoreValidation/Layer/App/Validation_Cortex-A/
Dmain.c74 const IRQn_ID_t irqn = IRQ_GetActiveIRQ(); in IRQ_Handler()
/cmsis_6-latest/CMSIS/CoreValidation/Layer/App/Validation_Cortex-M/
Dmain.c84 const IRQn_ID_t irqn = IRQ_GetActiveIRQ(); in IRQ_Handler()