From 75cfbf3d0206f12422091e6479c508c69445bf4a Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Sun, 10 Sep 2017 19:46:02 +0200 Subject: Controller src integration Change-Id: I0b18cd55057a784d183a5ba02c332810a34d1fca Signed-off-by: Romain Forlot --- conf.d/project/etc/sig-sources.json | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'conf.d/project/etc') diff --git a/conf.d/project/etc/sig-sources.json b/conf.d/project/etc/sig-sources.json index 95de2fa..6051e3e 100644 --- a/conf.d/project/etc/sig-sources.json +++ b/conf.d/project/etc/sig-sources.json @@ -10,50 +10,51 @@ { "api": "low-can", "info": "Low level binding to handle CAN bus communications", - "init": { + "actions": [{ + "label": "init", "function": "c/lua (depend on name) function to initialize binding", "args": { "arg": "first argument" } - }, - "get_signal": { + }, { + "label": "getSignal", "function": "c/lua (depend on name) function to get signals", "args": { "arg": "first argument" } - } - }, - { + }] + }, { "api": "gps", "info": "Low level binding which retrieve Satellite positionning values", - "init": { + "actions": [{ + "label": "init", "function": "c/lua (depend on name) function to initialize binding", "args": { "arg": "first argument" } - }, - "get_signal": { + }, { + "label": "getSignal", "function": "c/lua (depend on name) function to get signals", "args": { "arg": "first argument" } - } - }, - { + }] + }, { "api": "mraa", "info": "Low level binding which retrieve different values from several sensors like gyroscope, accelerometer, etc", - "init": { + "actions": [{ + "label": "init", "function": "c/lua (depend on name) function to initialize binding", "args": { "arg": "first argument" } - }, - "get_signal": { + }, { + "label": "getSignal", "function": "c/lua (depend on name) function to get signals", "args": { "arg": "first argument" } - } + }] } ] } -- cgit 1.2.3-korg