aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-12-03 10:33:23 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-12-03 10:33:23 +0200
commit90df14652ec62bbcb9b3a69c483407945dff9465 (patch)
treed34966f62816a767e6d8ccf1a791129a891e48fc /Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs
parent96469f3db1a030eb6bd2e1bb8d4c36bbc56eadee (diff)
downloadTango-90df14652ec62bbcb9b3a69c483407945dff9465.tar.gz
Tango-90df14652ec62bbcb9b3a69c483407945dff9465.zip
New UpgradeFirmware PMR folder.
Diffstat (limited to 'Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs')
-rw-r--r--Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs247
1 files changed, 247 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs b/Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs
new file mode 100644
index 000000000..98a6c2efc
--- /dev/null
+++ b/Software/Visual_Studio/Tango.PMR/FirmwareUpgrade/VersionFileDescriptor.cs
@@ -0,0 +1,247 @@
+// Generated by the protocol buffer compiler. DO NOT EDIT!
+// source: VersionFileDescriptor.proto
+#pragma warning disable 1591, 0612, 3021
+#region Designer generated code
+
+using pb = global::Google.Protobuf;
+using pbc = global::Google.Protobuf.Collections;
+using pbr = global::Google.Protobuf.Reflection;
+using scg = global::System.Collections.Generic;
+namespace Tango.PMR.FirmwareUpgrade {
+
+ /// <summary>Holder for reflection information generated from VersionFileDescriptor.proto</summary>
+ public static partial class VersionFileDescriptorReflection {
+
+ #region Descriptor
+ /// <summary>File descriptor for VersionFileDescriptor.proto</summary>
+ public static pbr::FileDescriptor Descriptor {
+ get { return descriptor; }
+ }
+ private static pbr::FileDescriptor descriptor;
+
+ static VersionFileDescriptorReflection() {
+ byte[] descriptorData = global::System.Convert.FromBase64String(
+ string.Concat(
+ "ChtWZXJzaW9uRmlsZURlc2NyaXB0b3IucHJvdG8SGVRhbmdvLlBNUi5GaXJt",
+ "d2FyZVVwZ3JhZGUaHFZlcnNpb25GaWxlRGVzdGluYXRpb24ucHJvdG8ilAEK",
+ "FVZlcnNpb25GaWxlRGVzY3JpcHRvchIQCghGaWxlTmFtZRgBIAEoCRIPCgdW",
+ "ZXJzaW9uGAIgASgJEkYKC0Rlc3RpbmF0aW9uGAMgASgOMjEuVGFuZ28uUE1S",
+ "LkZpcm13YXJlVXBncmFkZS5WZXJzaW9uRmlsZURlc3RpbmF0aW9uEhAKCENo",
+ "ZWNrU3VtGAQgASgMQiUKI2NvbS50d2luZS50YW5nby5wbXIuZmlybXdhcmV1",
+ "cGdyYWRlYgZwcm90bzM="));
+ descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
+ new pbr::FileDescriptor[] { global::Tango.PMR.FirmwareUpgrade.VersionFileDestinationReflection.Descriptor, },
+ new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
+ new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.FirmwareUpgrade.VersionFileDescriptor), global::Tango.PMR.FirmwareUpgrade.VersionFileDescriptor.Parser, new[]{ "FileName", "Version", "Destination", "CheckSum" }, null, null, null)
+ }));
+ }
+ #endregion
+
+ }
+ #region Messages
+ public sealed partial class VersionFileDescriptor : pb::IMessage<VersionFileDescriptor> {
+ private static readonly pb::MessageParser<VersionFileDescriptor> _parser = new pb::MessageParser<VersionFileDescriptor>(() => new VersionFileDescriptor());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public static pb::MessageParser<VersionFileDescriptor> Parser { get { return _parser; } }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public static pbr::MessageDescriptor Descriptor {
+ get { return global::Tango.PMR.FirmwareUpgrade.VersionFileDescriptorReflection.Descriptor.MessageTypes[0]; }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ pbr::MessageDescriptor pb::IMessage.Descriptor {
+ get { return Descriptor; }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public VersionFileDescriptor() {
+ OnConstruction();
+ }
+
+ partial void OnConstruction();
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public VersionFileDescriptor(VersionFileDescriptor other) : this() {
+ fileName_ = other.fileName_;
+ version_ = other.version_;
+ destination_ = other.destination_;
+ checkSum_ = other.checkSum_;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public VersionFileDescriptor Clone() {
+ return new VersionFileDescriptor(this);
+ }
+
+ /// <summary>Field number for the "FileName" field.</summary>
+ public const int FileNameFieldNumber = 1;
+ private string fileName_ = "";
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public string FileName {
+ get { return fileName_; }
+ set {
+ fileName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
+ }
+ }
+
+ /// <summary>Field number for the "Version" field.</summary>
+ public const int VersionFieldNumber = 2;
+ private string version_ = "";
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public string Version {
+ get { return version_; }
+ set {
+ version_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
+ }
+ }
+
+ /// <summary>Field number for the "Destination" field.</summary>
+ public const int DestinationFieldNumber = 3;
+ private global::Tango.PMR.FirmwareUpgrade.VersionFileDestination destination_ = 0;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public global::Tango.PMR.FirmwareUpgrade.VersionFileDestination Destination {
+ get { return destination_; }
+ set {
+ destination_ = value;
+ }
+ }
+
+ /// <summary>Field number for the "CheckSum" field.</summary>
+ public const int CheckSumFieldNumber = 4;
+ private pb::ByteString checkSum_ = pb::ByteString.Empty;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public pb::ByteString CheckSum {
+ get { return checkSum_; }
+ set {
+ checkSum_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public override bool Equals(object other) {
+ return Equals(other as VersionFileDescriptor);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public bool Equals(VersionFileDescriptor other) {
+ if (ReferenceEquals(other, null)) {
+ return false;
+ }
+ if (ReferenceEquals(other, this)) {
+ return true;
+ }
+ if (FileName != other.FileName) return false;
+ if (Version != other.Version) return false;
+ if (Destination != other.Destination) return false;
+ if (CheckSum != other.CheckSum) return false;
+ return true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public override int GetHashCode() {
+ int hash = 1;
+ if (FileName.Length != 0) hash ^= FileName.GetHashCode();
+ if (Version.Length != 0) hash ^= Version.GetHashCode();
+ if (Destination != 0) hash ^= Destination.GetHashCode();
+ if (CheckSum.Length != 0) hash ^= CheckSum.GetHashCode();
+ return hash;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public override string ToString() {
+ return pb::JsonFormatter.ToDiagnosticString(this);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public void WriteTo(pb::CodedOutputStream output) {
+ if (FileName.Length != 0) {
+ output.WriteRawTag(10);
+ output.WriteString(FileName);
+ }
+ if (Version.Length != 0) {
+ output.WriteRawTag(18);
+ output.WriteString(Version);
+ }
+ if (Destination != 0) {
+ output.WriteRawTag(24);
+ output.WriteEnum((int) Destination);
+ }
+ if (CheckSum.Length != 0) {
+ output.WriteRawTag(34);
+ output.WriteBytes(CheckSum);
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public int CalculateSize() {
+ int size = 0;
+ if (FileName.Length != 0) {
+ size += 1 + pb::CodedOutputStream.ComputeStringSize(FileName);
+ }
+ if (Version.Length != 0) {
+ size += 1 + pb::CodedOutputStream.ComputeStringSize(Version);
+ }
+ if (Destination != 0) {
+ size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Destination);
+ }
+ if (CheckSum.Length != 0) {
+ size += 1 + pb::CodedOutputStream.ComputeBytesSize(CheckSum);
+ }
+ return size;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public void MergeFrom(VersionFileDescriptor other) {
+ if (other == null) {
+ return;
+ }
+ if (other.FileName.Length != 0) {
+ FileName = other.FileName;
+ }
+ if (other.Version.Length != 0) {
+ Version = other.Version;
+ }
+ if (other.Destination != 0) {
+ Destination = other.Destination;
+ }
+ if (other.CheckSum.Length != 0) {
+ CheckSum = other.CheckSum;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ public void MergeFrom(pb::CodedInputStream input) {
+ uint tag;
+ while ((tag = input.ReadTag()) != 0) {
+ switch(tag) {
+ default:
+ input.SkipLastField();
+ break;
+ case 10: {
+ FileName = input.ReadString();
+ break;
+ }
+ case 18: {
+ Version = input.ReadString();
+ break;
+ }
+ case 24: {
+ destination_ = (global::Tango.PMR.FirmwareUpgrade.VersionFileDestination) input.ReadEnum();
+ break;
+ }
+ case 34: {
+ CheckSum = input.ReadBytes();
+ break;
+ }
+ }
+ }
+ }
+
+ }
+
+ #endregion
+
+}
+
+#endregion Designer generated code