Skip to content

Commit

Permalink
applying instances to ObstacleDetection, other Obstacle attributes an…
Browse files Browse the repository at this point in the history
…d adding Adaptive to CruiseControl

Signed-off-by: Ted Guild <[email protected]>
  • Loading branch information
tguild authored and erikbosch committed Dec 10, 2024
1 parent 730cf7e commit d7bac6a
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions spec/ADAS/ADAS.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ CruiseControl.IsError:
type: sensor
description: Indicates if cruise control system incurred an error condition. True = Error. False = No Error.

CruiseControl.IsAdaptive:
datatype: boolean
type: actuator
description: Indicates if cruise control system is adaptive (i.e. actively controls speed).

CruiseControl.AdaptiveDistanceSet:
datatype: float
type: actuator
unit: m
description: Distance in meters to keep from lead vehicle

CruiseControl.AdaptiveIntervalSet:
datatype: uint8
type: actuator
description: Follow distance setting, commonly 1-5 with 1 being closest.

#
# Lane Departure Detection System
#
Expand Down Expand Up @@ -113,6 +129,9 @@ LaneDepartureDetection.IsError:
#
ObstacleDetection:
type: branch
instances:
- ["Front", "Rear"]
- ["Left", "Center", "Right"]
description: Signals form Obstacle Sensor System.

ObstacleDetection.IsEnabled:
Expand All @@ -131,6 +150,28 @@ ObstacleDetection.IsError:
type: sensor
description: Indicates if obstacle sensor system incurred an error condition. True = Error. False = No Error.

ObstacleDetection.Distance:
datatype: float
type: sensor
unit: m
description: Distance in meters to detected object

ObstacleDetection.TimeGap:
datatype: int32
type: sensor
unit: ms
description: Time in milliseconds before potential impact object

ObstacleDetection.WarningType:
datatype: string
type: sensor
allowed: [
'UNDEFINED', # Object detection warning not further categorized
'CROSS_TRAFFIC', # Detected object is on an indirect trajectory that may intersect
'BLIND_SPOT', # Detected object may not be in driver line of sight, including from mirrors
]
description: Indicates the type of obstacle warning detected as some track not only the presence of an obstacle but potential intercepting trajectory or other characteristics.
comment: Undefined obstacle warning type would merely alert of presence of obstacle and may measure distance.

#
# Antilock Braking System
Expand Down

0 comments on commit d7bac6a

Please sign in to comment.