Merge branch 'main' into 2027

This commit is contained in:
Peter Johnson
2024-12-19 20:40:37 -08:00
46 changed files with 1512 additions and 431 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
};