Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions python/fusion_engine_client/messages/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ class VehicleModel(IntEnum):

ISUZU_F_SERIES = 280

ISUZU_N_SERIES = 300
Comment thread
bhers4 marked this conversation as resolved.
Outdated


class WheelSensorType(IntEnum):
NONE = 0
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 = 300,
Comment thread
bhers4 marked this conversation as resolved.
Outdated
};

/**
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