mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
[hal, wpilib] Remove power rails that don't exist on systemcore (#7861)
This commit is contained in:
@@ -21,31 +21,6 @@ namespace frc::sim {
|
||||
*/
|
||||
class RoboRioSim {
|
||||
public:
|
||||
/**
|
||||
* Register a callback to be run when the FPGA button state changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether to run the callback with the initial state
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterFPGAButtonCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Query the state of the FPGA button.
|
||||
*
|
||||
* @return the FPGA button state
|
||||
*/
|
||||
static bool GetFPGAButton();
|
||||
|
||||
/**
|
||||
* Define the state of the FPGA button.
|
||||
*
|
||||
* @param fPGAButton the new state
|
||||
*/
|
||||
static void SetFPGAButton(bool fPGAButton);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the Vin voltage changes.
|
||||
*
|
||||
@@ -71,188 +46,6 @@ class RoboRioSim {
|
||||
*/
|
||||
static void SetVInVoltage(units::volt_t vInVoltage);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the Vin current changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterVInCurrentCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Measure the Vin current.
|
||||
*
|
||||
* @return the Vin current
|
||||
*/
|
||||
static units::ampere_t GetVInCurrent();
|
||||
|
||||
/**
|
||||
* Define the Vin current.
|
||||
*
|
||||
* @param vInCurrent the new current
|
||||
*/
|
||||
static void SetVInCurrent(units::ampere_t vInCurrent);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 6V rail voltage changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserVoltage6VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Measure the 6V rail voltage.
|
||||
*
|
||||
* @return the 6V rail voltage
|
||||
*/
|
||||
static units::volt_t GetUserVoltage6V();
|
||||
|
||||
/**
|
||||
* Define the 6V rail voltage.
|
||||
*
|
||||
* @param userVoltage6V the new voltage
|
||||
*/
|
||||
static void SetUserVoltage6V(units::volt_t userVoltage6V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 6V rail current changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserCurrent6VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Measure the 6V rail current.
|
||||
*
|
||||
* @return the 6V rail current
|
||||
*/
|
||||
static units::ampere_t GetUserCurrent6V();
|
||||
|
||||
/**
|
||||
* Define the 6V rail current.
|
||||
*
|
||||
* @param userCurrent6V the new current
|
||||
*/
|
||||
static void SetUserCurrent6V(units::ampere_t userCurrent6V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 6V rail active state changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial state
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserActive6VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Get the 6V rail active state.
|
||||
*
|
||||
* @return true if the 6V rail is active
|
||||
*/
|
||||
static bool GetUserActive6V();
|
||||
|
||||
/**
|
||||
* Set the 6V rail active state.
|
||||
*
|
||||
* @param userActive6V true to make rail active
|
||||
*/
|
||||
static void SetUserActive6V(bool userActive6V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 5V rail voltage changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserVoltage5VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Measure the 5V rail voltage.
|
||||
*
|
||||
* @return the 5V rail voltage
|
||||
*/
|
||||
static units::volt_t GetUserVoltage5V();
|
||||
|
||||
/**
|
||||
* Define the 5V rail voltage.
|
||||
*
|
||||
* @param userVoltage5V the new voltage
|
||||
*/
|
||||
static void SetUserVoltage5V(units::volt_t userVoltage5V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 5V rail current changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserCurrent5VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Measure the 5V rail current.
|
||||
*
|
||||
* @return the 5V rail current
|
||||
*/
|
||||
static units::ampere_t GetUserCurrent5V();
|
||||
|
||||
/**
|
||||
* Define the 5V rail current.
|
||||
*
|
||||
* @param userCurrent5V the new current
|
||||
*/
|
||||
static void SetUserCurrent5V(units::ampere_t userCurrent5V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 5V rail active state changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial state
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserActive5VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Get the 5V rail active state.
|
||||
*
|
||||
* @return true if the 5V rail is active
|
||||
*/
|
||||
static bool GetUserActive5V();
|
||||
|
||||
/**
|
||||
* Set the 5V rail active state.
|
||||
*
|
||||
* @param userActive5V true to make rail active
|
||||
*/
|
||||
static void SetUserActive5V(bool userActive5V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 3.3V rail voltage changes.
|
||||
*
|
||||
@@ -331,60 +124,6 @@ class RoboRioSim {
|
||||
*/
|
||||
static void SetUserActive3V3(bool userActive3V3);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 6V rail number of faults
|
||||
* changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserFaults6VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Get the 6V rail number of faults.
|
||||
*
|
||||
* @return number of faults
|
||||
*/
|
||||
static int GetUserFaults6V();
|
||||
|
||||
/**
|
||||
* Set the 6V rail number of faults.
|
||||
*
|
||||
* @param userFaults6V number of faults
|
||||
*/
|
||||
static void SetUserFaults6V(int userFaults6V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 5V rail number of faults
|
||||
* changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterUserFaults5VCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Get the 5V rail number of faults.
|
||||
*
|
||||
* @return number of faults
|
||||
*/
|
||||
static int GetUserFaults5V();
|
||||
|
||||
/**
|
||||
* Set the 5V rail number of faults.
|
||||
*
|
||||
* @param userFaults5V number of faults
|
||||
*/
|
||||
static void SetUserFaults5V(int userFaults5V);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the 3.3V rail number of faults
|
||||
* changes.
|
||||
@@ -515,32 +254,6 @@ class RoboRioSim {
|
||||
*/
|
||||
static void SetComments(std::string_view comments);
|
||||
|
||||
/**
|
||||
* Register a callback to be run whenever the Radio led state changes.
|
||||
*
|
||||
* @param callback the callback
|
||||
* @param initialNotify whether the callback should be called with the
|
||||
* initial value
|
||||
* @return the CallbackStore object associated with this callback
|
||||
*/
|
||||
[[nodiscard]]
|
||||
static std::unique_ptr<CallbackStore> RegisterRadioLEDStateCallback(
|
||||
NotifyCallback callback, bool initialNotify);
|
||||
|
||||
/**
|
||||
* Get the state of the radio led.
|
||||
*
|
||||
* @return The state of the radio led.
|
||||
*/
|
||||
static RadioLEDState GetRadioLEDState();
|
||||
|
||||
/**
|
||||
* Set the state of the radio led.
|
||||
*
|
||||
* @param state The state of the radio led.
|
||||
*/
|
||||
static void SetRadioLEDState(RadioLEDState state);
|
||||
|
||||
/**
|
||||
* Reset all simulation data.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user