Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
Diff: nvic_api.h
- Revision:
- 11:1c1ebd0324fa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nvic_api.h Fri Aug 28 12:10:11 2009 +0000 @@ -0,0 +1,28 @@ +/* mbed Microcontroller Library - nvic_api + * Copyright (c) 2006-2009 ARM Limited. All rights reserved. + * sford + */ + +// GENERIC (M3 only? maybe also ARM7 abstraction) + +#ifndef MBED_NVIC_API_H +#define MBED_NVIC_API_H + +#include "PinNames.h" +#include "PeripheralNames.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum IRQn IRQn; + +void nvic_init(); +uint32_t nvic_read(IRQn irq); +void NVIC_Vector(IRQn irq, uint32_t vector); + +#ifdef __cplusplus +} +#endif + +#endif