The COVESA VSS project has public two GitHub repositories
- Vehicle Signal Specification (VSS), containing signal specifications and documentation.
- VSS Tools, containing tools for validating and transforming VSS specifications.
The examples below refer to the VSS repository, but the process is similar for the VSS-Tools repository.
There are two main methods to propose changes or extensions to VSS:
- If you have an idea or a question you can create an issue in GitHub.
- If you already have prepared changes or extension that you think would be interesting for COVESA to include in VSS then you can create a Pull Request (PR).
All contributions must follow the COVESA contribution guidelines.
The VSS project has regular meetings at Tuesdays 16.00 CET (see COVESA VSS Wiki). In the meetings Pull Requests and Issues are discussed, and if a Pull Request is acceptable the meeting will decide that it shall be merged. Everyone interested is welcome to join the meetings.
This is the typical workflow for preparing a pull request. A Github account is required.
- Create a personal or company fork of the VSS repository and/or VSS-Tools repository.
- Clone the forked repository into your local development environment.
- Set up your local development environment, see BUILD.md for some guidance.
- Create a local branch based on the VSS master branch to use for the proposed changes.
- Introduce the wanted changes or extensions in your local development environment, see guidelines below. If you want change/extend VSS-signals, it is the *.vspec files in the spec folder that needs to be updated.
- Verify that your changes fulfil VSS Continuous Integration requirements, see BUILD.md for some guidance.
- Create a commit and upload to your own fork.
- In the GitHub UI create a Pull Request from your fork to the master branch of the VSS repository.
- Validate that automatic build checks for the PR succeed.
- The PR creator shall follow up on any comments or questions received on the Pull Request.
- The PR will be discussed at one of the next VSS weekly meetings. It is preferable if the PR creator can participate and give a quick introduction on the rationale for the change.
- Unless trivial, PRs shall typically be open for at least a week before merging is considered, to give time for comments.
- If needed, the PR creator needs to refactor the PR to address received comments and remarks.
- After a while, if all comments and concerns have been sorted out and no-one objects merging the PR the meeting will decide to merge the PR. It is not guaranteed that all PRs will be accepted. The VSS meeting may reject and close Pull Requests.
- A VSS maintainer will perform the merge.
This section includes general guidelines and recommendations for anyone interested in contributing to VSS.
COVESA has defined contribution guidelines.
Every contribution must carry the following sign-off line with your real name and email address:
Signed-off-by: Firstname Lastname <[email protected]>
By supplying this sign-off line, you indicate your acceptance of the COVESA Certificate of Origin.
If using git command line you can add a sign-off by using the -s
argument when creating a commit.
Signals added to standard VSS shall be generic, i.e. it shall be possible that other manufacturers can reuse the signal. Manufacturer-specific signals shall preferably be part of private overlays, and not part of standard VSS.
VSS aims to put all signals in a logical path based on physical topology of the vehicle.
As an example, signals related to wheels should typically reside under Vehicle.Chassis.Axle
.
When proposing a new signal, reuse an existing path if a relevant path exists.
VSS has no strict rules that every branch must have its own file, but if a file becomes too big you can consider splitting it if feasible.
It shall be possible to interpret a signal value by reading the signal description. Describe if needed how the value shall be calculated/interpreted, for example if it is based on a standard or if it is up to the manufacturer to select algorithm/method.
- Example: A signal Vehicle.Weight would be ambiguous unless you specify that it refers to e.g. gross weight or curb weight.
- Example: Specifying an allowed value
MODE_2
is ambiguous unless you also specify whatMODE_2
means, e.g. by referring to a standard.
VSS generally avoids to have duplicates in the signal tree, i.e. signals with same purpose and description in different part of the tree.
Try to reuse the same style as used for existing signals.
Only specify min/max-values if there is a logical reason to limit the range.
Boolean signals should start with Is*
.
American English is preferred over British English.
No trailing blanks.
Follow the style guide in the documentation.
VSS is not concerned with how signals are transmitted, and does not consider scaling/offset typically used in transport protocols. VSS signals typically use the unit used by humans when talking about the value, but prefers SI-units when feasible, see documentation for all supported units. If it is unlikely that someone is interested in decimals for this value, select a signed or unsigned integer type. Select a size which with reasonable margins can cover all vehicles. If it is likely that decimal values are needed select float or if relevant double.
VSS sometimes change or remove existing signals, but only if there is a good reason. Merging can be delayed, as VSS may decide to wait with the change until the next major release is prepared.
To avoid time consuming refactoring it could for bigger contributions be relevant to ask VSS if the wanted changes seems to be reasonable and likely will be accepted by VSS. Create an issue and describe what you intend to do and ask for feedback. You can also create a draft pull request at an early stage and ask for comments.