-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathStm32Firmware.cs
54 lines (47 loc) · 2.04 KB
/
Stm32Firmware.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
// 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;
using nanoFramework.Tools.Debugger;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Class that handles the download of STM32 firmware files from Cloudsmith.
/// </summary>
internal class Stm32Firmware : FirmwarePackage
{
[Obsolete("This property is discontinued and it will be removed in a future version.")]
public bool HasDfuPackage => !string.IsNullOrEmpty(DfuPackage);
public string DfuPackage { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="Stm32Firmware"/> class.
/// </summary>
/// <param name="targetName">Name of the target for this <see cref="Stm32Firmware"/> object.</param>
/// <param name="fwVersion">Firmware version that will be used for this <see cref="Stm32Firmware"/> object.</param>
/// <param name="preview"><see langword="true"/> to use preview version. <see langword="false"/> to use stable version.</param>
public Stm32Firmware(
string targetName,
string fwVersion,
bool preview)
: base(
targetName,
fwVersion,
preview)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Stm32Firmware"/> class.
/// </summary>
/// <param name="nanoDevice"><see cref="NanoDeviceBase"/> that will provide details when instantiating the <see cref="Stm32Firmware"/> object.</param>
public Stm32Firmware(NanoDeviceBase nanoDevice) : base(nanoDevice)
{
}
internal new System.Threading.Tasks.Task<ExitCodes> DownloadAndExtractAsync(string archiveDirectoryPath)
{
// perform download and extract
return base.DownloadAndExtractAsync(archiveDirectoryPath);
}
}
}