-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathJLinkOperations.cs
210 lines (180 loc) · 7.57 KB
/
JLinkOperations.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Class with operations available in J-Link connected devices.
/// </summary>
public class JLinkOperations
{
/// <summary>
/// Perform firmware update on a J-Link connected device.
/// </summary>
/// <param name="targetName">Name of the target to update.</param>
/// <param name="fwVersion">Firmware version to update to.</param>
/// <param name="preview">Set to <see langword="true"/> to use preview version to update.</param>
/// <param name="archiveDirectoryPath">Path to the archive directory where all targets are located. Pass <c>null</c> if there is no archive.
/// If not <c>null</c>, the package will always be retrieved from the archive and never be downloaded.</param>
/// <param name="updateFw">Set to <see langword="true"/> to force download of firmware package.</param>
/// <param name="applicationPath">Path to application to update along with the firmware update.</param>
/// <param name="deploymentAddress">Flash address to use when deploying an aplication.</param>
/// <param name="probeId">ID of the J-Link probe to connect to.</param>
/// <param name="fitCheck"><see langword="true"/> to perform validation of update package against connected target.</param>
/// <param name="verbosity">Set verbosity level of progress and error messages.</param>
/// <returns>The <see cref="ExitCodes"/> with the operation result.</returns>
public static async System.Threading.Tasks.Task<ExitCodes> UpdateFirmwareAsync(
string targetName,
string fwVersion,
bool preview,
string archiveDirectoryPath,
bool updateFw,
string applicationPath,
string deploymentAddress,
string probeId,
bool fitCheck,
VerbosityLevel verbosity)
{
bool isApplicationBinFile = false;
JLinkDevice jlinkDevice;
ExitCodes operationResult;
// if a target name wasn't specified use the default (and only available) ESP32 target
if (string.IsNullOrEmpty(targetName))
{
return ExitCodes.E1000;
}
JLinkFirmware firmware = new JLinkFirmware(
targetName,
fwVersion,
preview)
{
Verbosity = verbosity
};
// need to download update package?
if (updateFw)
{
operationResult = await firmware.DownloadAndExtractAsync(archiveDirectoryPath);
if (operationResult != ExitCodes.OK)
{
return operationResult;
}
// download successful
}
// setup files to flash
List<string> filesToFlash = [];
if (updateFw)
{
filesToFlash.Add(firmware.NanoBooterFile);
filesToFlash.Add(firmware.NanoClrFile);
}
// need to include application file?
if (!string.IsNullOrEmpty(applicationPath))
{
// check application file
if (File.Exists(applicationPath))
{
// check if application is BIN or HEX file
if (Path.GetExtension(applicationPath) == "hex")
{
// HEX we are good with adding it to the flash package
filesToFlash.Add(new FileInfo(applicationPath).FullName);
}
else
{
// BIN app, set flag
isApplicationBinFile = true;
}
}
else
{
return ExitCodes.E9008;
}
}
List<string> connectedSilabsJLinkDevices = JLinkDevice.ListDevices();
if (!connectedSilabsJLinkDevices.Any())
{
// no device was found
return ExitCodes.E9010;
}
// Jlink device
jlinkDevice = new JLinkDevice(probeId);
if (!jlinkDevice.DevicePresent)
{
// no JTAG device found
// done here, this command has no further processing
return ExitCodes.E5001;
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.WriteLine($"Connected to J-Link device with ID {jlinkDevice.ProbeId}");
OutputWriter.WriteLine("");
OutputWriter.WriteLine($"{jlinkDevice}");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
if (verbosity == VerbosityLevel.Diagnostic)
{
OutputWriter.WriteLine($"Firmware: {jlinkDevice.Firmare}");
OutputWriter.WriteLine($"Hardware: {jlinkDevice.Hardware}");
}
if (fitCheck)
{
OutputWriter.ForegroundColor = ConsoleColor.Yellow;
OutputWriter.WriteLine("");
OutputWriter.WriteLine("Image fit check for Silabs devices is not supported at this time.");
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
operationResult = ExitCodes.OK;
// set verbosity
jlinkDevice.Verbosity = verbosity;
// write HEX files to flash
if (filesToFlash.Exists(f => f.EndsWith(".hex")))
{
operationResult = jlinkDevice.FlashHexFiles(filesToFlash);
}
if (operationResult == ExitCodes.OK && isApplicationBinFile)
{
// now program the application file
operationResult = jlinkDevice.FlashBinFiles([applicationPath], [deploymentAddress]);
}
return operationResult;
}
/// <summary>
/// Mass erase device.
/// </summary>
/// <param name="probeId">The probe ID.</param>
/// <param name="verbosity">The verbosity level.</param>
/// <returns></returns>
public static ExitCodes MassErase(
string probeId,
VerbosityLevel verbosity)
{
// J-Link device
JLinkDevice jlinkDevice = new(probeId);
if (!jlinkDevice.DevicePresent)
{
// no J-Link device found
// done here, this command has no further processing
return ExitCodes.E5001;
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.WriteLine($"Connected to J-Link device with ID {jlinkDevice.ProbeId}");
}
if (verbosity == VerbosityLevel.Diagnostic)
{
OutputWriter.WriteLine($"Firmware: {jlinkDevice.Firmare}");
OutputWriter.WriteLine($"Hardware: {jlinkDevice.Hardware}");
}
// set verbosity
jlinkDevice.Verbosity = verbosity;
// perform erase operation
return jlinkDevice.MassErase();
}
}
}