summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/wait.h
blob: 40d00b0c75184e88f1effc9a9153bde01979d9fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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