ju Lei / mbed

Fork of mbed by mbed official

cmsis_nvic.h

Committer:
simon
Date:
2011-02-11
Revision:
26:63bcd7ba4912
Parent:
15:d1a9de3f4fe0

File content as of revision 26:63bcd7ba4912:

/* mbed Microcontroller Library - cmsis_nvic
 * Copyright (c) 2009 ARM Limited. All rights reserved.
 * sford
 *
 * CMSIS-style functionality to support dynamic vectors
 */ 

#ifndef MBED_CMSIS_NVIC_H
#define MBED_CMSIS_NVIC_H

#include "cmsis.h"

#ifdef __cplusplus
extern "C" {
#endif

void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
uint32_t NVIC_GetVector(IRQn_Type IRQn);

#ifdef __cplusplus
}
#endif

#endif