Remove vehicle dims in DCM

This commit is contained in:
emanuel 2022-02-09 13:06:33 +00:00
parent 13a3a7a943
commit 07cdd27bcd
1 changed files with 3 additions and 3 deletions

View File

@ -120,9 +120,9 @@ static int mk_dcm(facilities_t* facilities, uint8_t* dcm_uper, uint16_t* dcm_upe
asn_ulong2INTEGER(&dcm->dcm.currentPosition.timestamp, now); asn_ulong2INTEGER(&dcm->dcm.currentPosition.timestamp, now);
// Vehicle Dimensions // Vehicle Dimensions
dcm->dcm.vehicleDimensions.length.vehicleLengthValue = facilities->vehicle.length; //dcm->dcm.vehicleDimensions.length.vehicleLengthValue = facilities->vehicle.length;
dcm->dcm.vehicleDimensions.length.vehicleLengthConfidenceIndication = VehicleLengthConfidenceIndication_noTrailerPresent; //dcm->dcm.vehicleDimensions.length.vehicleLengthConfidenceIndication = VehicleLengthConfidenceIndication_noTrailerPresent;
dcm->dcm.vehicleDimensions.width = facilities->vehicle.width; //dcm->dcm.vehicleDimensions.width = facilities->vehicle.width;
dcm->dcm.plannedTrajectory.list.count = trajectory_len; dcm->dcm.plannedTrajectory.list.count = trajectory_len;
dcm->dcm.plannedTrajectory.list.size = trajectory_len * sizeof(void*); dcm->dcm.plannedTrajectory.list.size = trajectory_len * sizeof(void*);