Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include <stdint.h> | ||||
4 | |||||
5 | extern "C" | ||||
6 | { | ||||
7 | extern const int32_t HAL_NO_WAIT; | ||||
8 | extern const int32_t HAL_WAIT_FOREVER; | ||||
9 | |||||
10 | void delayTicks(int32_t ticks); | ||||
11 | void delayMillis(double ms); | ||||
12 | void delaySeconds(double s); | ||||
13 | } |