[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

@@ -148,11 +148,11 @@ class CAN {
bool ReadPacketTimeout(int apiId, int timeoutMs, HAL_CANReceiveMessage* data);
/// Team manufacturer.
static constexpr HAL_CANManufacturer kTeamManufacturer = HAL_CAN_Man_kTeamUse;
static constexpr HAL_CANManufacturer kTeamManufacturer = HAL_CAN_MAN_TEAM_USE;
/// Team device type.
static constexpr HAL_CANDeviceType kTeamDeviceType =
HAL_CAN_Dev_kMiscellaneous;
HAL_CAN_DEV_MISCELLANEOUS;
private:
wpi::hal::Handle<HAL_CANHandle, HAL_CleanCAN> m_handle;