...

Dependents:   2doejemplo Labo_TRSE_Drone

Fork of mbed by mbed official

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