-
Notifications
You must be signed in to change notification settings - Fork 6
/
dialoghelp.ui
66 lines (62 loc) · 1.88 KB
/
dialoghelp.ui
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>568</width>
<height>378</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<widget class="QPlainTextEdit" name="plainTextEdit">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>561</width>
<height>331</height>
</rect>
</property>
<property name="plainText">
<string>
Init string parameters:
1 2 4 5 6 7 8
0 ; device_serial_number ; speed ; tseg1 ; tseg2 ; sjw ; brp
where:
1 - device type: for "TouCAN", "TouCAN Marine", "TouCAN Duo" this parameter always == "0"
2 - device serial number: always 8 symbols like "12345678"
3 - CAN interface speed: standard speeds: 10;20;50;100;125;250;500;1000
4 - CAN bus parameter "tseg1"
5 - CAN bus parameter "tseg2"
6 - CAN bus parameter "sjw"
7 - CAN bus parameter "brp"
If standard speed list is used next arguments can be skipped.
For example init string will looks like "0; 12345678; 1000"
For non standard CAN bus speeds: "speed" parameter must be = "0"
For example 1000 mbit speed init string will looks like: "0;12345678;0;7;2;2;5"
CAN interface clock is : 100MHz
</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>440</x>
<y>340</y>
<width>80</width>
<height>22</height>
</rect>
</property>
<property name="text">
<string>Ok</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>