printer

Dependents:   Good_Serial_HelloWorld_Mbed

Fork of mbed by gokmen ascioglu

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cmsis_nvic.h Source File

cmsis_nvic.h

00001 /* mbed Microcontroller Library - cmsis_nvic
00002  * Copyright (c) 2009-2011 ARM Limited. All rights reserved.
00003  *
00004  * CMSIS-style functionality to support dynamic vectors
00005  */ 
00006 
00007 #ifndef MBED_CMSIS_NVIC_H
00008 #define MBED_CMSIS_NVIC_H
00009 
00010 #include "cmsis.h"
00011 
00012 #ifdef __cplusplus
00013 extern "C" {
00014 #endif
00015 
00016 void NVIC_SetVector(IRQn_Type IRQn , uint32_t vector);
00017 uint32_t NVIC_GetVector(IRQn_Type IRQn );
00018 
00019 #ifdef __cplusplus
00020 }
00021 #endif
00022 
00023 #endif