Files
allwpilib/hal/include/HAL/PDP.hpp
Patrick Plenefisch a3b65a6845 Don't do doubles
2014-05-30 20:24:04 -04:00

15 lines
249 B
C++

#pragma once
#ifdef __vxworks
#include <vxWorks.h>
#else
#include <stdint.h>
#endif
extern "C"
{
double getPDPTemperature(int32_t *status);
double getPDPVoltage(int32_t *status);
double getPDPChannelCurrent(uint8_t channel, int32_t *status);
}