summaryrefslogtreecommitdiff
path: root/tmk_core/common/wait.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/wait.h')
-rw-r--r--tmk_core/common/wait.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tmk_core/common/wait.h b/tmk_core/common/wait.h
new file mode 100644
index 0000000000..82727be012
--- /dev/null
+++ b/tmk_core/common/wait.h
@@ -0,0 +1,24 @@
+#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(PROTOCOL_CHIBIOS) /* __AVR__ */
+# include "ch.h"
+# define wait_ms(ms) chThdSleepMilliseconds(ms)
+# define wait_us(us) chThdSleepMicroseconds(us)
+#elif defined(__arm__) /* __AVR__ */
+# include "wait_api.h"
+#endif /* __AVR__ */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif