mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpilib] Rename EdgeConfiguration constants to all caps
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user