[hal,wpilib] Rename CAN device and manufacturer types to all caps

This commit is contained in:
Peter Johnson
2026-03-13 00:02:12 -07:00
parent fc3be46e6c
commit 614eb1db18
10 changed files with 92 additions and 92 deletions

View File

@@ -17,10 +17,10 @@
using namespace wpi::hal;
static constexpr HAL_CANManufacturer manufacturer =
HAL_CANManufacturer::HAL_CAN_Man_kCTRE;
HAL_CANManufacturer::HAL_CAN_MAN_CTRE;
static constexpr HAL_CANDeviceType deviceType =
HAL_CANDeviceType::HAL_CAN_Dev_kPowerDistribution;
HAL_CANDeviceType::HAL_CAN_DEV_POWER_DISTRIBUTION;
namespace wpi::hal::init {
void InitializePowerDistribution() {}