1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
"id": "http://iot.bzh/download/public/schema/json/ctl-schema.json#",
"$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json#",
"metadata": {
"uid": "Test",
"version": "1.0",
"api": "afTest",
"info": "Configuration to test an emulated api",
"require": [
"low-can"
]
},
"testVerb": {
"uid": "launch_all_tests",
"info": "Launch all the tests",
"action": "lua://AFT#_launch_test",
"args": {
"trace": "low-can",
"files": "mapi_tests.lua"
}
},
"mapis": [{
"uid": "low-can",
"info": "Faked low-can API",
"libs": "mapi_low-can.lua",
"verbs": [
{
"uid": "subscribe",
"info": "Subscribe to CAN signals events",
"action": "lua://low-can#_subscribe"
},
{
"uid": "unsubscribe",
"info": "Unsubscribe previously suscribed signals.",
"action": "lua://low-can#_unsubscribe"
},
{
"uid": "get",
"info": "get a current value of CAN message",
"action": "lua://low-can#_get"
},
{
"uid": "list",
"info": "get a supported CAN message list",
"action": "lua://low-can#_list"
},
{
"uid": "auth",
"info": "Authenticate session to be raise Level Of Assurance.",
"action": "lua://low-can#_auth"
},
{
"uid": "write",
"info": "Write a CAN messages to the CAN bus.",
"action": "lua://low-can#_write"
}
],
"events": [{
"uid": "low-can/diagnostic_messages",
"action": "lua://AFT#_evt_catcher_"
},{
"uid": "low-can/messages_engine_speed",
"action": "lua://AFT#_evt_catcher_"
}]
}]
}
|