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/wait.h	Tue Apr 08 14:12:21 2008 +0000
@@ -0,0 +1,31 @@
+/* mbed Microcontroller Library - wait
+ * Copyright (c) 2007-2008, sford
+ */
+ 
+#ifndef MBED_WAIT_H
+#define MBED_WAIT_H
+
+namespace mbed {
+
+/* Section: wait
+ *  Useful waiting around functions
+ */
+
+/* Function: wait
+ *  Wait the specified number of seconds (float)
+ */
+void wait(float s);
+
+/* Function: wait_ms
+ *  Wait the specified number of milli-seconds (int)
+ */
+void wait_ms(int ms);
+
+/* Function: wait_us
+ *  Wait the specified number of micro-seconds (int)
+ */
+void wait_us(int us);
+
+}
+
+#endif
\ No newline at end of file