Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/fusion_engine_client/messages/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ class VehicleModel(IntEnum):
FLEXRAY_DEVICE_AUDI_ETRON = 260

ISUZU_F_SERIES = 280
ISUZU_N_SERIES = 281


class WheelSensorType(IntEnum):
Expand Down
3 changes: 3 additions & 0 deletions src/point_one/fusion_engine/messages/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ enum class VehicleModel : uint16_t {
FLEXRAY_DEVICE_AUDI_ETRON = 260,

ISUZU_F_SERIES = 280,
ISUZU_N_SERIES = 281,
};

/**
Expand Down Expand Up @@ -783,6 +784,8 @@ P1_CONSTEXPR_FUNC const char* to_string(VehicleModel vehicle_model) {
return "FLEXRAY_DEVICE_AUDI_ETRON";
case VehicleModel::ISUZU_F_SERIES:
return "ISUZU_F_SERIES";
case VehicleModel::ISUZU_N_SERIES:
return "ISUZU_N_SERIES";
}

return "UNRECOGNIZED";
Expand Down
Loading