Home
last modified time | relevance | path

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

/btstack/port/msp432p401lp-cc256x/ti/devices/msp432p4xx/driverlib/
H A 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 …]