-
Notifications
You must be signed in to change notification settings - Fork 4
/
FormMain.cs
227 lines (199 loc) · 7.39 KB
/
FormMain.cs
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.NetworkInformation;
using System.Threading; // スレッド
using SOEM; // EtherCAT
namespace EasyTest
{
public partial class FormMain : Form
{
// 通信スレッド
Thread threadEtherCAT;
// 通信中フラグ
bool isConnected = false;
// ロック用オブジェクト
object m_lockobj = new object();
// サーボの角度指令値
int servo1_val = 90;
int servo2_val = 90;
// 初期化
public FormMain()
{
InitializeComponent();
// サーボの角度指令値の初期値をUIに反映
trackBar1.Value = servo1_val;
trackBar2.Value = servo2_val;
// UIの表示切替え
buttonDisconnect.Enabled = false;
// ネットワークインターフェースの列挙
updateNicList();
}
// Updateボタン
private void buttonUpdate_Click(object sender, EventArgs e)
{
// ネットワークインターフェースの列挙
updateNicList();
}
// ネットワークインターフェースの列挙
void updateNicList()
{
// コンボボックスのクリア
comboNicName.Items.Clear();
// 前回選択したネットワークインターフェース名を取得
string nicName = Properties.Settings.Default.NicName;
// 全てのネットワークインターフェースを取得
var interfaces = NetworkInterface.GetAllNetworkInterfaces();
// 取得したネットワークインターフェースをコンボボックスに追加する
bool selected = false;
foreach (var ni in interfaces)
{
var nic = new NicInfo(ni.Name, ni.Id);
comboNicName.Items.Add(nic);
// 前回選択したネットワークインターフェースがあれば選択
if (nic.Name.Equals(nicName))
{
comboNicName.SelectedItem = nic;
selected = true;
}
}
if (!selected && (interfaces.Length > 0))
{
comboNicName.SelectedIndex = 0;
}
}
// Connectボタン
private void buttonConnect_Click(object sender, EventArgs e)
{
try
{
// 接続処理
int result = EtherCAT.open(@"\Device\NPF_" + ((NicInfo)comboNicName.SelectedItem).ID);
if(result == EtherCAT.FAILED)
{
MessageBox.Show("ネットワークインターフェースが開けません",
"エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
result = EtherCAT.config();
if(result == EtherCAT.NO_SLAVES_FOUND)
{
MessageBox.Show("スレーブデバイスが見つかりません",
"エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
if(result == EtherCAT.NOT_ALL_OP_STATE)
{
MessageBox.Show("OPERATIONAL状態に移行できないデバイスがあります",
"エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// 設定の保存
Properties.Settings.Default.NicName = comboNicName.Text;
Properties.Settings.Default.Save();
// 通信中フラグをセット
isConnected = true;
// UIの表示切替え
buttonConnect.Enabled = false;
buttonDisconnect.Enabled = true;
buttonUpdate.Enabled = false;
comboNicName.Enabled = false;
// シリアル通信スレッドを起動
threadEtherCAT = new Thread(new ThreadStart(threadFunc_EtherCAT));
threadEtherCAT.Start();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
// Disconnectボタン
private void buttonDisconnect_Click(object sender, EventArgs e)
{
// シリアル通信中フラグをクリア
isConnected = false;
}
// EtherCAT通信スレッド処理
void threadFunc_EtherCAT()
{
while (true)
{
// サーボの角度指令値を出力バッファに設定
lock (m_lockobj)
{
EtherCAT.setOutputPDO(1, 0, (byte)servo1_val);
EtherCAT.setOutputPDO(2, 0, (byte)servo2_val);
}
// EtherCATのPDO転送
EtherCAT.transferPDO();
// ボリュームの値を入力バッファから取得
int[] vol = new int[2];
for(int i = 0; i < 2; i++)
{
byte vol_h = EtherCAT.getInputPDO(1+i, 0);
byte vol_l = EtherCAT.getInputPDO(1+i, 1);
vol[i] = ((int)vol_h << 8) | (int)vol_l;
}
// UIに反映
this.BeginInvoke((Action)(() =>
{
joystickBar1.Value = vol[0];
joystickBar2.Value = vol[1];
}));
// 停止判定
if (!isConnected)
{
break;
}
// 20msecスリープ
Thread.Sleep(10);
}// while(true)
// 通信終了処理
this.BeginInvoke((Action)(() =>
{
// 切断処理
EtherCAT.requestState(EtherCAT.ALL_SLAVES, EtherCAT.STATE_INIT);
EtherCAT.close();
// UIの表示切替え
buttonConnect.Enabled = true;
buttonDisconnect.Enabled = false;
buttonUpdate.Enabled = true;
comboNicName.Enabled = true;
}));
}
// フォームが閉じる前にスレッドの後始末を確認
private void FormMain_FormClosing(object sender, FormClosingEventArgs e)
{
if (isConnected)
{
isConnected = false;
}
if (threadEtherCAT != null)
{
threadEtherCAT.Join();
}
}
// トラックバー1(サーボ1に対応)が変更されたとき
private void trackBar1_Scroll(object sender, EventArgs e)
{
lock (m_lockobj)
{
servo1_val = trackBar1.Value;
}
}
// トラックバー2(サーボ2に対応)が変更されたとき
private void trackBar2_Scroll(object sender, EventArgs e)
{
lock (m_lockobj)
{
servo2_val = trackBar2.Value;
}
}
}
}