using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Integration.Upgrade { /// /// Represents a bitwise enumeration for setting the firmware upgrade mode of the machine operator. /// public enum FirmwareUpgradeModes { DFU = 1, TFP_PACKAGE = 2, BOOT_LOADER = 4, } }