The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
emilmont
Date:
Tue Nov 29 14:59:27 2011 +0000
Revision:
27:7110ebee3484
New Libraries 11.11

Who changed what in which revision?

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