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.
mbed/LPC1768/cmsis_nvic.h@0:da22b0b4395a, 2013-06-19 (annotated)
- Committer:
- hayama
- Date:
- Wed Jun 19 10:00:41 2013 +0000
- Revision:
- 0:da22b0b4395a
mbed robotracer for education ver 1.0
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hayama | 0:da22b0b4395a | 1 | /* mbed Microcontroller Library - cmsis_nvic |
hayama | 0:da22b0b4395a | 2 | * Copyright (c) 2009-2011 ARM Limited. All rights reserved. |
hayama | 0:da22b0b4395a | 3 | * |
hayama | 0:da22b0b4395a | 4 | * CMSIS-style functionality to support dynamic vectors |
hayama | 0:da22b0b4395a | 5 | */ |
hayama | 0:da22b0b4395a | 6 | |
hayama | 0:da22b0b4395a | 7 | #ifndef MBED_CMSIS_NVIC_H |
hayama | 0:da22b0b4395a | 8 | #define MBED_CMSIS_NVIC_H |
hayama | 0:da22b0b4395a | 9 | |
hayama | 0:da22b0b4395a | 10 | #include "cmsis.h" |
hayama | 0:da22b0b4395a | 11 | |
hayama | 0:da22b0b4395a | 12 | #ifdef __cplusplus |
hayama | 0:da22b0b4395a | 13 | extern "C" { |
hayama | 0:da22b0b4395a | 14 | #endif |
hayama | 0:da22b0b4395a | 15 | |
hayama | 0:da22b0b4395a | 16 | void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector); |
hayama | 0:da22b0b4395a | 17 | uint32_t NVIC_GetVector(IRQn_Type IRQn); |
hayama | 0:da22b0b4395a | 18 | |
hayama | 0:da22b0b4395a | 19 | #ifdef __cplusplus |
hayama | 0:da22b0b4395a | 20 | } |
hayama | 0:da22b0b4395a | 21 | #endif |
hayama | 0:da22b0b4395a | 22 | |
hayama | 0:da22b0b4395a | 23 | #endif |