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
wait_api.h@11:1c1ebd0324fa, 2009-08-28 (annotated)
- Committer:
- rolf.meyer@arm.com
- Date:
- Fri Aug 28 12:10:11 2009 +0000
- Revision:
- 11:1c1ebd0324fa
- Child:
- 20:029aa53d7323
A shiny new version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rolf.meyer@arm.com | 11:1c1ebd0324fa | 1 | /* mbed Microcontroller Library - wait_api |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 2 | * Copyright (c) 2009 ARM Limited. All rights reserved. |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 3 | * sford |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 4 | */ |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 5 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 6 | // GENERIC |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 7 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 8 | #ifndef MBED_WAIT_API_H |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 9 | #define MBED_WAIT_API_H |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 10 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 11 | #ifdef __cplusplus |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 12 | extern "C" { |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 13 | #endif |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 14 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 15 | void wait(float s); |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 16 | void wait_ms(int ms); |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 17 | void wait_us(int us); |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 18 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 19 | #ifdef __cplusplus |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 20 | } |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 21 | #endif |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 22 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 23 | #endif |