blob: bd61a94083fd23a156e3d1d4f41df8733fa807e2 (
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,
}
}
|