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.
Fork of mbed by
Diff: Timeout.h
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 59:0883845fe643
--- a/Timeout.h Tue Jan 08 12:46:36 2013 +0000 +++ b/Timeout.h Wed Jan 16 12:56:34 2013 +0000 @@ -28,23 +28,23 @@ /** A Timeout is used to call a function at a point in the future * - * You can use as many seperate Timeout objects as you require. + * You can use as many seperate Timeout objects as you require. * * Example: * @code * // Blink until timeout. * * #include "mbed.h" - * + * * Timeout timeout; * DigitalOut led(LED1); - * + * * int on = 1; - * + * * void attimeout() { * on = 0; * } - * + * * int main() { * timeout.attach(&attimeout, 5); * while(on) {