Searched refs:g_pfnRAMVectors (Results 1 – 3 of 3) sorted by relevance
129 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable132 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) @ ".vtable_ram"; variable134 #pragma DATA_ALIGN(g_pfnRAMVectors, 256)135 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable_ram")136 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable139 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable142 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable159 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 …]
131 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable134 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) @ ".vtable_ram"; variable136 #pragma DATA_ALIGN(g_pfnRAMVectors, 256)137 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable_ram")138 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void); variable141 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable144 void (*g_pfnRAMVectors[NUM_INTERRUPTS])(void) __attribute__((aligned(256))); variable161 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 …]
139 static __no_init void (*g_pfnRAMVectors[NUM_INTERRUPTS+1])(void) @ "VTABLE"; variable141 #pragma DATA_ALIGN(g_pfnRAMVectors, 1024)142 #pragma DATA_SECTION(g_pfnRAMVectors, ".vtable")143 void (*g_pfnRAMVectors[NUM_INTERRUPTS + 1])(void); variable146 void (*g_pfnRAMVectors[NUM_INTERRUPTS+1])(void) __attribute__((aligned(1024))); variable178 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 …]