Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-src by
targets/cmsis/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/cmsis_nvic.c@82:0b31dbcd4769, 2014-01-31 (annotated)
- Committer:
- mbed_official
- Date:
- Fri Jan 31 10:00:06 2014 +0000
- Revision:
- 82:0b31dbcd4769
- Parent:
- targets/cmsis/TARGET_Freescale/TARGET_KL25Z/cmsis_nvic.c@15:4892fe388435
- Child:
- 359:9d7ef901f004
Synchronized with git revision 74409cbd593d1daab530a57baaa563f30b04b018
Full URL: https://github.com/mbedmicro/mbed/commit/74409cbd593d1daab530a57baaa563f30b04b018/
Who changed what in which revision?
User | Revision | Line number | New 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 (0x1FFFF000) // 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 | } |