-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathNanoDeviceOperations.cs
873 lines (763 loc) · 34.6 KB
/
NanoDeviceOperations.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
// 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.ObjectModel;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using nanoFramework.Tools.Debugger;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Class with operations available for .NET nanoFramework devices.
/// </summary>
public class NanoDeviceOperations : IDisposable
{
private bool _disposedValue;
private NanoDeviceBase _nanoDevice;
private readonly PortBase _serialDebuggerPort;
/// <summary>
/// Class with operations to perform with .NET nanoFramework devices.
/// </summary>
public NanoDeviceOperations()
{
// create serial port instance
// WITHOUT starting device watchers
_serialDebuggerPort = PortBase.CreateInstanceForSerial(false);
}
/// <summary>
/// List connected .NET nanoFramework devices.
/// </summary>
/// <param name="getDeviceDetails">Set to <see langword="true"/> to get details from devices.</param>
/// <returns>An observable collection of <see cref="NanoDeviceBase"/>. devices</returns>
public ObservableCollection<NanoDeviceBase> ListDevices(bool getDeviceDetails)
{
// start device watchers
_serialDebuggerPort.StartDeviceWatchers();
while (!_serialDebuggerPort.IsDevicesEnumerationComplete)
{
Thread.Sleep(100);
}
if (getDeviceDetails)
{
// get device details
foreach (NanoDeviceBase device in _serialDebuggerPort.NanoFrameworkDevices)
{
_ = device.DebugEngine.Connect(
false,
false);
// check that we are in CLR
if (device.DebugEngine.IsConnectedTonanoCLR)
{
try
{
// get device info
_ = device.GetDeviceInfo(true);
}
catch
{
// no need to report this, just move on
}
}
else
{
// we are in booter, can only get TargetInfo
try
{
// get device info
_ = device.DebugEngine?.TargetInfo;
}
catch
{
// no need to report this, just move on
}
}
device.Disconnect(true);
}
}
return _serialDebuggerPort.NanoFrameworkDevices;
}
/// <summary>
/// Gets device details of the requested .NET nanoFramework device.
/// </summary>
/// <param name="serialPort">Serial port name where the device is connected to.</param>
/// <param name="nanoDevice"><see cref="NanoDeviceBase"/> object for the requested device.</param>
/// <returns>The <see cref="ExitCodes"/> with the operation result.</returns>
/// <exception cref="CantConnectToNanoDeviceException">
/// <para>
/// Couldn't connect to specified nano device.
/// </para>
/// <para>
/// --OR--
/// </para>
/// <para>
/// Couldn't retrieve device details from the nano device.
/// </para>
/// </exception>
public ExitCodes GetDeviceDetails(
string serialPort,
ref NanoDeviceBase nanoDevice)
{
if (ReadDetailsFromDevice(
serialPort,
ref nanoDevice))
{
// check that we are in CLR
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
// we have to have a valid device info
if (nanoDevice.DeviceInfo.Valid)
{
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.WriteLine("");
OutputWriter.WriteLine($"{nanoDevice.DeviceInfo}");
OutputWriter.ForegroundColor = ConsoleColor.White;
return ExitCodes.OK;
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
else
{
// we are in booter, can only get TargetInfo
// we have to have a valid device info
if (nanoDevice.DebugEngine.TargetInfo != null)
{
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.WriteLine("");
OutputWriter.WriteLine($"{nanoDevice.DebugEngine.TargetInfo}");
OutputWriter.ForegroundColor = ConsoleColor.White;
return ExitCodes.OK;
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't connect to specified nano device.");
}
}
/// <summary>
/// Update CLR on specified nano device.
/// </summary>
/// <param name="serialPort">Serial port name where the device is connected to.</param>
/// <param name="fwVersion">Firmware version to update to.</param>
/// <param name="showFwOnly">Only show which firmware to use; do not deploy anything to the device.</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="clrFile">Path to CLR file to use for firmware update.</param>
/// <param name="verbosity">Set verbosity level of progress and error messages.</param>
/// <returns>The <see cref="ExitCodes"/> with the operation result.</returns>
/// <exception cref="CantConnectToNanoDeviceException">
/// <para>
/// Couldn't connect to specified nano device.
/// </para>
/// <para>
/// --OR--
/// </para>
/// <para>
/// Couldn't retrieve device details from the nano device.
/// </para>
/// </exception>
public async Task<ExitCodes> UpdateDeviceClrAsync(
string serialPort,
string fwVersion,
bool showFwOnly,
string archiveDirectoryPath,
string clrFile,
VerbosityLevel verbosity = VerbosityLevel.Quiet)
{
if (serialPort is null)
{
throw new ArgumentNullException(nameof(serialPort));
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write($"Getting details from nano device...");
}
bool updateCLRfile = !string.IsNullOrEmpty(clrFile);
// if this is updating with a local CLR file, download the package silently
if (updateCLRfile)
{
// check file
if (!File.Exists(clrFile))
{
return ExitCodes.E9011;
}
// has to be a binary file
if (Path.GetExtension(clrFile) != ".bin")
{
return ExitCodes.E9012;
}
// make sure path is absolute
clrFile = Utilities.MakePathAbsolute(
Environment.CurrentDirectory,
clrFile);
}
NanoDeviceBase nanoDevice = null;
_ = ReadDetailsFromDevice(
serialPort,
ref nanoDevice);
// sanity checks
if (nanoDevice == null
|| nanoDevice.TargetName == null
|| nanoDevice.Platform == null)
{
// can't update this device
throw new NanoDeviceOperationFailedException($"Missing details from {nanoDevice?.TargetName} to perform update operation.");
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
else
{
OutputWriter.WriteLine("");
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.WriteLine($"Connected to nano device: {nanoDevice.Description}");
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
if (showFwOnly)
{
OutputWriter.WriteLine("");
OutputWriter.WriteLine($"Connected nanoDevice uses target '{nanoDevice.TargetName}'; platform is {nanoDevice.Platform}.");
OutputWriter.WriteLine("");
return ExitCodes.OK;
}
// local file will be flashed straight away
if (updateCLRfile)
{
if (nanoDevice.DebugEngine.Connect(
1000,
true,
true))
{
Version currentClrVersion = null;
// try to store CLR version
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
if (nanoDevice.DeviceInfo.Valid)
{
currentClrVersion = nanoDevice.DeviceInfo.SolutionBuildVersion;
}
}
bool booterLaunched = false;
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
// any update has to be handled by nanoBooter, so let's have it running
try
{
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Launching nanoBooter...");
}
booterLaunched = nanoDevice.ConnectToNanoBooter();
if (!booterLaunched)
{
// check for version where the software reboot to nanoBooter was made available
if (currentClrVersion != null &&
nanoDevice.DeviceInfo.SolutionBuildVersion < new Version("1.6.0.54"))
{
OutputWriter.WriteLine("");
throw new NanoDeviceOperationFailedException("The device is running a version that doesn't support rebooting by software. Please update your device using 'nanoff' tool.");
}
}
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
catch
{
// this reboot step can go wrong and there's no big deal with that
}
}
else
{
booterLaunched = true;
}
if (booterLaunched &&
nanoDevice.Ping() == Debugger.WireProtocol.ConnectionSource.nanoBooter)
{
// get address for CLR block expected by device
int clrAddress = nanoDevice.GetCLRStartAddress();
await Task.Yield();
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write($"Starting CLR update with local file...");
}
try
{
await Task.Yield();
if (nanoDevice.DeployBinaryFile(
clrFile,
(uint)clrAddress,
null))
{
await Task.Yield();
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
else
{
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Red;
OutputWriter.WriteLine("FAILED!");
return ExitCodes.E2002;
}
}
if (booterLaunched)
{
// try to reboot target
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Rebooting...");
}
nanoDevice.DebugEngine.RebootDevice(RebootOptions.NormalReboot);
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
return ExitCodes.OK;
}
}
catch (Exception ex)
{
throw new NanoDeviceOperationFailedException($"Exception occurred when performing update ({ex.Message}).");
}
}
else
{
if (!booterLaunched)
{
// only report this as an error if the launch was successful
throw new NanoDeviceOperationFailedException("Failed to launch nanoBooter. Quitting update.");
}
}
}
else
{
throw new NanoDeviceOperationFailedException("Can't connect to device. Quitting update.");
}
// done here
return ExitCodes.OK;
}
else
{
// get firmware package
FirmwarePackage fwPackage = FirmwarePackageFactory.GetFirmwarePackage(
nanoDevice,
fwVersion);
ExitCodes downloadResult = await fwPackage.DownloadAndExtractAsync(archiveDirectoryPath);
if (downloadResult == ExitCodes.OK)
{
if (nanoDevice.DebugEngine.Connect(
1000,
true,
true))
{
Version currentClrVersion = null;
// try to store CLR version
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
if (nanoDevice.DeviceInfo.Valid)
{
currentClrVersion = nanoDevice.DeviceInfo.SolutionBuildVersion;
}
}
// update conditions:
// 1. Running CLR _and_ the new version is higher
// 2. Running nanoBooter and there is no version information on the CLR (presumably because there is no CLR installed)
if (Version.Parse(fwPackage.Version) > nanoDevice.CLRVersion)
{
bool attemptToLaunchBooter = false;
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
// any update has to be handled by nanoBooter, so let's have it running
try
{
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.Cyan;
OutputWriter.Write("Launching nanoBooter...");
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
attemptToLaunchBooter = nanoDevice.ConnectToNanoBooter();
if (!attemptToLaunchBooter)
{
// check for version where the software reboot to nanoBooter was made available
if (currentClrVersion != null &&
nanoDevice.DeviceInfo.SolutionBuildVersion < new Version("1.6.0.54"))
{
OutputWriter.WriteLine("");
throw new NanoDeviceOperationFailedException("The device is running a version that doesn't support rebooting by software. Please update your device using 'nanoff' tool.");
}
}
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
catch
{
// this reboot step can go wrong and there's no big deal with that
}
}
else
{
attemptToLaunchBooter = true;
}
if (attemptToLaunchBooter &&
nanoDevice.Ping() == Debugger.WireProtocol.ConnectionSource.nanoBooter)
{
// get address for CLR block expected by device
int clrAddress = nanoDevice.GetCLRStartAddress();
// compare with address on the fw packages
if (clrAddress !=
fwPackage.ClrStartAddress)
{
// CLR addresses don't match, can't proceed with update
throw new NanoDeviceOperationFailedException("Can't update device. CLR addresses are different. Please update nanoBooter manually.");
}
await Task.Yield();
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write($"Starting update to CLR v{fwPackage.Version}...");
}
try
{
await Task.Yield();
if (nanoDevice.DeployBinaryFile(
fwPackage.NanoClrFileBinary,
fwPackage.ClrStartAddress,
null))
{
await Task.Yield();
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
if (attemptToLaunchBooter)
{
// try to reboot target
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Rebooting...");
}
nanoDevice.DebugEngine.RebootDevice(RebootOptions.NormalReboot);
if (verbosity > VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
return ExitCodes.OK;
}
}
catch (Exception ex)
{
throw new NanoDeviceOperationFailedException($"Exception occurred when performing update ({ex.Message}).");
}
}
else
{
if (attemptToLaunchBooter)
{
// only report this as an error if the launch was successful
throw new NanoDeviceOperationFailedException("Failed to launch nanoBooter. Quitting update.");
}
}
}
else
{
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR
&& (fwPackage.Version == nanoDevice.DeviceInfo.ClrBuildVersion.ToString()))
{
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.Yellow;
OutputWriter.WriteLine("Nothing to update as device is already running the requested version.");
OutputWriter.WriteLine("");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
// done here
return ExitCodes.OK;
}
}
}
else
{
throw new NanoDeviceOperationFailedException("Can't connect to device. Quitting update.");
}
}
return downloadResult;
}
}
/// <summary>
/// Deploy application on specified nano device.
/// </summary>
/// <param name="serialPort">Serial port name where the device is connected to.</param>
/// <param name="deploymentPackage">Path to the binary file to deploy in the connected nano device.</param>
/// <param name="verbosity">Set verbosity level of progress and error messages.</param>
/// <returns>The <see cref="ExitCodes"/> with the operation result.</returns>
public ExitCodes DeployApplication(
string serialPort,
string deploymentPackage,
VerbosityLevel verbosity = VerbosityLevel.Quiet)
{
if (serialPort is null)
{
return ExitCodes.E2001;
}
if (deploymentPackage is null)
{
throw new ArgumentNullException("No deployment package provided.");
}
if (!File.Exists(deploymentPackage))
{
throw new FileNotFoundException("Couldn't find the deployment file at the specified path.");
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write($"Getting details from nano device...");
}
NanoDeviceBase nanoDevice = null;
_ = ReadDetailsFromDevice(
serialPort,
ref nanoDevice);
// sanity checks
if (nanoDevice == null
|| nanoDevice.TargetName == null
|| nanoDevice.Platform == null)
{
// can't update this device
throw new NanoDeviceOperationFailedException($"Missing details from {nanoDevice?.TargetName} to perform deployment operation.");
}
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
else
{
OutputWriter.WriteLine("");
}
if (nanoDevice.DebugEngine.Connect(
1000,
true,
true))
{
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.Write($"Deploying managed application...");
}
if (!nanoDevice.DeployBinaryFile(
deploymentPackage,
(uint)nanoDevice.GetDeploymentStartAddress(),
null))
{
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Red;
OutputWriter.WriteLine("FAILED!");
return ExitCodes.E2002;
}
}
else
{
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
else
{
OutputWriter.WriteLine("");
}
// try to reboot target
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.White;
OutputWriter.Write("Rebooting...");
}
// reboot device
nanoDevice.DebugEngine.RebootDevice(RebootOptions.NormalReboot);
if (verbosity >= VerbosityLevel.Normal)
{
OutputWriter.ForegroundColor = ConsoleColor.Green;
OutputWriter.WriteLine("OK");
OutputWriter.ForegroundColor = ConsoleColor.White;
}
}
// all good here
return ExitCodes.OK;
}
else
{
throw new NanoDeviceOperationFailedException("Can't connect to device. Quitting update.");
}
}
/// <inheritdoc/>
protected virtual void Dispose(bool disposing)
{
if (!_disposedValue)
{
if (disposing)
{
// clean-up debugger port instances and devices
_serialDebuggerPort?.StopDeviceWatchers();
}
_nanoDevice?.Disconnect(true);
_nanoDevice = null;
_disposedValue = true;
}
}
/// <inheritdoc/>
public void Dispose()
{
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
private bool ReadDetailsFromDevice(
string serialPort,
ref NanoDeviceBase nanoDevice)
{
if (serialPort is null)
{
throw new ArgumentNullException(nameof(serialPort));
}
// connect to specified serial port
try
{
_serialDebuggerPort.AddDevice(serialPort);
}
#if DEBUG
catch (Exception ex)
{
OutputWriter.WriteLine($"Failed to add device: {ex.Message}");
return false;
}
#else
catch
{
return false;
}
#endif
// get nano device (there should be only one)
nanoDevice = _serialDebuggerPort.NanoFrameworkDevices.FirstOrDefault();
if (nanoDevice != null)
{
// check if debugger engine exists
if (nanoDevice.DebugEngine == null)
{
nanoDevice.CreateDebugEngine();
}
// connect to the device
if (nanoDevice.DebugEngine.Connect(
false,
true))
{
// check that we are in CLR
if (nanoDevice.DebugEngine.IsConnectedTonanoCLR)
{
try
{
// get device info
INanoFrameworkDeviceInfo deviceInfo = nanoDevice.GetDeviceInfo(true);
// we have to have a valid device info
if (deviceInfo.Valid)
{
return true;
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
catch
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
else
{
// we are in booter, can only get TargetInfo
try
{
// get device info
Debugger.WireProtocol.TargetInfo deviceInfo = nanoDevice.DebugEngine?.TargetInfo;
// we have to have a valid device info
if (deviceInfo != null)
{
return true;
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
catch
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't retrieve device details from nano device.");
}
}
}
else
{
// report issue
throw new CantConnectToNanoDeviceException("Couldn't connect to specified nano device.");
}
}
// default to false
return false;
}
}
}