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.

Committer:
emilmont
Date:
Tue Jun 12 18:23:44 2012 +0100
Revision:
40:976df7c37ad5
Child:
44:24d45a770a51
First build for the new build system

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 40:976df7c37ad5 1 /* mbed Microcontroller Library - CMSIS
emilmont 40:976df7c37ad5 2 * Copyright (C) 2009-2011 ARM Limited. All rights reserved.
emilmont 40:976df7c37ad5 3 *
emilmont 40:976df7c37ad5 4 * A generic CMSIS include header, pulling in LPC1768 specifics
emilmont 40:976df7c37ad5 5 */
emilmont 40:976df7c37ad5 6
emilmont 40:976df7c37ad5 7 #ifndef MBED_CMSIS_H
emilmont 40:976df7c37ad5 8 #define MBED_CMSIS_H
emilmont 40:976df7c37ad5 9
emilmont 40:976df7c37ad5 10 #ifndef TARGET_LPC1768
emilmont 40:976df7c37ad5 11 #define TARGET_LPC1768
emilmont 40:976df7c37ad5 12 #endif
emilmont 40:976df7c37ad5 13
emilmont 40:976df7c37ad5 14 #include "LPC17xx.h"
emilmont 40:976df7c37ad5 15 #include "cmsis_nvic.h"
emilmont 40:976df7c37ad5 16
emilmont 40:976df7c37ad5 17 #endif