-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathFirmwarePackageFactory.cs
52 lines (49 loc) · 1.62 KB
/
FirmwarePackageFactory.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
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using nanoFramework.Tools.Debugger;
using System;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Firmware Package Factory.
/// </summary>
public class FirmwarePackageFactory
{
/// <summary>
/// Gets the firmware package for the device.
/// </summary>
/// <param name="nanoDevice">The device.</param>
/// <param name="fwVersion">The firmware Version.</param>
/// <returns>The Firmware package.</returns>
/// <exception cref="NotSupportedException">The command is not supported.</exception>
public static FirmwarePackage GetFirmwarePackage(
NanoDeviceBase nanoDevice,
string fwVersion)
{
if (nanoDevice is null)
{
throw new ArgumentNullException(nameof(nanoDevice));
}
if (nanoDevice.Platform.StartsWith("STM32"))
{
return new Stm32Firmware(
nanoDevice.TargetName,
fwVersion,
false);
}
else if (nanoDevice.Platform.StartsWith("GGECKO_S1"))
{
return new JLinkFirmware(
nanoDevice.TargetName,
fwVersion,
false);
}
else
{
throw new NotSupportedException($"FirmwarePackageFactory doesn't support generating packages for {nanoDevice.Platform} platform");
}
}
}
}