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.

wait.h

Committer:
simon.ford@mbed.co.uk
Date:
2008-04-08
Revision:
0:82220227f4fa
Child:
1:6b7f447ca868

File content as of revision 0:82220227f4fa:

/* 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