[wpilib] Rename EdgeConfiguration constants to all caps

This commit is contained in:
Peter Johnson
2026-03-17 16:37:56 -07:00
parent 5ec92df137
commit 8fa6976cb2
4 changed files with 8 additions and 8 deletions

View File

@@ -7,9 +7,9 @@ package org.wpilib.counter;
/** Edge configuration. */
public enum EdgeConfiguration {
/** Rising edge configuration. */
kRisingEdge(true),
RISING_EDGE(true),
/** Falling edge configuration. */
kFallingEdge(false);
FALLING_EDGE(false);
/** True if triggering on rising edge. */
@SuppressWarnings("MemberName")