This repository was archived by the owner on Apr 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
353 lines (307 loc) · 13.1 KB
/
Form1.cs
File metadata and controls
353 lines (307 loc) · 13.1 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
using System;
using System.Windows.Forms;
using System.IO;
using System.IO.Ports;
namespace BlockFirmwareWriter
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
// set role and mode combo box
comboRole.Items.AddRange(Enum.GetNames(typeof(FlocRole)));
comboRole.SelectedIndex = 0;
comboMode.Items.AddRange(Enum.GetNames(typeof(FlocMode)));
comboMode.SelectedIndex = 0;
// check existence of "avrdude with arduino" default path
if (File.Exists(AVRDUDE_DEFAULT_PATH))
{
tbExePath.Text = AVRDUDE_DEFAULT_PATH;
}
if (File.Exists(AVRDUDE_DEFAULT_CONF_PATH))
{
tbConfPath.Text = AVRDUDE_DEFAULT_CONF_PATH;
}
// check existence of esptool.exe
var documentPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
if (File.Exists(documentPath + @"\Arduino\hardware\espressif\esp32\tools\esptool.exe"))
{
tbEsptoolPath.Text = documentPath + @"\Arduino\hardware\espressif\esp32\tools\esptool.exe";
}
var apppath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
if (File.Exists(apppath + @"\Arduino15\packages\esp32\tools\esptool_py\2.6.1\esptool.exe"))
{
tbEsptoolPath.Text = apppath + @"\Arduino15\packages\esp32\tools\esptool_py\2.6.1\esptool.exe";
}
// get com ports
string[] ports = SerialPort.GetPortNames();
foreach (string port in ports)
{
comboCOM.Items.Add(port);
}
if (comboCOM.Items.Count > 0)
comboCOM.SelectedIndex = 0;
}
private void 終了XToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
private void BtnSelectExe_Click(object sender, EventArgs e)
{
var ofd = new OpenFileDialog();
ofd.Title = "avrdude.exeを選択";
ofd.FileName = "avrdude.exe";
ofd.InitialDirectory = Path.GetDirectoryName(AVRDUDE_DEFAULT_PATH);
ofd.Filter = "実行可能ファイル(*.exe)|*.exe";
if (ofd.ShowDialog() == DialogResult.OK)
{
tbExePath.Text = ofd.FileName;
}
}
private void BtnSelectConf_Click(object sender, EventArgs e)
{
var ofd = new OpenFileDialog();
ofd.Title = "avrdudeの設定ファイルを選択";
ofd.FileName = "avrdude.conf";
ofd.InitialDirectory = @"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\";
ofd.Filter = "avrdude設定ファイル(*.conf)|*.conf";
if (ofd.ShowDialog() == DialogResult.OK)
{
tbConfPath.Text = ofd.FileName;
}
}
private void BtnSelectHex_Click(object sender, EventArgs e)
{
var ofd = new OpenFileDialog();
ofd.Title = "HEXファイルを選択";
ofd.InitialDirectory = Environment.CurrentDirectory;
ofd.Filter = "IntelHEXファイル(*.hex)|*.hex";
if (ofd.ShowDialog() == DialogResult.OK)
{
tbHexPath.Text = ofd.FileName;
}
}
private void BtnSelectToolPath_Click(object sender, EventArgs e)
{
var apppath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
var ofd = new OpenFileDialog();
ofd.Title = "esptool.exeを選択";
ofd.FileName = "esptool.exe";
ofd.InitialDirectory = apppath + @"\Arduino15\packages\esp32\tools\esptool_py\2.6.1\esptool.exe";
ofd.Filter = "実行可能ファイル(*.exe)|*.exe";
if (ofd.ShowDialog() == DialogResult.OK)
{
tbEsptoolPath.Text = ofd.FileName;
}
}
private void BtnSelectBinPath_Click(object sender, EventArgs e)
{
var ofd = new OpenFileDialog();
ofd.Title = "ファームウェアバイナリデータを選択";
ofd.InitialDirectory = Environment.CurrentDirectory;
ofd.Filter = "バイナリファイル(*.bin)|*.bin";
if (ofd.ShowDialog() == DialogResult.OK)
{
tbBinPath.Text = ofd.FileName;
}
}
private void TbFilePath_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effect = DragDropEffects.All;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void TbFilePath_DragDrop(object sender, DragEventArgs e)
{
var files = (string[])e.Data.GetData(DataFormats.FileDrop, false);
if (files.Length > 0)
{
(sender as TextBox).Text = files[0];
}
}
private void 実行テストTToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
if (m_avrdude.Execute(checkOnlyExeWorks: true).Success)
{
MessageBox.Show("avrdudeの実行に成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
throw new Exception();
}
}
catch (Exception)
{
MessageBox.Show("avrdudeの実行に失敗しました。設定を確認してください。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void 単体実行EToolStripMenuItem_Click(object sender, EventArgs e)
{
m_avrdude.OpenCmd(openPromptOnly: true);
}
private void BtnWriteLfuse_Click(object sender, EventArgs e)
{
try
{
m_cmdBlock.WriteFuseBit(m_avrdude);
MessageBox.Show("フューズビットの書き込みに成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception)
{
MessageBox.Show("フューズビットの書き込みに失敗しました。接続を確認してください。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void ATtiny85テストAToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
if (m_avrdude.Execute("-B 3").Success)
{
MessageBox.Show("ATtiny85への接続が成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
throw new Exception();
}
}
catch (Exception)
{
MessageBox.Show("ATtiny85への接続が失敗しました。avrdudeのパスとUSBaspの接続等を確認してください。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void FuseBit確認ToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
var fuses = m_cmdBlock.GetFuseBit(m_avrdude);
MessageBox.Show($"efuse: {fuses.ExtFuse:X2}, hfuse: {fuses.HFuse:X2}, lfuse: {fuses.LFuse:X2}", this.Text);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void BtnWriteHex_Click(object sender, EventArgs e)
{
try
{
m_cmdBlock.WriteHex(m_avrdude, tbHexPath.Text);
MessageBox.Show("ファームウェアの書き込みに成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (FileNotFoundException ex)
{
MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch (Exception)
{
MessageBox.Show("ファームウェアの書き込みに失敗しました。接続や設定を確認してください。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void BtnWriteRom_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(tbUidH.Text) || string.IsNullOrEmpty(tbUidL.Text))
{
MessageBox.Show("UIDの設定が適切ではありません。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
var role = (byte)(Enum.Parse(typeof(FlocRole), comboRole.SelectedItem.ToString()));
var mode = (byte)(Enum.Parse(typeof(FlocMode), comboMode.SelectedItem.ToString()));
var uid_h = Convert.ToByte(tbUidH.Text, 16);
var uid_l = Convert.ToByte(tbUidL.Text, 16);
var msg = "この情報を登録します。よろしいですか?\n";
msg += "Role: " + comboRole.SelectedItem.ToString() + "\n";
msg += $"UID: {uid_h:X2}.{uid_l:X2}\n";
msg += "Mode: " + comboMode.SelectedItem.ToString();
var ret = MessageBox.Show(msg, this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (ret == DialogResult.Yes)
{
var rom = new EEPROM();
rom.Set(0x01, role, uid_h, uid_l, mode);
try
{
m_cmdBlock.WriteRom(m_avrdude, rom);
MessageBox.Show("EEPROMへの書き込みに成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
private void 設定確認SToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
var rom = m_cmdBlock.GetRom(m_avrdude);
var msg = "Saved: " + (rom.Saved ? "true" : "false") + "\n";
msg += "Role: " + (rom.Role.HasValue ? Enum.GetName(typeof(FlocRole), rom.Role) : "(none)") + "\n";
msg += $"UID: {rom.UID_H:X2}.{rom.UID_L:X2}\n";
msg += "Mode: " + (rom.Mode.HasValue ? Enum.GetName(typeof(FlocMode), rom.Mode): "(none)");
if (rom.Role.HasValue)
{
comboRole.SelectedIndex = comboRole.Items.IndexOf(Enum.GetName(typeof(FlocRole), rom.Role));
}
if (rom.Mode.HasValue)
{
comboMode.SelectedIndex = comboMode.Items.IndexOf(Enum.GetName(typeof(FlocMode), rom.Mode));
}
tbUidH.Text = rom.UID_H != 0xFF ? $"{rom.UID_H:X2}" : "";
tbUidL.Text = rom.UID_L != 0xFF ? $"{rom.UID_L:X2}" : "";
MessageBox.Show(msg, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void BtnWriteCore_Click(object sender, EventArgs e)
{
string comPort = comboCOM.SelectedItem.ToString();
try
{
m_coreBlock.WriteBin(m_espTool, comPort, tbBinPath.Text);
MessageBox.Show("ファームウェアの書き込みに成功しました。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception)
{
MessageBox.Show("ファームウェアの書き込みに失敗しました。接続や設定を確認してください。", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private const string AVRDUDE_DEFAULT_PATH = @"C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avrdude.exe"; // arduino
private const string AVRDUDE_DEFAULT_CONF_PATH = @"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf"; // arduino
private Avrdude _avrdude;
private Avrdude m_avrdude
{
get
{
if (_avrdude == null)
{
_avrdude = new Avrdude(tbExePath.Text, tbConfPath.Text);
}
return _avrdude;
}
}
private EspTool _espTool;
private EspTool m_espTool
{
get
{
if (_espTool == null)
{
_espTool = new EspTool(tbEsptoolPath.Text);
}
return _espTool;
}
}
private CommandBlock m_cmdBlock = new CommandBlock();
private CoreBlock m_coreBlock = new CoreBlock();
}
}