mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Dec 09 18:43:03 2013 +0200
Revision:
73:1efda918f0ba
Child:
90:cb3d968589d8
Release 73 of the mbed library

Main changes:

- added support for KL46Z and NUCLEO_F103RB
- STM32 USB device support
- various bug fixes

Who changed what in which revision?

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