Fork of the official mbed C/C++ SDK provides the software platform and libraries to build your applications. The fork has the documentation converted to Doxygen format

Dependents:   NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more

Fork of mbed by mbed official

Revision:
0:82220227f4fa
Child:
1:6b7f447ca868
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.h	Tue Apr 08 14:12:21 2008 +0000
@@ -0,0 +1,38 @@
+/* mbed Microcontroller Library
+ * Copyright (c) 2007-2008, sford
+ */
+
+#ifndef MBED_H
+#define MBED_H
+ 
+// Useful C libraries
+#include "stdio.h"
+#include "stdlib.h"
+#include "string.h"
+#include "math.h"
+
+#include "helper.h"
+
+// mbed Debug libraries
+#include "Debug.h"
+#include "stackheap.h"
+
+// mbed Peripheral components
+#include "DigitalIn.h"
+#include "DigitalOut.h"
+#include "BusIn.h"
+#include "BusOut.h"
+#include "AnalogIn.h"
+#include "AnalogOut.h"
+#include "PwmOut.h"
+#include "Serial.h"
+#include "SPI.h"
+#include "I2C.h"
+
+// mbed Internal components
+#include "Timer.h"
+#include "wait.h"
+
+using namespace mbed; 
+
+#endif 
\ No newline at end of file