mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
Add format script which invokes clang-format on the C++ source code (#41)
On Windows machines, clang-format.exe must be in the PATH environment variable.
This commit is contained in:
committed by
Peter Johnson
parent
68690643d2
commit
e14e45da76
@@ -2,15 +2,14 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
void initializePDP(uint8_t module);
|
||||
double getPDPTemperature(uint8_t module, int32_t *status);
|
||||
double getPDPVoltage(uint8_t module, int32_t *status);
|
||||
double getPDPChannelCurrent(uint8_t module, uint8_t channel, int32_t *status);
|
||||
double getPDPTotalCurrent(uint8_t module, int32_t *status);
|
||||
double getPDPTotalPower(uint8_t module, int32_t *status);
|
||||
double getPDPTotalEnergy(uint8_t module, int32_t *status);
|
||||
void resetPDPTotalEnergy(uint8_t module, int32_t *status);
|
||||
void clearPDPStickyFaults(uint8_t module, int32_t *status);
|
||||
extern "C" {
|
||||
void initializePDP(uint8_t module);
|
||||
double getPDPTemperature(uint8_t module, int32_t* status);
|
||||
double getPDPVoltage(uint8_t module, int32_t* status);
|
||||
double getPDPChannelCurrent(uint8_t module, uint8_t channel, int32_t* status);
|
||||
double getPDPTotalCurrent(uint8_t module, int32_t* status);
|
||||
double getPDPTotalPower(uint8_t module, int32_t* status);
|
||||
double getPDPTotalEnergy(uint8_t module, int32_t* status);
|
||||
void resetPDPTotalEnergy(uint8_t module, int32_t* status);
|
||||
void clearPDPStickyFaults(uint8_t module, int32_t* status);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user