From 50f7e34b4e9f0cac3781befe7816962e5c3fadae Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Thu, 14 Dec 2023 18:56:11 -0500 Subject: [PATCH] vss-agl: Add audio control signals Add Vehicle.Cabin.Infotainment.Media.Audio.* signals for balance, fade, treble, and bass controls to our overlay. The plan is to work towards pushing these into upstream VSS. Bug-AGL: SPEC-5001 Change-Id: Ic779ea01936f2fa8b4d5cb918634d676bec53505 Signed-off-by: Scott Murray Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29533 Tested-by: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account --- .../vss/vss-agl/agl_vss_overlay.vspec | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec b/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec index cf9994ae5..6c0a08ae2 100644 --- a/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec +++ b/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec @@ -32,6 +32,45 @@ Vehicle.Cabin.Infotainment.Navigation.ElapsedDistance: description: Navigation elapsed distance. +# Define audio control signals + +Vehicle.Cabin.Infotainment.Media.Audio: + type: branch + description: Media audio controls. + +Vehicle.Cabin.Infotainment.Media.Audio.Balance: + datatype: int8 + type: actuator + min: -100 + max: 100 + unit: percent + description: Audio left/right balance. + +Vehicle.Cabin.Infotainment.Media.Audio.Fade: + datatype: int8 + type: actuator + min: -100 + max: 100 + unit: percent + description: Audio front/rear balance. + +Vehicle.Cabin.Infotainment.Media.Audio.Bass: + datatype: int8 + type: actuator + min: -100 + max: 100 + unit: percent + description: Audio low-frequency filter control. + +Vehicle.Cabin.Infotainment.Media.Audio.Treble: + datatype: int8 + type: actuator + min: -100 + max: 100 + unit: percent + description: Audio high-frequency filter control. + + # Define extra steering wheel switch signals, including DBC mappings Vehicle.Cabin.SteeringWheel: -- 2.16.6