Support for MSP430 launchpad.

Fork of mbed by mbed official

Committer:
atamariya
Date:
Sat Jun 21 09:54:56 2014 +0000
Revision:
86:c662433839e3
Parent:
85:024bf7f99721
Support for MSP430

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 85:024bf7f99721 10 #define NVIC_NUM_VECTORS (16 + 86) // 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