meh

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Fri Sep 12 16:41:52 2014 +0100
Revision:
89:552587b429a1
Parent:
TARGET_GHI_MBUINO/cmsis_nvic.h@88:9327015d4013
Child:
90:cb3d968589d8
Release 89 of the mbed library

Main changes:

- low power optimizations for Nordic targets
- code structure changes for Freescale K64F targets
- bug fixes in various backends

Who changed what in which revision?

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