mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31: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
15
hal/include/HAL/PDP.h
Normal file
15
hal/include/HAL/PDP.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user