Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more
Fork of mbed by
wait.h
- Committer:
- simon.ford@mbed.co.uk
- Date:
- 2009-05-14
- Revision:
- 10:fcb9359f0959
- Parent:
- 1:6b7f447ca868
File content as of revision 10:fcb9359f0959:
/* 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
