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 85:024bf7f99721 1 /* mbed Microcontroller Library
bogdanm 85:024bf7f99721 2 * CMSIS-style functionality to support dynamic vectors
bogdanm 85:024bf7f99721 3 *******************************************************************************
bogdanm 85:024bf7f99721 4 * Copyright (c) 2014, STMicroelectronics
bogdanm 85:024bf7f99721 5 * All rights reserved.
bogdanm 85:024bf7f99721 6 *
bogdanm 85:024bf7f99721 7 * Redistribution and use in source and binary forms, with or without
bogdanm 85:024bf7f99721 8 * modification, are permitted provided that the following conditions are met:
bogdanm 85:024bf7f99721 9 *
bogdanm 85:024bf7f99721 10 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 85:024bf7f99721 11 * this list of conditions and the following disclaimer.
bogdanm 85:024bf7f99721 12 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 85:024bf7f99721 13 * this list of conditions and the following disclaimer in the documentation
bogdanm 85:024bf7f99721 14 * and/or other materials provided with the distribution.
bogdanm 85:024bf7f99721 15 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 85:024bf7f99721 16 * may be used to endorse or promote products derived from this software
bogdanm 85:024bf7f99721 17 * without specific prior written permission.
bogdanm 85:024bf7f99721 18 *
bogdanm 85:024bf7f99721 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 85:024bf7f99721 20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 85:024bf7f99721 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 85:024bf7f99721 22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 85:024bf7f99721 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 85:024bf7f99721 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 85:024bf7f99721 25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 85:024bf7f99721 26 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 85:024bf7f99721 27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 85:024bf7f99721 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 85:024bf7f99721 29 *******************************************************************************
bogdanm 85:024bf7f99721 30 */
bogdanm 85:024bf7f99721 31
bogdanm 85:024bf7f99721 32 #ifndef MBED_CMSIS_NVIC_H
bogdanm 85:024bf7f99721 33 #define MBED_CMSIS_NVIC_H
bogdanm 85:024bf7f99721 34
bogdanm 85:024bf7f99721 35 // STM32F072RB
bogdanm 85:024bf7f99721 36 // CORE: 16 vectors = 64 bytes from 0x00 to 0x3F
bogdanm 85:024bf7f99721 37 // MCU Peripherals: 32 vectors = 128 bytes from 0x40 to 0xBF
bogdanm 85:024bf7f99721 38 // Total: 48 vectors = 192 bytes (0xC0) to be reserved in RAM
bogdanm 85:024bf7f99721 39 #define NVIC_NUM_VECTORS 48
bogdanm 85:024bf7f99721 40 #define NVIC_USER_IRQ_OFFSET 16
bogdanm 85:024bf7f99721 41
bogdanm 85:024bf7f99721 42 #include "cmsis.h"
bogdanm 85:024bf7f99721 43
bogdanm 85:024bf7f99721 44 #ifdef __cplusplus
bogdanm 85:024bf7f99721 45 extern "C" {
bogdanm 85:024bf7f99721 46 #endif
bogdanm 85:024bf7f99721 47
bogdanm 85:024bf7f99721 48 void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
bogdanm 85:024bf7f99721 49 uint32_t NVIC_GetVector(IRQn_Type IRQn);
bogdanm 85:024bf7f99721 50
bogdanm 85:024bf7f99721 51 #ifdef __cplusplus
bogdanm 85:024bf7f99721 52 }
bogdanm 85:024bf7f99721 53 #endif
bogdanm 85:024bf7f99721 54
bogdanm 85:024bf7f99721 55 #endif