diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-08-13 10:38:17 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-08-17 12:35:34 +0000 |
commit | b656c0db27053e3f2e23dc37c053cd17536b0129 (patch) | |
tree | 4ef0f019623e6b519f94c0b393fe7662ce42d120 /recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec | |
parent | 39a815a83faeecf0e382f39b14021aa79913308a (diff) |
vss-agl: Fix engine speed datatype in overlays
The Vehicle.Powertrain.CombustionEngine.Speed signal datatype was
accidentally being overwritten as a float in our VSS overlays for
configuring the CAN provider. I believe this was an artifact of
some cutting in pasting when the signal was added and upstream
recommended switching away from using OBD signals as the plan is
to deprecate those. There are some downstream changes required in
the homescreen and dashboard applications to handle this being
fixed.
Bug-AGL: SPEC-5204
Change-Id: I3582dbbef6cf915f30a50804174753da12b905ae
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30173
Tested-by: Jenkins Job builder account
ci-image-boot-test: Jenkins Job builder account
Reviewed-by: Naoto YAMAGUCHI <naoto.yamaguchi@aisin.co.jp>
ci-image-build: Jenkins Job builder account
Diffstat (limited to 'recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec')
-rw-r--r-- | recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec b/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec index b8a01e362..a08d94a49 100644 --- a/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec +++ b/recipes-connectivity/vss/vss-agl/agl_vss_overlay.vspec @@ -10,13 +10,11 @@ Vehicle.Speed: signal: PT_VehicleAvgSpeed Vehicle.Powertrain.CombustionEngine.Speed: - datatype: float + datatype: uint16 type: sensor dbc2vss: signal: PT_EngineSpeed interval_ms: 100 - transform: - math: "floor(x+0.5)" vss2dbc: signal: PT_EngineSpeed |