summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-06-16 20:41:34 +0200
committerFred Sundvik <fsundvik@gmail.com>2017-06-18 20:10:42 +0200
commitefaf0e830b48bd5a8a62c4963e67fda3582e747c (patch)
tree2fb97e83a7a9320249758a43ac62f3adcd2bb6bc /tmk_core
parent585d64612811a61f8476380dac77199c04246085 (diff)
downloadqmk_firmware-efaf0e830b48bd5a8a62c4963e67fda3582e747c.tar.gz
qmk_firmware-efaf0e830b48bd5a8a62c4963e67fda3582e747c.tar.xz
Empty implementation of wait
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/wait.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/tmk_core/common/wait.h b/tmk_core/common/wait.h
index 82727be01..911c9ddb5 100644
--- a/tmk_core/common/wait.h
+++ b/tmk_core/common/wait.h
@@ -9,13 +9,16 @@ extern "C" {
# include <util/delay.h>
# define wait_ms(ms) _delay_ms(ms)
# define wait_us(us) _delay_us(us)
-#elif defined(PROTOCOL_CHIBIOS) /* __AVR__ */
+#elif defined(PROTOCOL_CHIBIOS)
# include "ch.h"
# define wait_ms(ms) chThdSleepMilliseconds(ms)
# define wait_us(us) chThdSleepMicroseconds(us)
-#elif defined(__arm__) /* __AVR__ */
+#elif defined(__arm__)
# include "wait_api.h"
-#endif /* __AVR__ */
+#else // Unit tests
+#define wait_ms(ms)
+#define wait_us(us)
+#endif
#ifdef __cplusplus
}