diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-26 16:19:49 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-28 16:11:48 +0100 |
commit | 1fa52a04542ed648b5a2a15b2f3d252f33202a33 (patch) | |
tree | 6cf276244f3defbc4995bf90db2919a9ddefcf1f /examples | |
parent | 3fb5cd5d762006c3bc20ffc7acd86f8a74156f9b (diff) |
Change signature of decoders
This commit changes the signature of decoders. It is
now necessary to specify the version of the signals
so that the low-can-generator generates the associated
wrapper and not need to modify the decoder already
developed.
Bug-AGL : SPEC-2780
Bug-AGL: SPEC-2976
Change-Id: I044b1a3a6bacb9fc59bd6d3f77a1dbc437a3aa86
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/OBD2/signals.json | 1 | ||||
-rw-r--r-- | examples/agl-vcar/signals.json | 1 | ||||
-rw-r--r-- | examples/basic/signals.json | 1 | ||||
-rw-r--r-- | examples/engine/signals.json | 1 | ||||
-rw-r--r-- | examples/hvac/signals.json | 1 | ||||
-rw-r--r-- | examples/j1939/j1939_parse.json | 1 | ||||
-rw-r--r-- | examples/tests/signal.json | 1 | ||||
-rw-r--r-- | examples/toyota/auris/signals.json | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/examples/OBD2/signals.json b/examples/OBD2/signals.json index 89276298..4940cee9 100644 --- a/examples/OBD2/signals.json +++ b/examples/OBD2/signals.json @@ -1,4 +1,5 @@ { "name": "example", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/agl-vcar/signals.json b/examples/agl-vcar/signals.json index ecf635ca..9fecd922 100644 --- a/examples/agl-vcar/signals.json +++ b/examples/agl-vcar/signals.json @@ -1,4 +1,5 @@ { "name": "AGL Virtual Car", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/basic/signals.json b/examples/basic/signals.json index dc2e346c..c41cdf38 100644 --- a/examples/basic/signals.json +++ b/examples/basic/signals.json @@ -1,4 +1,5 @@ { "name": "example", + "version": "1.0", "extra_sources": [ "handlers.cpp" ], diff --git a/examples/engine/signals.json b/examples/engine/signals.json index a64fa138..c8c4609b 100644 --- a/examples/engine/signals.json +++ b/examples/engine/signals.json @@ -1,4 +1,5 @@ { "name": "example", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/hvac/signals.json b/examples/hvac/signals.json index dbe4cf7d..0795cf60 100644 --- a/examples/hvac/signals.json +++ b/examples/hvac/signals.json @@ -1,4 +1,5 @@ { "name": "example", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/j1939/j1939_parse.json b/examples/j1939/j1939_parse.json index a5f8bcbc..3896acba 100644 --- a/examples/j1939/j1939_parse.json +++ b/examples/j1939/j1939_parse.json @@ -1,5 +1,6 @@ { "name": "Virtual J1939", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/tests/signal.json b/examples/tests/signal.json index a4de3584..1e706461 100644 --- a/examples/tests/signal.json +++ b/examples/tests/signal.json @@ -1,4 +1,5 @@ { "name": "AGL Virtual Car", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], diff --git a/examples/toyota/auris/signals.json b/examples/toyota/auris/signals.json index 5b726660..fd03a825 100644 --- a/examples/toyota/auris/signals.json +++ b/examples/toyota/auris/signals.json @@ -1,4 +1,5 @@ { "name": "example", + "version": "2.0", "extra_sources": [], "initializers": [], "loopers": [], |