mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
13 lines
214 B
C
13 lines
214 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
extern "C" {
|
|
extern const int32_t HAL_NO_WAIT;
|
|
extern const int32_t HAL_WAIT_FOREVER;
|
|
|
|
void delayTicks(int32_t ticks);
|
|
void delayMillis(double ms);
|
|
void delaySeconds(double s);
|
|
}
|