Commit 0c498cf9 authored by mullers's avatar mullers
Browse files

changes to align with CDD_1112

parent 1126a4a0
Loading
Loading
Loading
Loading
+30 −5
Original line number Diff line number Diff line
@@ -340,7 +340,7 @@ StationarySince ::= ENUMERATED { lessThan1Minute(0), lessThan2Minutes(1), lessTh
Temperature ::= INTEGER { equalOrSmallerThanMinus60Deg (-60), oneDegreeCelsius(1), equalOrGreaterThan67Deg(67) } (-60..67)

TrafficRule ::= ENUMERATED { noPassing(0),
 noPassingForTrucks(1), ...
 noPassingForTrucks(1), passToRight(2), passToLeft(3),  ...
 }

WheelBaseVehicle ::= INTEGER { tenCentimeters(1), unavailable(127) } (1..127)
@@ -420,7 +420,24 @@ SteeringWheelAngleConfidence ::= INTEGER { equalOrWithinOnePointFiveDegree (1),

TimestampIts ::= INTEGER { utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1) } (0..4398046511103)

VehicleRole ::= ENUMERATED { default(0), publicTransport(1), specialTransport(2), dangerousGoods(3), roadWork(4), rescue(5), emergency(6), safetyCar(7) }
VehicleRole ::= ENUMERATED { 
	default(0),
	publicTransport(1),
	specialTransport(2), 
	dangerousGoods(3), 
	roadWork(4), 
	rescue(5), 
	emergency(6), 
	safetyCar(7),
	agriculture(8),
	commercial(9),
	military(10),
	roadOperator(11),
	taxi(12), 
	reserved1(13),
	reserved2(14),
	reserved3(15)
}

YawRate::= SEQUENCE {
 yawRateValue YawRateValue,
@@ -468,7 +485,8 @@ ProtectedCommunicationZone ::= SEQUENCE {
  expiryTime TimestampIts OPTIONAL,
  protectedZoneLatitude	Latitude,
  protectedZoneLongitude	Longitude,
  protectedZoneRadius       INTEGER {oneMeter(1)} (1..255,...) OPTIONAL
  protectedZoneRadius       ProtectedZoneRadius OPTIONAL,
  protectedZoneID ProtectedZoneID OPTIONAL
}

Traces ::= SEQUENCE SIZE(1..7) OF PathHistory
@@ -495,7 +513,14 @@ CenDsrcTollingZonesVehicle ::= SEQUENCE (SIZE(1..5)) OF CenDsrcTollingZone

CenDsrcTollingZone ::=  SEQUENCE {
  protectedZoneLatitude		Latitude,
  protectedZoneLongitude			Longitude
  protectedZoneLongitude	Longitude,
  cenDsrcTollingZoneID		CenDsrcTollingZoneID OPTIONAL
}

ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...)

ProtectedZoneID ::= INTEGER (0.. 134217727)

CenDsrcTollingZoneID ::= ProtectedZoneID

END
 No newline at end of file