forked from carlmartus/signalbroker-server
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinterfaces_referense.json
84 lines (82 loc) · 2.06 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
79
80
81
82
83
84
{
"default_namespace": "VirtualCanInterface",
"chains": [
{
"type" : "can",
"namespace" : "PhysicalCanInterface",
"device_name" : "can0",
"dbc_file" : "configuration/can_files/can_one.dbc"
},
{
"type" : "canfd",
"namespace" : "PhysicalCanFDInterface",
"device_name" : "can1",
"dbc_file" : "configuration/can_files/canfd_one.dbc"
},
{
"type" : "can",
"namespace" : "VirtualCanInterface",
"device_name" : "vcan1",
"dbc_file" : "configuration/can_files/can_two.dbc"
},
{
"namespace": "UDPCanInterface",
"type": "udp",
"dbc_file": "configuration/can_files/can_three.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/lin_one.ldf",
"schedule_file": "configuration/ldf_files/lin_one.ldf",
"schedule_table_name": "linoneSchedule",
"schedule_autostart": false
},
{
"device_name": "virtual",
"namespace": "VirtualInterface",
"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"
]
}
]
}
]
}