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_api.h

Committer:
rolf.meyer@arm.com
Date:
2009-08-28
Revision:
11:1c1ebd0324fa
Child:
20:029aa53d7323

File content as of revision 11:1c1ebd0324fa:

/* mbed Microcontroller Library - wait_api
 * Copyright (c) 2009 ARM Limited. All rights reserved.
 * sford
 */ 
 
// GENERIC

#ifndef MBED_WAIT_API_H
#define MBED_WAIT_API_H

#ifdef __cplusplus
extern "C" {
#endif

void wait(float s);
void wait_ms(int ms);
void wait_us(int us);

#ifdef __cplusplus
}
#endif

#endif