version_2.0

Dependents:   cc3000_ping_demo_try_2

Fork of mbed by mbed official

Committer:
erezi
Date:
Wed Jun 25 06:08:49 2014 +0000
Revision:
86:4f9a848d74c7
Parent:
82:6473597d706e
Child:
85:024bf7f99721
version_2.0

Who changed what in which revision?

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