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

My new signals #16

Open
wants to merge 1 commit into
base: master
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
27 changes: 27 additions & 0 deletions spec/Vehicle/CrashManagement.vspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright (c) 2024 Contributors to COVESA
#
# This program and the accompanying materials are made available under the
# terms of the Mozilla Public License 2.0 which is available at
# https://www.mozilla.org/en-US/MPL/2.0/
#
# SPDX-License-Identifier: MPL-2.0


CrashManagement:
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It can be discussed if we want to have the signals on top "Vehicle" level, in "Body" or if we want a separate branch for signals related to crash prevention and crash detection. Exact definition/meaning of signals can also be discussed

type: branch
description: Data related to crash prevention and reporting.

CrashManagement.IsRollover:
datatype: boolean
type: sensor
description: True if vehicle has detected a roll-over event.
comment: After a rollover event signal shall remain True until reset
according to OEM procedure.

CrashManagement.IsPedestrianCrashExpected:
datatype: boolean
type: sensor
description: Indicates if vehicle expects a crash with a pedestrian in the near future.
comment: A vehicle can use this information to deploy countermeasures,
like pushing the hood upwards to limit consequences.
The signal may be set to False after the crash or if the crash did not happen.
2 changes: 2 additions & 0 deletions spec/VehicleSignalSpecification.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -206,3 +206,5 @@ Vehicle.Connectivity:
#include Vehicle/Connectivity.vspec Vehicle.Connectivity

#include Vehicle/Diagnostics.vspec Vehicle

#include Vehicle/CrashManagement.vspec Vehicle