The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
14:20a79241b4a0
Parent:
13:a0336ede94ce
Child:
15:d1a9de3f4fe0
--- a/nvic_api.h	Wed Sep 23 12:55:43 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-/* 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