Skip to content

Commit 1301a50

Browse files
committed
Moved firmware updater to non v2 location.
1 parent 68bf386 commit 1301a50

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Meadow.CLI.Commands.Current.Firmware;
2+
3+
public enum FirmwareType
4+
{
5+
OS,
6+
Runtime,
7+
ESP
8+
}

Source/Meadow.CLI/Commands/Current/Firmware/FirmwareWriteCommand.cs

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
using CliFx.Attributes;
2+
using Meadow.CLI.Commands.Current.Firmware;
23
using Meadow.Software;
34
using Microsoft.Extensions.Logging;
45

56
namespace Meadow.CLI.Commands.DeviceManagement;
67

7-
public enum FirmwareType
8-
{
9-
OS,
10-
Runtime,
11-
ESP
12-
}
13-
148
[Command("firmware write", Description = "Writes firmware files to a connected meadow device")]
159
public class FirmwareWriteCommand : BaseDeviceCommand<FirmwareWriteCommand>
1610
{

0 commit comments

Comments
 (0)