forked from carlmartus/signalbroker-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaces_referense.json
78 lines (76 loc) · 1.88 KB
/
interfaces_referense.json
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
67
68
69
70
71
72
73
74
75
76
77
78
{
"default_namespace": "VirtualCanInterface",
"chains": [
{
"type" : "can",
"namespace" : "PhysicalCanInterface",
"device_name" : "vcan0",
"dbc_file" : "configuration/can_files/canone.dbc"
},
{
"type" : "can",
"namespace" : "VirtualCanInterface",
"device_name" : "vcan1",
"dbc_file" : "configuration/can_files/canone.dbc"
},
{
"namespace": "UDPCanInterface",
"type": "udp",
"dbc_file": "configuration/can_files/canone.dbc",
"device_name": "udp2",
"server_port": 2001,
"target_host": "127.0.0.1",
"target_port": 2000,
"fixed_payload_size": 8
},
{
"namespace": "LinSlave",
"type": "lin",
"config": {
"device_identifier": 1,
"server_port": 2014,
"target_host": null,
"target_port": 2013
},
"device_name": "lin",
"node_mode": "slave",
"ldf_file": "configuration/ldf_files/linone.ldf",
"schedule_file": "configuration/ldf_files/linone.ldf",
"schedule_table_name": "linoneSchedule",
"schedule_autostart": false
},
{
"device_name": "virtual",
"namespace": "virtual",
"type": "virtual"
}
],
"gateway": {
"gateway_pid": "gateway_pid",
"tcp_socket_port": 4040
},
"auto_config_boot_server": {
"port": 4000,
"server_pid": "auto_config_boot_server_pid"
},
"reflectors": [
{
"application_pid": "reflector1",
"reflect": [
{
"source": "PhysicalCanInterface",
"dest": "VirtualCanInterface",
"exclude": []
},
{
"source": "VirtualCanInterface",
"dest": "PhysicalCanInterface",
"exclude": [
"FrameA",
"FrameB"
]
}
]
}
]
}