Ricardo Benitez / mbed

Fork of mbed by mbed official

Committer:
Kojto
Date:
Fri Oct 02 07:35:07 2015 +0200
Revision:
108:34e6b704fe68
Release 108  of the mbed library

Changes:
- new platforms - ELMO_F411RE, WIZNET_7500P, ARM_MPS2_BEID
- EFM32 - bugfixes in rtc, serial
- Cortex A cmsis - update files
- STML4 - RAM fixes

Who changed what in which revision?

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