...
Dependents: 2doejemplo Labo_TRSE_Drone
Fork of mbed by
Diff: wait.h
- Revision:
- 11:1c1ebd0324fa
- Parent:
- 10:fcb9359f0959
- Child:
- 12:f63353af7be8
--- a/wait.h Thu May 14 14:44:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -/* 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 -