Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDL 0262] New vehicle data SeatOccupancy #8

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/Common/Enums/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,7 @@
|VEHICLEDATA_STABILITYCONTROLSSTATUS|33||
|VEHICLEDATA_WINDOWSTATUS|34||
|VEHICLEDATA_HANDSOFFSTEERING|35||
|VEHICLEDATA_SEATOCCUPANCY|36||

### VideoStreamingProtocol

Expand Down
15 changes: 15 additions & 0 deletions docs/Common/Structs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1211,3 +1211,18 @@ There are no defined parameters for this struct
|location|Common.Grid|true||Describes the status of a parameter of roof, convertible roof, sunroof/moonroof etc.<br>If roof is open (AJAR), state will determine percentage of roof open.|
|status|[Common.DoorStatusType](../enums/#doorstatustype)|true||Describes the status of a parameter of roof, convertible roof, sunroof/moonroof etc.<br>If roof is open (AJAR), state will determine percentage of roof open.|
|state|Common.WindowState|false||Describes the status of a parameter of roof, convertible roof, sunroof/moonroof etc.<br>If roof is open (AJAR), state will determine percentage of roof open.|

### SeatStatus

|Name|Type|Mandatory|Additional|Description|
|:---|:---|:--------|:---------|:----------|
|seatLocation|Common.SeatLocation|true|||
|conditionActive|Boolean|true|||

### SeatOccupancy

|Name|Type|Mandatory|Additional|Description|
|:---|:---|:--------|:---------|:----------|
|seatsOccupied|Common.SeatStatus|false|array: true<br>minsize: 0<br>maxsize: 100|Seat status array containing location and whether the seats are occupied.|
|seatsBelted|Common.SeatStatus|false|array: true<br>minsize: 0<br>maxsize: 100|Seat status array containing location and whether the seats are belted.|

2 changes: 2 additions & 0 deletions docs/VehicleInfo/GetVehicleData/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|stabilityControlsStatus|Boolean|false||
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||

### Response

Expand Down Expand Up @@ -134,6 +135,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|stabilityControlsStatus|[Common.StabilityControlsStatus](../../common/structs/#stabilitycontrolsstatus)|false||
|windowStatus|[Common.WindowStatus](../../common/structs/#windowstatus)|false|array: true<br>minsize: 0<br>maxsize: 100|
|handsOffSteering|Boolean|false||
|seatOccupancy|[Common.SeatOccupancy](../../common/structs/#seatoccupancy)|false|

### Sequence Diagrams

Expand Down
1 change: 1 addition & 0 deletions docs/VehicleInfo/OnVehicleData/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|stabilityControlsStatus|[Common.StabilityControlsStatus](../../common/structs/#stabilitycontrolsstatus)|false||
|windowStatus|[Common.WindowStatus](../../common/structs/#windowstatus)|false|array: true<br>minsize: 0<br>maxsize: 100|
|handsOffSteering|Boolean|false||
|seatOccupancy|[Common.SeatOccupancy](../../common/structs/#seatoccupancy)|false||

### Sequence Diagrams

Expand Down
2 changes: 2 additions & 0 deletions docs/VehicleInfo/SubscribeVehicleData/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Purpose
|stabilityControlsStatus|Boolean|false||
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||

### Response

Expand Down Expand Up @@ -103,6 +104,7 @@ If multiple applications are trying to restore the same subscription, SDL should
|stabilityControlsStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|windowStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|handsOffSteering|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|seatOccupancy|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||

### Sequence Diagrams

Expand Down
2 changes: 2 additions & 0 deletions docs/VehicleInfo/UnsubscribeVehicleData/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Purpose
|stabilityControlsStatus|Boolean|false||
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||

### Response

Expand Down Expand Up @@ -103,6 +104,7 @@ In the case during data resumption with multiple applications, a subscription is
|stabilityControlsStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|windowStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|handsOffSteering|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|seatOccupancy|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||

### Sequence Diagrams

Expand Down