aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2019-11-29 12:25:18 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2020-01-09 16:25:36 +0100
commit54f33f54ebc88335f14886eaefa1d08144b06fee (patch)
treef3b35245d0ce319b47ce3f7f63179021f2ba9a5a
parent438ab8bed89280d0ae4a2ef1be7e113160212c25 (diff)
config: Fix wrong controller configuration file name
Bug-AGL: SPEC-2988 Change-Id: I6491c1bb4b64d7f005f220e4d2358ce787bf84af Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--conf.d/project/etc/control-agl-service-can-low-level.json24
-rw-r--r--conf.d/project/etc/control-low-can-j1939.json29
2 files changed, 53 insertions, 0 deletions
diff --git a/conf.d/project/etc/control-agl-service-can-low-level.json b/conf.d/project/etc/control-agl-service-can-low-level.json
new file mode 100644
index 00000000..0b10d33d
--- /dev/null
+++ b/conf.d/project/etc/control-agl-service-can-low-level.json
@@ -0,0 +1,24 @@
+{
+ "$schema": "",
+ "metadata": {
+ "uid": "Low Can",
+ "version": "1.0",
+ "api": "low-can",
+ "info": "Low can Configuration"
+ },
+ "config": {
+ "active_message_set": 0,
+ "dev-mapping": {
+ "hs": "can0",
+ "ls": "can0"
+ },
+ "diagnostic_bus": "hs"
+ },
+ "plugins": [
+ {
+ "uid": "agl-vcar-signals",
+ "info": "agl-vcar signals",
+ "libs": "agl-vcar-signals.ctlso"
+ }
+ ]
+}
diff --git a/conf.d/project/etc/control-low-can-j1939.json b/conf.d/project/etc/control-low-can-j1939.json
new file mode 100644
index 00000000..3e87a695
--- /dev/null
+++ b/conf.d/project/etc/control-low-can-j1939.json
@@ -0,0 +1,29 @@
+{
+ "$schema": "",
+ "metadata": {
+ "uid": "Low Can",
+ "version": "1.0",
+ "api": "low-can",
+ "info": "Low can Configuration"
+ },
+ "config": {
+ "active_message_set": 0,
+ "dev-mapping": {
+ "hs": "can0",
+ "ls": "can0"
+ },
+ "diagnostic_bus": "hs"
+ },
+ "plugins": [
+ {
+ "uid": "agl-vcar-signals",
+ "info": "agl-vcar signals",
+ "libs": "agl-vcar-signals.ctlso"
+ },
+ {
+ "uid": "j1939-signals",
+ "info": "J1939 signals",
+ "libs": "j1939-signals.ctlso"
+ }
+ ]
+}