Skip to content

Commit

Permalink
asn1: fix erroneous adoption of ETSI errata on CDD LanePosition
Browse files Browse the repository at this point in the history
Change-Id: I47b89290ddc28f6c49a2e9a1afc8595742b97905
  • Loading branch information
riebl committed May 2, 2021
1 parent 0091482 commit e3d563d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asn1/TS102894-2v131-CDD.asn
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ HeadingValue ::= INTEGER {wgs84North(0), wgs84East(900), wgs84South(1800), wgs84

HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127)

LanePosition ::= INTEGER {offTheRoad(-1), innerHardShoulder(0), innermostDrivingLane(1), secondLaneFromOutside(2), outerHardShoulder(14)} (-1..14)
LanePosition ::= INTEGER {offTheRoad(-1), innerHardShoulder(0), innermostDrivingLane(1), secondLaneFromInside(2), outerHardShoulder(14)} (-1..14)

ClosedLanes ::= SEQUENCE {
innerhardShoulderStatus HardShoulderStatus OPTIONAL,
Expand Down
2 changes: 1 addition & 1 deletion vanetza/asn1/its/LanePosition.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ typedef enum LanePosition {
LanePosition_offTheRoad = -1,
LanePosition_innerHardShoulder = 0,
LanePosition_innermostDrivingLane = 1,
LanePosition_secondLaneFromOutside = 2,
LanePosition_secondLaneFromInside = 2,
LanePosition_outerHardShoulder = 14
} e_LanePosition;

Expand Down

0 comments on commit e3d563d

Please sign in to comment.