-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathStmDeviceBase.cs
419 lines (355 loc) · 14.3 KB
/
StmDeviceBase.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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Base class for StmDeviceBase.
/// </summary>
public abstract class StmDeviceBase
{
private static bool _pathChecked = false;
private static string _stCLIErrorMessage;
/// <summary>
/// Property with option for performing mass erase on the connected device.
/// If <see langword="false"/> only the flash sectors that will programmed are erased.
/// </summary>
public bool DoMassErase { get; set; } = false;
/// <summary>
/// Option to output progress messages.
/// Default is <see langword="true"/>.
/// </summary>
public VerbosityLevel Verbosity { get; set; } = VerbosityLevel.Normal;
/// <summary>
/// Runs the STM32 programmer CLI.
/// </summary>
/// <param name="arguments">arguments to send.</param>
/// <returns>The returned message.</returns>
/// <exception cref="StLinkCliExecutionException"></exception>
public static string RunSTM32ProgrammerCLI(string arguments)
{
try
{
// reset error message
_stCLIErrorMessage = string.Empty;
// check execution path for diacritics
if (!_pathChecked)
{
if (!Utilities.ExecutingPath.IsNormalized(NormalizationForm.FormD))
{
OutputWriter.ForegroundColor = ConsoleColor.Red;
OutputWriter.WriteLine("");
OutputWriter.WriteLine("**************************** WARNING ****************************");
OutputWriter.WriteLine("nanoff installation path contains diacritic chars!");
OutputWriter.WriteLine("There are know issues executing some commands in this situation.");
OutputWriter.WriteLine("Recommend that the tool be installed in a path without those.");
OutputWriter.WriteLine("For a detailed explanation please visit https://git.io/JEcpK.");
OutputWriter.WriteLine("*****************************************************************");
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
// done
_pathChecked = true;
}
string appName = string.Empty;
string appDir = string.Empty;
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
appName = "STM32_Programmer_CLI.exe";
appDir = "stlink";
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
appName = "STM32_Programmer_CLI";
appDir = "stlinkMac";
}
else
{
appName = "STM32_Programmer_CLI";
appDir = "stlinkLinux";
}
var stLinkCli = new Process
{
StartInfo = new ProcessStartInfo(Path.Combine(Utilities.ExecutingPath, appDir, "bin", appName),
arguments)
{
WorkingDirectory = Path.Combine(Utilities.ExecutingPath, appDir, "bin"),
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true
}
};
// start STM32 Programmer CLI and...
stLinkCli.Start();
// ... wait for exit (1 min max!)
stLinkCli.WaitForExit((int)TimeSpan.FromMinutes(1).TotalMilliseconds);
// collect output messages
string cliOutput = stLinkCli.StandardOutput.ReadToEnd();
// check and parse any error in the output
_stCLIErrorMessage = GetErrorMessageFromSTM32CLI(cliOutput);
return cliOutput;
}
catch (Exception ex)
{
throw new StLinkCliExecutionException(ex.Message);
}
}
/// <summary>
/// Gets the Error Message From STM32CLI.
/// </summary>
/// <param name="cliOutput">The retrived input.</param>
/// <returns>The outcome.</returns>
public static string GetErrorMessageFromSTM32CLI(string cliOutput)
{
var regEx = new Regex(@"Error: (?<error>.+).", RegexOptions.IgnoreCase);
Match match = regEx.Match(cliOutput);
if (match.Success)
{
return match.Groups["error"].Value;
}
else
{
// look for DEV_USB_COMM_ERR
if (cliOutput.Contains("DEV_USB_COMM_ERR"))
{
return "USB communication error. Please unplug and plug again the ST device.";
}
}
return "";
}
/// <summary>
/// Output to CLI.
/// </summary>
/// <param name="cliOutput">Message to display.</param>
public void ShowCLIOutput(string cliOutput)
{
// show CLI output, if verbosity is diagnostic
if (Verbosity == VerbosityLevel.Diagnostic)
{
OutputWriter.WriteLine(">>>>>>>>");
OutputWriter.WriteLine($"{cliOutput}");
OutputWriter.WriteLine(">>>>>>>>");
}
// show error message from CLI, if there is one
if (!string.IsNullOrEmpty(_stCLIErrorMessage))
{
// show error detail, if available
OutputWriter.ForegroundColor = ConsoleColor.Red;
OutputWriter.WriteLine(_stCLIErrorMessage);
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
/// <summary>
/// Lists all found devices.
/// </summary>
/// <returns></returns>
public static string ExecuteListDevices()
{
return RunSTM32ProgrammerCLI("--list");
}
/// <summary>
/// Wipes the whole flash memory of the device.
/// </summary>
/// <param name="connectDetails">The device connection details.</param>
/// <returns>The outcome.</returns>
public ExitCodes ExecuteMassErase(string connectDetails)
{
if (Verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Mass erase device...");
}
string cliOutput = RunSTM32ProgrammerCLI($"-c {connectDetails} mode=UR -e all");
if (!cliOutput.Contains("Mass erase successfully achieved"))
{
OutputWriter.WriteLine("");
ShowCLIOutput(cliOutput);
return ExitCodes.E5005;
}
if (Verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine(" OK");
}
else
{
OutputWriter.WriteLine("");
}
OutputWriter.ForegroundColor = ConsoleColor.White;
return ExitCodes.OK;
}
/// <summary>
/// Flash HEX files to device.
/// </summary>
/// <param name="files">The HEX files to flash.</param>
/// <param name="connectDetails">The device connection details.</param>
/// <returns>The outcome.</returns>
public ExitCodes ExecuteFlashHexFiles(
IList<string> files,
string connectDetails)
{
// check file existence
if (files.Any(f => !File.Exists(f)))
{
return ExitCodes.E5003;
}
// erase flash
if (DoMassErase)
{
ExitCodes eraseResult = ExecuteMassErase(connectDetails);
if (eraseResult != ExitCodes.OK)
{
return eraseResult;
}
// toggle mass erase so it's only performed before the first file is flashed
DoMassErase = false;
}
if (Verbosity == VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Flashing device...");
}
else if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.WriteLine("Flashing device...");
}
// program HEX file(s)
foreach (string hexFile in files)
{
// make sure path is absolute
string hexFilePath = Utilities.MakePathAbsolute(
Environment.CurrentDirectory,
hexFile);
if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.Yellow;
OutputWriter.WriteLine($"{Path.GetFileName(hexFile)}");
}
string cliOutput = RunSTM32ProgrammerCLI($"-c {connectDetails} -w \"{hexFilePath}\"");
if (!cliOutput.Contains("File download complete"))
{
ShowCLIOutput(cliOutput);
return ExitCodes.E5006;
}
}
if (Verbosity == VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine(" OK");
}
else if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("Flashing completed...");
}
OutputWriter.ForegroundColor = ConsoleColor.White;
return ExitCodes.OK;
}
/// <summary>
/// Flash BIN files to device.
/// </summary>
/// <param name="files">The files to flash.</param>
/// <param name="addresses">The memory locations.</param>
/// <param name="connectDetails">The device connection details.</param>
/// <returns>The outcome.</returns>
public ExitCodes ExecuteFlashBinFiles(
IList<string> files,
IList<string> addresses,
string connectDetails)
{
// check file existence
if (files.Any(f => !File.Exists(f)))
{
return ExitCodes.E5003;
}
// check address(es)
// need to match files count
if (files.Count != addresses.Count)
{
return ExitCodes.E5009;
}
foreach (string address in addresses)
{
if (string.IsNullOrEmpty(address))
{
return ExitCodes.E5007;
}
// format too
if (!address.StartsWith("0x"))
{
return ExitCodes.E5008;
}
// try parse
// need to remove the leading 0x and to specify that hexadecimal values are allowed
if (!int.TryParse(address.Substring(2), System.Globalization.NumberStyles.AllowHexSpecifier, System.Globalization.CultureInfo.InvariantCulture, out _))
{
return ExitCodes.E5008;
}
}
// erase flash
if (DoMassErase)
{
ExitCodes eraseResult = ExecuteMassErase(connectDetails);
if (eraseResult != ExitCodes.OK)
{
return eraseResult;
}
// toggle mass erase so it's only performed before the first file is flashed
DoMassErase = false;
}
if (Verbosity == VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Flashing device...");
}
else if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.WriteLine("Flashing device...");
}
// program BIN file(s)
int index = 0;
foreach (string binFile in files)
{
// make sure path is absolute
string binFilePath = Utilities.MakePathAbsolute(
Environment.CurrentDirectory,
binFile);
if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.WriteLine($"{Path.GetFileName(binFilePath)} @ {addresses.ElementAt(index)}");
}
string cliOutput = RunSTM32ProgrammerCLI($"-c {connectDetails} mode=UR -w \"{binFilePath}\" {addresses.ElementAt(index++)}");
if (!cliOutput.Contains("File download complete"))
{
ShowCLIOutput(cliOutput);
return ExitCodes.E5006;
}
}
if (Verbosity == VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine(" OK");
}
else if (Verbosity >= VerbosityLevel.Detailed)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("Flashing completed...");
}
OutputWriter.ForegroundColor = ConsoleColor.White;
return ExitCodes.OK;
}
}
}