Wiljan Arias / WhexReefMonitor

Dependencies:   mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed

Fork of HTTPServerHelloWorld by Donatien Garnier

mbed/cmsis_nvic.h

Committer:
wyunreal
Date:
2014-01-31
Revision:
3:5dc0023e6284

File content as of revision 3:5dc0023e6284:

/* 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