[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

@@ -10,8 +10,8 @@ namespace wpi {
*/
enum class EdgeConfiguration {
/// Rising edge configuration.
kRisingEdge = 0,
RISING_EDGE = 0,
/// Falling edge configuration.
kFallingEdge = 1,
FALLING_EDGE = 1,
};
} // namespace wpi