mbed libraries for KL25Z

Dependents:   FRDM_RGBLED

Committer:
emilmont
Date:
Mon Feb 18 09:41:56 2013 +0000
Revision:
9:663789d7729f
Parent:
0:8024c367e29f
Update mbed-KL25Z to latest build

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 0:8024c367e29f 1 /* mbed Microcontroller Library - cmsis_nvic
emilmont 0:8024c367e29f 2 * Copyright (c) 2009-2011 ARM Limited. All rights reserved.
emilmont 0:8024c367e29f 3 *
emilmont 0:8024c367e29f 4 * CMSIS-style functionality to support dynamic vectors
emilmont 0:8024c367e29f 5 */
emilmont 0:8024c367e29f 6
emilmont 0:8024c367e29f 7 #ifndef MBED_CMSIS_NVIC_H
emilmont 0:8024c367e29f 8 #define MBED_CMSIS_NVIC_H
emilmont 0:8024c367e29f 9
emilmont 0:8024c367e29f 10 #include "cmsis.h"
emilmont 0:8024c367e29f 11
emilmont 0:8024c367e29f 12 #ifdef __cplusplus
emilmont 0:8024c367e29f 13 extern "C" {
emilmont 0:8024c367e29f 14 #endif
emilmont 0:8024c367e29f 15
emilmont 0:8024c367e29f 16 void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
emilmont 0:8024c367e29f 17 uint32_t NVIC_GetVector(IRQn_Type IRQn);
emilmont 0:8024c367e29f 18
emilmont 0:8024c367e29f 19 #ifdef __cplusplus
emilmont 0:8024c367e29f 20 }
emilmont 0:8024c367e29f 21 #endif
emilmont 0:8024c367e29f 22
emilmont 0:8024c367e29f 23 #endif