Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: cc3000_ping_demo_try_2
Fork of mbed by
nvic_api.h
- Committer:
- rolf.meyer@arm.com
- Date:
- 2009-08-28
- Revision:
- 11:1c1ebd0324fa
File content as of revision 11:1c1ebd0324fa:
/* 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
