Merge pull request #128 from logxen/edge
[clinton/Smoothieware.git] / gcc4mbed / external / mbed / LPC1768 / cmsis_nvic.h
1 /* mbed Microcontroller Library - cmsis_nvic
2 * Copyright (c) 2009-2011 ARM Limited. All rights reserved.
3 *
4 * CMSIS-style functionality to support dynamic vectors
5 */
6
7 #ifndef MBED_CMSIS_NVIC_H
8 #define MBED_CMSIS_NVIC_H
9
10 #include "cmsis.h"
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
17 uint32_t NVIC_GetVector(IRQn_Type IRQn);
18
19 #ifdef __cplusplus
20 }
21 #endif
22
23 #endif