2014-05-09 15:11:56 -04:00
|
|
|
|
|
|
|
|
#ifndef __AICalibration_h__
|
|
|
|
|
#define __AICalibration_h__
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2015-06-25 15:07:55 -04:00
|
|
|
extern "C" {
|
2014-05-09 15:11:56 -04:00
|
|
|
#endif
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
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);
|
2014-05-09 15:11:56 -04:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
#endif // __AICalibration_h__
|