mbed library sources

Fork of mbed-src by mbed official

Committer:
bogdanm
Date:
Wed Aug 07 16:43:59 2013 +0300
Revision:
15:4892fe388435
Parent:
13:0645d8841f51
Added LPC4088 target and interrupt chaining code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 13:0645d8841f51 1 /* mbed Microcontroller Library - cmsis_nvic for LPC11U24
bogdanm 13:0645d8841f51 2 * Copyright (c) 2011 ARM Limited. All rights reserved.
bogdanm 13:0645d8841f51 3 *
bogdanm 13:0645d8841f51 4 * CMSIS-style functionality to support dynamic vectors
bogdanm 13:0645d8841f51 5 */
bogdanm 13:0645d8841f51 6 #include "cmsis_nvic.h"
bogdanm 13:0645d8841f51 7
bogdanm 13:0645d8841f51 8 #define NVIC_RAM_VECTOR_ADDRESS (0x10000000) // Vectors positioned at start of RAM
bogdanm 13:0645d8841f51 9 #define NVIC_FLASH_VECTOR_ADDRESS (0x0) // Initial vector position in flash
bogdanm 13:0645d8841f51 10
bogdanm 13:0645d8841f51 11 void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector) {
bogdanm 13:0645d8841f51 12 uint32_t *vectors = (uint32_t*)SCB->VTOR;
bogdanm 13:0645d8841f51 13 uint32_t i;
bogdanm 13:0645d8841f51 14
bogdanm 13:0645d8841f51 15 // Copy and switch to dynamic vectors if the first time called
bogdanm 13:0645d8841f51 16 if (SCB->VTOR == NVIC_FLASH_VECTOR_ADDRESS) {
bogdanm 13:0645d8841f51 17 uint32_t *old_vectors = vectors;
bogdanm 13:0645d8841f51 18 vectors = (uint32_t*)NVIC_RAM_VECTOR_ADDRESS;
bogdanm 13:0645d8841f51 19 for (i=0; i<NVIC_NUM_VECTORS; i++) {
bogdanm 13:0645d8841f51 20 vectors[i] = old_vectors[i];
bogdanm 13:0645d8841f51 21 }
bogdanm 13:0645d8841f51 22 SCB->VTOR = (uint32_t)NVIC_RAM_VECTOR_ADDRESS;
bogdanm 13:0645d8841f51 23 }
bogdanm 13:0645d8841f51 24 vectors[IRQn + 16] = vector;
bogdanm 13:0645d8841f51 25 }
bogdanm 13:0645d8841f51 26
bogdanm 13:0645d8841f51 27 uint32_t NVIC_GetVector(IRQn_Type IRQn) {
bogdanm 13:0645d8841f51 28 uint32_t *vectors = (uint32_t*)SCB->VTOR;
bogdanm 13:0645d8841f51 29 return vectors[IRQn + 16];
bogdanm 13:0645d8841f51 30 }