-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for multiple wiper systems as an overlay
- Loading branch information
1 parent
b289cdf
commit 92bbb8b
Showing
3 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# OVERLAYS | ||
|
||
This directory contains overlays for VSS. Use of overlays is a new concept for VSS. | ||
The overlays in this folder shall currently be seen as examples only, and are not part of the official VSS specification. | ||
|
||
## Profiles | ||
|
||
Larger overlays to adapt VSS to a specific vehicle category, like motorbikes. | ||
|
||
## Extensions | ||
|
||
Smaller overlays typically to be applied after applying profiles (if any). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# (C) 2022 Robert Bosch GmbH | ||
# | ||
# Overlay to extend wiper system to support multiple instances | ||
# Dependencies to other overlays: None | ||
# Known conflicts with other overlays: None | ||
# | ||
Vehicle: | ||
type: branch | ||
|
||
Vehicle.Body: | ||
type: branch | ||
description: All body components. | ||
|
||
Vehicle.Body.Windshield: | ||
type: branch | ||
instances: ["Front", "Rear"] | ||
description: Windshield signals. | ||
|
||
Vehicle.Body.Windshield.Wiping: | ||
type: branch | ||
description: Windshield wiper signals. | ||
|
||
# Standard VSS does not specify instances | ||
# This overlay specifies two instances, Primary and Secondary | ||
|
||
Vehicle.Body.Windshield.Wiping.System: | ||
type: branch | ||
instances: [Primary, Secondary] | ||
description: Signals to control behavior of wipers in detail. | ||
comment: These signals are typically not directly available to the user/driver of the vehicle. | ||
Primary refers to the primary wiper system for the windshield. | ||
Secondary refers to the secondary wiper system for the same windshield. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters