[hal,wpilib] Rename RuntimeType constants to all caps

This commit is contained in:
Peter Johnson
2026-03-14 10:33:36 -07:00
parent 227f01f3bd
commit f6fdae3212
11 changed files with 38 additions and 38 deletions

View File

@@ -8,13 +8,13 @@ namespace wpi {
/**
* Runtime type.
*/
enum RuntimeType {
enum class RuntimeType {
/// roboRIO 1.0.
kRoboRIO,
ROBORIO,
/// roboRIO 2.0.
kRoboRIO2,
ROBORIO_2,
/// Simulation runtime.
kSimulation,
kSystemcore
SIMULATION,
SYSTEMCORE
};
} // namespace wpi