-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_template.json
92 lines (92 loc) · 2.63 KB
/
config_template.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
85
86
87
88
89
90
91
92
{
"app": {
"explorer": {
"module": "iquip.apps.explorer",
"cls": "ExplorerApp",
"pos": "left",
"trust": true
},
"logger": {
"module": "iquip.apps.logger",
"cls": "LoggerApp",
"pos": "bottom",
"args": {
"logFilePath": ""
}
},
"scheduler": {
"module": "iquip.apps.scheduler",
"cls": "SchedulerApp",
"pos": "bottom"
},
"monitor": {
"module": "iquip.apps.monitor",
"cls": "DeviceMonitorApp",
"pos": "right",
"args": {
"ttlInfo": {
"TTL_test_0": "ttl0",
"TTL_test_1": "ttl1"
},
"dacInfo": {
"DAC_test_0": {
"device": "zotino0",
"channel": 0
},
"DAC_test_1": {
"device": "zotino0",
"channel": 1
}
},
"ddsInfo": {
"numColumns": 2,
"DDS_test_0": {
"device": "urukul0",
"channel": 0,
"frequencyInfo": {
"min": 1,
"max": 100,
"unit": "MHz"
}
},
"DDS_test_1": {
"device": "urukul0",
"channel": 3,
"amplitudeInfo": {
"step": 0.1
}
}
}
}
},
"dataviewer": {
"module": "iquip.apps.dataviewer",
"cls": "DataViewerApp",
"pos": "floating",
"channel": ["MONITOR"]
},
"stage": {
"module": "iquip.apps.stage",
"cls": "StageControllerApp",
"pos": "right",
"args": {
"stages": {
"stage_name": {
"index": [0, 0],
"target": ["localhost", 1234, "target_name"]
}
},
"period": 0.5
}
}
},
"constant": {
"proxy_ip": "127.0.0.1",
"proxy_port": 8000,
"channels": {
"monitor": "MONITOR"
},
"icon_path": "resources/icon.png",
"background_path": "resources/background.png"
}
}