mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Renames all our .hpp HAL files to .h (#44)
Adds consistency, as the HAL was .hpp however all other code was .h.
This commit is contained in:
committed by
Peter Johnson
parent
248ca0c4a0
commit
8fc55c80a9
12
hal/include/HAL/Utilities.h
Normal file
12
hal/include/HAL/Utilities.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user