[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

@@ -22,10 +22,10 @@ import org.wpilib.hardware.hal.can.CANReceiveMessage;
*/
public class CAN implements Closeable {
/** Team manufacturer. */
public static final int kTeamManufacturer = CANAPITypes.CANManufacturer.kTeamUse.id;
public static final int kTeamManufacturer = CANAPITypes.CANManufacturer.TEAM_USE.id;
/** Team device type. */
public static final int kTeamDeviceType = CANAPITypes.CANDeviceType.kMiscellaneous.id;
public static final int kTeamDeviceType = CANAPITypes.CANDeviceType.MISCELLANEOUS.id;
private final int m_handle;