mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Rename the following folders: hal/lib/Athena -> hal/lib/athena hal/lib/Desktop -> hal/lib/sim hal/lib/Shared -> hal/lib/shared wpilibc/Athena -> wpilibc/athena wpilibc/simulation -> wpilibc/sim Windows users may need to run gradlew clean after updating.
21 lines
454 B
C
21 lines
454 B
C
|
|
#ifndef __AICalibration_h__
|
|
#define __AICalibration_h__
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint32_t FRC_NetworkCommunication_nAICalibration_getLSBWeight(
|
|
const uint32_t aiSystemIndex, const uint32_t channel, int32_t *status);
|
|
int32_t FRC_NetworkCommunication_nAICalibration_getOffset(
|
|
const uint32_t aiSystemIndex, const uint32_t channel, int32_t *status);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __AICalibration_h__
|