[hal] Add CAN device type for servo controllers (#7556)

This commit is contained in:
Jan-Felix Abellera
2024-12-18 23:57:34 -06:00
committed by GitHub
parent f8720a628c
commit cc73236a06
2 changed files with 4 additions and 0 deletions

View File

@@ -47,6 +47,8 @@ public final class CANAPITypes {
kMiscellaneous(10),
/** IO breakout. */
kIOBreakout(11),
/** Servo Controller. */
kServoController(12),
/** Firmware update. */
kFirmwareUpdate(31);

View File

@@ -44,6 +44,8 @@ HAL_ENUM(HAL_CANDeviceType) {
HAL_CAN_Dev_kMiscellaneous = 10,
/// IO breakout.
HAL_CAN_Dev_kIOBreakout = 11,
// Servo controller.
HAL_CAN_Dev_kServoController = 12,
/// Firmware update.
HAL_CAN_Dev_kFirmwareUpdate = 31
};