[docs] Fix wpilibj JavaDoc warnings (#6154)

This commit is contained in:
Tyler Veness
2024-01-05 07:35:59 -08:00
committed by GitHub
parent 19cb2a8eb4
commit 106518c3f8
97 changed files with 1112 additions and 71 deletions

View File

@@ -451,17 +451,20 @@ class Counter : public CounterBase,
void InitSendable(wpi::SendableBuilder& builder) override;
protected:
// Makes the counter count up.
/// Makes the counter count up.
std::shared_ptr<DigitalSource> m_upSource;
// Makes the counter count down.
/// Makes the counter count down.
std::shared_ptr<DigitalSource> m_downSource;
// The FPGA counter object
/// The FPGA counter object
hal::Handle<HAL_CounterHandle> m_counter;
private:
int m_index = 0; // The index of this counter.
/// The index of this counter.
int m_index = 0;
/// Distance of travel for each tick.
double m_distancePerPulse = 1;
friend class DigitalGlitchFilter;