Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
KL25Z/cmsis_nvic.h@63:b3110cd2dd17, 2013-05-08 (annotated)
- Committer:
- samux
- Date:
- Wed May 08 14:50:20 2013 +0100
- Revision:
- 63:b3110cd2dd17
- Parent:
- 60:3d0ef94e36ec
spi slave and i2c slave support
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 |


