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 by
TARGET_LPC1768/cmsis_nvic.h@66:9c8f0e3462fb, 2013-08-19 (annotated)
- Committer:
- bogdanm
- Date:
- Mon Aug 19 13:34:54 2013 +0300
- Revision:
- 66:9c8f0e3462fb
- Parent:
- 65:5798e58a58b1
New mbed library build with support for LPC1114.
Built from github tag 'mbed_lib_rev66'
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 66:9c8f0e3462fb | 1 | /* mbed Microcontroller Library - cmsis_nvic |
bogdanm | 66:9c8f0e3462fb | 2 | * Copyright (c) 2009-2011 ARM Limited. All rights reserved. |
bogdanm | 66:9c8f0e3462fb | 3 | * |
bogdanm | 66:9c8f0e3462fb | 4 | * CMSIS-style functionality to support dynamic vectors |
bogdanm | 66:9c8f0e3462fb | 5 | */ |
bogdanm | 66:9c8f0e3462fb | 6 | |
bogdanm | 66:9c8f0e3462fb | 7 | #ifndef MBED_CMSIS_NVIC_H |
bogdanm | 66:9c8f0e3462fb | 8 | #define MBED_CMSIS_NVIC_H |
bogdanm | 66:9c8f0e3462fb | 9 | |
bogdanm | 66:9c8f0e3462fb | 10 | #include "cmsis.h" |
bogdanm | 66:9c8f0e3462fb | 11 | |
bogdanm | 66:9c8f0e3462fb | 12 | #define NVIC_NUM_VECTORS (16 + 33) |
bogdanm | 66:9c8f0e3462fb | 13 | #define NVIC_USER_IRQ_OFFSET 16 |
bogdanm | 66:9c8f0e3462fb | 14 | |
bogdanm | 66:9c8f0e3462fb | 15 | #ifdef __cplusplus |
bogdanm | 66:9c8f0e3462fb | 16 | extern "C" { |
bogdanm | 66:9c8f0e3462fb | 17 | #endif |
bogdanm | 66:9c8f0e3462fb | 18 | |
bogdanm | 66:9c8f0e3462fb | 19 | void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector); |
bogdanm | 66:9c8f0e3462fb | 20 | uint32_t NVIC_GetVector(IRQn_Type IRQn); |
bogdanm | 66:9c8f0e3462fb | 21 | |
bogdanm | 66:9c8f0e3462fb | 22 | #ifdef __cplusplus |
bogdanm | 66:9c8f0e3462fb | 23 | } |
bogdanm | 66:9c8f0e3462fb | 24 | #endif |
bogdanm | 66:9c8f0e3462fb | 25 | |
bogdanm | 66:9c8f0e3462fb | 26 | #endif |