Home
last modified time | relevance | path

Searched refs:g_pfnRAMVectors (Results 1 – 3 of 3) sorted by relevance

/hal_ti-latest/simplelink/source/ti/devices/cc13x2x7_cc26x2x7/driverlib/
Dinterrupt.c129 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable
132 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) @ ".vtable_ram"; variable
134 #pragma DATA_ALIGN(g_pfnRAMVectors, 256)
135 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable_ram")
136 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable
139 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable
142 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable
159 ASSERT(((uint32_t)g_pfnRAMVectors & 0x000000ff) == 0); in IntRegister()
162 if(HWREG(NVIC_VTABLE) != (uint32_t)g_pfnRAMVectors) in IntRegister()
169 g_pfnRAMVectors[ui32Idx] = (void (*)(void))HWREG((ui32Idx * 4) + in IntRegister()
[all …]
/hal_ti-latest/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/
Dinterrupt.c131 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable
134 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) @ ".vtable_ram"; variable
136 #pragma DATA_ALIGN(g_pfnRAMVectors, 256)
137 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable_ram")
138 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable
141 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable
144 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable
161 ASSERT(((uint32_t)g_pfnRAMVectors & 0x000000ff) == 0); in IntRegister()
164 if(HWREG(NVIC_VTABLE) != (uint32_t)g_pfnRAMVectors) in IntRegister()
171 g_pfnRAMVectors[ui32Idx] = (void (*)(void))HWREG((ui32Idx * 4) + in IntRegister()
[all …]
/hal_ti-latest/simplelink/source/ti/devices/msp432p4xx/driverlib/
Dinterrupt.c139 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS+1])(void) @ "VTABLE"; variable
141 #pragma DATA_ALIGN(g_pfnRAMVectors, 1024)
142 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable")
143 void (*g_pfnRAMVectors[NUM_INTERRUPTS + 1])(void); variable
146 void (*g_pfnRAMVectors[NUM_INTERRUPTS+1])(void) __attribute__((aligned(1024))); variable
178 ASSERT(((uint32_t) g_pfnRAMVectors & 0x000000ff) == 0); in Interrupt_registerInterrupt()
183 if (SCB->VTOR != (uint32_t) g_pfnRAMVectors) in Interrupt_registerInterrupt()
192 g_pfnRAMVectors[ulIdx] = (void (*)(void)) HWREG32( in Interrupt_registerInterrupt()
199 SCB->VTOR = (uint32_t) g_pfnRAMVectors; in Interrupt_registerInterrupt()
205 g_pfnRAMVectors[interruptNumber] = intHandler; in Interrupt_registerInterrupt()
[all …]