-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathExitCodes.cs
351 lines (291 loc) · 10.8 KB
/
ExitCodes.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel.DataAnnotations;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Exit Codes.
/// </summary>
public enum ExitCodes
{
/// <summary>
/// Execution terminated without any error
/// </summary>
[Display(Name = "")]
OK = 0,
////////////////
// DFU Errors //
////////////////
/// <summary>
/// No DFU device found
/// </summary>
[Display(Name = "No DFU device found. Make sure it's connected and has booted in DFU mode")]
E1000 = 1000,
/// <summary>
/// DFU file doesn't exist
/// </summary>
[Display(Name = "Couldn't find DFU file. Check the path.")]
E1002 = 1002,
/// <summary>
/// Error flashing DFU device
/// </summary>
[Display(Name = "Error flashing DFU device.")]
E1003 = 1003,
/// <summary>
/// Firmware package doesn't have DFU package
/// </summary>
[Display(Name = "Firmware package doesn't have a DFU package.")]
E1004 = 1004,
/// <summary>
/// Can't connect to specified DFU device.
/// </summary>
[Display(Name = "Can't connect to specified DFU device. Make sure it's connected and that the ID is correct.")]
E1005 = 1005,
/// <summary>
/// Failed to start execution on the connected device.
/// </summary>
[Display(Name = "Failed to start execution on the connected device.")]
E1006 = 1006,
///////////////////////
// nanoDevice Errors //
///////////////////////
/// <summary>
/// Error connecting to nano device.
/// </summary>
[Display(Name = "Error connecting to nano device.")]
E2000 = 2000,
/// <summary>
/// Error connecting to nano device.
/// </summary>
[Display(Name = "Error occurred with listing nano devices.")]
E2001 = 2001,
/// <summary>
/// Error executing operation with nano device.
/// </summary>
[Display(Name = "Error executing operation with nano device.")]
E2002 = 2002,
/// <summary>
/// Error executing operation with nano device.
/// </summary>
[Display(Name = "Error executing file deployment on nano device.")]
E2003 = 2003,
////////////////////////
// ESP32 tools Errors //
////////////////////////
/// <summary>
/// Error executing esptool command
/// </summary>
[Display(Name = "Error executing esptool command.")]
E4000 = 4000,
/// <summary>
/// Unsupported flash size for ESP32 target.
/// </summary>
[Display(Name = "Unsupported flash size for ESP32 target.")]
E4001 = 4001,
/// <summary>
/// Failed to erase ESP32 flash.
/// </summary>
[Display(Name = "Failed to erase ESP32 flash.")]
E4002 = 4002,
/// <summary>
/// Failed to write new firmware to ESP32.
/// </summary>
[Display(Name = "Failed to write new firmware to ESP32.")]
E4003 = 4003,
/// <summary>
/// Failed to read from ESP32 flash.
/// </summary>
[Display(Name = "Failed to read from ESP32 flash.")]
E4004 = 4004,
/// <summary>
/// Can't open COM port.
/// </summary>
[Display(Name = "Failed to open specified COM port.")]
E4005 = 4005,
//////////////////////////
// ST Programmer Errors //
//////////////////////////
/// <summary>
/// Error executing STM32 Programmer CLI command.
/// </summary>
[Display(Name = "Error executing STM32 Programmer CLI command.")]
E5000 = 5000,
/// <summary>
/// No JTAG device found
/// </summary>
[Display(Name = "No JTAG device found. Make sure it's connected")]
E5001 = 5001,
/// <summary>
/// Can't connect to specified JTAG device.
/// </summary>
[Display(Name = "Can't connect to specified JTAG device. Make sure it's connected and that the ID is correct.")]
E5002 = 5002,
/// <summary>
/// HEX file doesn't exist
/// </summary>
[Display(Name = "Couldn't find HEX file. Check the path.")]
E5003 = 5003,
/// <summary>
/// BIN file doesn't exist
/// </summary>
[Display(Name = "Couldn't find BIN file. Check the path.")]
E5004 = 5004,
/// <summary>
/// Failed to perform mass erase on device
/// </summary>
[Display(Name = "Failed to perform mass erase on device.")]
E5005 = 5005,
/// <summary>
/// Failed to write new firmware to device.
/// </summary>
[Display(Name = "Failed to write new firmware to device.")]
E5006 = 5006,
/// <summary>
/// Can't program BIN file without specifying an address
/// </summary>
[Display(Name = "Can't program BIN file without specifying an address.")]
E5007 = 5007,
/// <summary>
/// Invalid address specified. Hexadecimal (0x0000F000) format required.
/// </summary>
[Display(Name = "Invalid address specified. Hexadecimal (0x0000F000) format required.")]
E5008 = 5008,
/// <summary>
///Address count doesn't match BIN files count.
/// </summary>
[Display(Name = "Address count doesn't match BIN files count. An address needs to be specified for each BIN file.")]
E5009 = 5009,
/// <summary>
/// Failed to reset MCU.
/// </summary>
[Display(Name = "Failed to reset MCU on connected device.")]
E5010 = 5010,
////////////////
// COM Errors //
////////////////
/// <summary>
/// Couldn't open serial device
/// </summary>
[Display(Name = "Couldn't open serial device. Make sure the COM port exists, that the device is connected and that it's not being used by another application.")]
E6000 = 6000,
/// <summary>
/// Need to specify a COM port.
/// </summary>
[Display(Name = "Need to specify a COM port.")]
E6001 = 6001,
/// <summary>
/// Timeout of the connection
/// </summary>
[Display(Name = "Couldn't access serial device. Another (nanoFramework) application has exclusive access to the device.")]
E6002 = 6002,
///////////////
// TI Errors //
///////////////
/// <summary>
/// Couldn't open serial device
/// </summary>
[Display(Name = "Unsupported device.")]
E7000 = 7000,
///////////////////
// J-Link Errors //
///////////////////
/// <summary>
/// Error executing J-Link CLI command.
/// </summary>
[Display(Name = "Error executing J-Link CLI command.")]
E8000 = 8000,
/// <summary>
/// No J-Link device found
/// </summary>
[Display(Name = "No J-Link device found. Make sure it's connected.")]
E8001 = 8001,
/// <summary>
/// Error executing silink command.
/// </summary>
[Display(Name = "Error executing silink CLI command.")]
E8002 = 8002,
/// <summary>
/// Path of BIN file contains spaces or diacritic characters.
/// </summary>
[Display(Name = "Path of BIN file contains spaces or diacritic characters.")]
E8003 = 8003,
////////////////////////////////
// Application general Errors //
////////////////////////////////
/// <summary>
/// Error parsing arguments.
/// </summary>
[Display(Name = "Invalid or missing arguments.")]
E9000 = 9000,
/// <summary>
/// Can't access or create backup directory.
/// </summary>
[Display(Name = "Can't access or create backup directory.")]
E9002 = 9002,
/// <summary>
/// Error when deleting existing backup file.
/// </summary>
[Display(Name = "Can't delete existing backup file.")]
E9003 = 9003,
/// <summary>
/// Backup file specified without backup path.
/// </summary>
[Display(Name = "Backup file specified without backup path. Specify backup path with --backuppath.")]
E9004 = 9004,
/// <summary>
/// Can't find the target in Cloudsmith repository.
/// </summary>
[Display(Name = "Can't find the target in Cloudsmith repository.")]
E9005 = 9005,
/// <summary>
/// Can't create temporary directory to download firmware.
/// </summary>
[Display(Name = "Can't create temporary directory to download firmware.")]
E9006 = 9006,
/// <summary>
/// Error downloading firmware file.
/// </summary>
[Display(Name = "Error downloading firmware file.")]
E9007 = 9007,
/// <summary>
/// Couldn't find application file. Check the path.
/// </summary>
[Display(Name = "Couldn't find application file. Check the path.")]
E9008 = 9008,
/// <summary>
/// Can't program deployment BIN file without specifying a valid address
/// </summary>
[Display(Name = "Can't program deployment BIN file without specifying a valid deployment address.")]
E9009 = 9009,
/// <summary>
/// Couldn't find any device connected
/// </summary>
[Display(Name = "Couldn't find any device connected.")]
E9010 = 9010,
/// <summary>
/// Couldn't find CLR image file. Check the path.
/// </summary>
[Display(Name = "Couldn't find CLR image file. Check the path.")]
E9011 = 9011,
/// <summary>
/// CLR image file has wrong format. It has to be a binary file.
/// </summary>
[Display(Name = "CLR image file has wrong format. It has to be a binary file.")]
E9012 = 9012,
/// <summary>
/// Unsupported platform.
/// </summary>
[Display(Name = "Unsupported platform. Valid options are: esp32, stm32, cc13x2")]
E9013 = 9013,
/// <summary>
/// Error clearing cache location.
/// </summary>
[Display(Name = "Error occurred when clearing the firmware cache location.")]
E9014 = 9014,
/// <summary>
/// Can't find the target in the firmware archive.
/// </summary>
[Display(Name = "Can't find the target in the firmware archive.")]
E9015 = 9015,
}
}