mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Apr 07 18:28:36 2014 +0100
Revision:
82:6473597d706e
Child:
85:024bf7f99721
Release 82 of the mbed library

Main changes:

- support for K64F
- Revisited Nordic code structure
- Test infrastructure improvements
- various bug fixes

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