mbed(SerialHalfDuplex入り)
Fork of mbed by
KL25Z/cmsis_nvic.h@60:3d0ef94e36ec, 2013-02-19 (annotated)
- Committer:
- emilmont
- Date:
- Tue Feb 19 10:00:15 2013 +0000
- Revision:
- 60:3d0ef94e36ec
Add Freescale FRDM-KL25Z
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 60:3d0ef94e36ec | 1 | /* mbed Microcontroller Library - cmsis_nvic |
emilmont | 60:3d0ef94e36ec | 2 | * Copyright (c) 2009-2011 ARM Limited. All rights reserved. |
emilmont | 60:3d0ef94e36ec | 3 | * |
emilmont | 60:3d0ef94e36ec | 4 | * CMSIS-style functionality to support dynamic vectors |
emilmont | 60:3d0ef94e36ec | 5 | */ |
emilmont | 60:3d0ef94e36ec | 6 | |
emilmont | 60:3d0ef94e36ec | 7 | #ifndef MBED_CMSIS_NVIC_H |
emilmont | 60:3d0ef94e36ec | 8 | #define MBED_CMSIS_NVIC_H |
emilmont | 60:3d0ef94e36ec | 9 | |
emilmont | 60:3d0ef94e36ec | 10 | #include "cmsis.h" |
emilmont | 60:3d0ef94e36ec | 11 | |
emilmont | 60:3d0ef94e36ec | 12 | #ifdef __cplusplus |
emilmont | 60:3d0ef94e36ec | 13 | extern "C" { |
emilmont | 60:3d0ef94e36ec | 14 | #endif |
emilmont | 60:3d0ef94e36ec | 15 | |
emilmont | 60:3d0ef94e36ec | 16 | void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector); |
emilmont | 60:3d0ef94e36ec | 17 | uint32_t NVIC_GetVector(IRQn_Type IRQn); |
emilmont | 60:3d0ef94e36ec | 18 | |
emilmont | 60:3d0ef94e36ec | 19 | #ifdef __cplusplus |
emilmont | 60:3d0ef94e36ec | 20 | } |
emilmont | 60:3d0ef94e36ec | 21 | #endif |
emilmont | 60:3d0ef94e36ec | 22 | |
emilmont | 60:3d0ef94e36ec | 23 | #endif |