SD card interface

Committer:
lharoon
Date:
Mon Oct 08 11:14:07 2012 +0000
Revision:
0:22612ae617a0
1st edition

Who changed what in which revision?

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