You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
287 B
21 lines
287 B
10 years ago
|
#ifndef WAIT_H
|
||
|
#define WAIT_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#if defined(__AVR__)
|
||
|
# include <util/delay.h>
|
||
|
# define wait_ms(ms) _delay_ms(ms)
|
||
|
# define wait_us(us) _delay_us(us)
|
||
|
#elif defined(__arm__)
|
||
|
# include "wait_api.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|