blob: e96b55278ab015d90da3e2e9ffb0c7d7746a794f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Upgrade
{
/// <summary>
/// Represents a bitwise enumeration for setting the firmware upgrade mode of the machine operator.
/// </summary>
public enum FirmwareUpgradeModes
{
DFU = 1,
TFP_PACKAGE = 2,
BOOT_LOADER = 4,
}
}
|