mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
Also move some things in HAL for consistency. WAS: C++: - C APIs: #include "mockdata/AccelerometerData.h" - User side class: #include "simulation/AccelerometerSim.h" Java: - JNI APIs: hal.sim.mockdata.AccelerometerData (and a few classes in hal.sim) - User side classes: hal.sim.AccelerometerSim IS: C++: - C APIs: #include "hal/simulation/AccelerometerData.h" - C++ class: #include "frc/simulation/AccelerometerSim.h" Java: - JNI APIs: hal.simulation.AccelerometerData - User side class: wpilibj.simulation.AccelerometerSim
34 lines
1.3 KiB
C++
34 lines
1.3 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2017-2020 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "hal/simulation/DIOData.h"
|
|
#include "hal/simulation/SimDataValue.h"
|
|
|
|
namespace hal {
|
|
class DIOData {
|
|
HAL_SIMDATAVALUE_DEFINE_NAME(Initialized)
|
|
HAL_SIMDATAVALUE_DEFINE_NAME(Value)
|
|
HAL_SIMDATAVALUE_DEFINE_NAME(PulseLength)
|
|
HAL_SIMDATAVALUE_DEFINE_NAME(IsInput)
|
|
HAL_SIMDATAVALUE_DEFINE_NAME(FilterIndex)
|
|
|
|
public:
|
|
SimDataValue<HAL_Bool, HAL_MakeBoolean, GetInitializedName> initialized{
|
|
false};
|
|
std::atomic<HAL_SimDeviceHandle> simDevice;
|
|
SimDataValue<HAL_Bool, HAL_MakeBoolean, GetValueName> value{true};
|
|
SimDataValue<double, HAL_MakeDouble, GetPulseLengthName> pulseLength{0.0};
|
|
SimDataValue<HAL_Bool, HAL_MakeBoolean, GetIsInputName> isInput{true};
|
|
SimDataValue<int32_t, HAL_MakeInt, GetFilterIndexName> filterIndex{-1};
|
|
|
|
virtual void ResetData();
|
|
};
|
|
extern DIOData* SimDIOData;
|
|
} // namespace hal
|