Commit 7d8d0af9 authored by urhahne's avatar urhahne
Browse files

Merge branch 'WI-001958' of https://forge.etsi.org/rep/ITS/asn1/avp_ts103882 into WI-001958

parents 1fa954e4 55b56494
Loading
Loading
Loading
Loading
Loading
+10 −10
Original line number Original line Diff line number Diff line
@@ -371,9 +371,9 @@ The data element OperationModeEnum reports the vehicle' general state. It can al
 - 3 - `driving(3)`       		  - The vehicle is in automted mode and actively follows one of the control interfaces (waypoints, direct control, ...). It hasn't reached the end of the given path yet. Also applies if the vehicle stopped temporarily,
 - 3 - `driving(3)`       		  - The vehicle is in automted mode and actively follows one of the control interfaces (waypoints, direct control, ...). It hasn't reached the end of the given path yet. Also applies if the vehicle stopped temporarily,
 - 4 - `terminating(4)`   		  - The vehicle left automated mode and is terminating related functions,
 - 4 - `terminating(4)`   		  - The vehicle left automated mode and is terminating related functions,
 - 5 - `suspend (5)` 			    - The vehicle is in a critical error state and requires external operator intervention,
 - 5 - `suspend (5)` 			    - The vehicle is in a critical error state and requires external operator intervention,
 - 6 - `temp-error (6)`        - The vehicle is in a non-critical error state and is initiating a deceleration into stop and hold, prior to suspend,
 - 6 - `tempError (6)`         - The vehicle is in a non-critical error state and is initiating a deceleration into stop and hold, prior to suspend,
 - 7 - `human-in-control (7)`  - Manual control of the vehicle has been taken over ,
 - 7 - `humanInControl (7)`    - Manual control of the vehicle has been taken over ,
 - 8 - `station-hold (8)`		  - The external mfg./customer environment interlocks have taken over and is holding the vehicle from marshalling.
 - 8 - `stationHold (8)`		    - The external mfg./customer environment interlocks have taken over and is holding the vehicle from marshalling.


Values:
Values:
* **unknown** (0)<br>
* **unknown** (0)<br>
@@ -382,9 +382,9 @@ Values:
* **driving** (3)<br>
* **driving** (3)<br>
* **terminating** (4)<br>
* **terminating** (4)<br>
* **suspend** (5)<br>
* **suspend** (5)<br>
* **temp-error** (6)<br>
* **tempError** (6)<br>
* **human-in-control** (7)<br>
* **humanInControl** (7)<br>
* **station-hold** (8)<br>
* **stationHold** (8)<br>
```asn1
```asn1
OperationModeEnum ::= ENUMERATED {
OperationModeEnum ::= ENUMERATED {
  unknown           (0),
  unknown           (0),
@@ -393,9 +393,9 @@ OperationModeEnum ::= ENUMERATED {
  driving           (3),       		
  driving           (3),       		
  terminating       (4),   		
  terminating       (4),   		
  suspend           (5), 				
  suspend           (5), 				
  temp-error        (6),           
  tempError         (6),           
  human-in-control  (7), 		
  humanInControl    (7), 		
  station-hold      (8),		    
  stationHold       (8),		    
  ...
  ...
}
}
```
```