|
|
|
@ -3,7 +3,7 @@ |
|
|
|
// source: bsp_IV.proto
|
|
|
|
// Protobuf Java Version: 4.27.2
|
|
|
|
|
|
|
|
package com.example.removemarineanimals.models; |
|
|
|
package com.example.fivewheel.models; |
|
|
|
|
|
|
|
public final class BspIV { |
|
|
|
private BspIV() {} |
|
|
|
@ -104,6 +104,18 @@ public final class BspIV { |
|
|
|
* @return The robotErrorRight. |
|
|
|
*/ |
|
|
|
int getRobotErrorRight(); |
|
|
|
|
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Left = 13;</code> |
|
|
|
* @return The robotCompensationLeft. |
|
|
|
*/ |
|
|
|
int getRobotCompensationLeft(); |
|
|
|
|
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Right = 14;</code> |
|
|
|
* @return The robotCompensationRight. |
|
|
|
*/ |
|
|
|
int getRobotCompensationRight(); |
|
|
|
} |
|
|
|
/** |
|
|
|
* Protobuf type {@code IV_struct_define} |
|
|
|
@ -131,15 +143,15 @@ public final class BspIV { |
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor |
|
|
|
getDescriptor() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
return com.example.fivewheel.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable |
|
|
|
internalGetFieldAccessorTable() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.internal_static_IV_struct_define_fieldAccessorTable |
|
|
|
return com.example.fivewheel.models.BspIV.internal_static_IV_struct_define_fieldAccessorTable |
|
|
|
.ensureFieldAccessorsInitialized( |
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_define.class, com.example.removemarineanimals.models.BspIV.IV_struct_define.Builder.class); |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_define.class, com.example.fivewheel.models.BspIV.IV_struct_define.Builder.class); |
|
|
|
} |
|
|
|
|
|
|
|
public static final int ROBOT_MOVE_AUTOSPEED_FIELD_NUMBER = 1; |
|
|
|
@ -278,6 +290,28 @@ public final class BspIV { |
|
|
|
return robotErrorRight_; |
|
|
|
} |
|
|
|
|
|
|
|
public static final int ROBOT_COMPENSATION_LEFT_FIELD_NUMBER = 13; |
|
|
|
private int robotCompensationLeft_ = 0; |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Left = 13;</code> |
|
|
|
* @return The robotCompensationLeft. |
|
|
|
*/ |
|
|
|
@java.lang.Override |
|
|
|
public int getRobotCompensationLeft() { |
|
|
|
return robotCompensationLeft_; |
|
|
|
} |
|
|
|
|
|
|
|
public static final int ROBOT_COMPENSATION_RIGHT_FIELD_NUMBER = 14; |
|
|
|
private int robotCompensationRight_ = 0; |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Right = 14;</code> |
|
|
|
* @return The robotCompensationRight. |
|
|
|
*/ |
|
|
|
@java.lang.Override |
|
|
|
public int getRobotCompensationRight() { |
|
|
|
return robotCompensationRight_; |
|
|
|
} |
|
|
|
|
|
|
|
private byte memoizedIsInitialized = -1; |
|
|
|
@java.lang.Override |
|
|
|
public final boolean isInitialized() { |
|
|
|
@ -328,6 +362,12 @@ public final class BspIV { |
|
|
|
if (robotErrorRight_ != 0) { |
|
|
|
output.writeInt32(12, robotErrorRight_); |
|
|
|
} |
|
|
|
if (robotCompensationLeft_ != 0) { |
|
|
|
output.writeInt32(13, robotCompensationLeft_); |
|
|
|
} |
|
|
|
if (robotCompensationRight_ != 0) { |
|
|
|
output.writeInt32(14, robotCompensationRight_); |
|
|
|
} |
|
|
|
getUnknownFields().writeTo(output); |
|
|
|
} |
|
|
|
|
|
|
|
@ -385,6 +425,14 @@ public final class BspIV { |
|
|
|
size += com.google.protobuf.CodedOutputStream |
|
|
|
.computeInt32Size(12, robotErrorRight_); |
|
|
|
} |
|
|
|
if (robotCompensationLeft_ != 0) { |
|
|
|
size += com.google.protobuf.CodedOutputStream |
|
|
|
.computeInt32Size(13, robotCompensationLeft_); |
|
|
|
} |
|
|
|
if (robotCompensationRight_ != 0) { |
|
|
|
size += com.google.protobuf.CodedOutputStream |
|
|
|
.computeInt32Size(14, robotCompensationRight_); |
|
|
|
} |
|
|
|
size += getUnknownFields().getSerializedSize(); |
|
|
|
memoizedSize = size; |
|
|
|
return size; |
|
|
|
@ -395,10 +443,10 @@ public final class BspIV { |
|
|
|
if (obj == this) { |
|
|
|
return true; |
|
|
|
} |
|
|
|
if (!(obj instanceof com.example.removemarineanimals.models.BspIV.IV_struct_define)) { |
|
|
|
if (!(obj instanceof com.example.fivewheel.models.BspIV.IV_struct_define)) { |
|
|
|
return super.equals(obj); |
|
|
|
} |
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_define other = (com.example.removemarineanimals.models.BspIV.IV_struct_define) obj; |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_define other = (com.example.fivewheel.models.BspIV.IV_struct_define) obj; |
|
|
|
|
|
|
|
if (getRobotMoveAutoSpeed() |
|
|
|
!= other.getRobotMoveAutoSpeed()) return false; |
|
|
|
@ -424,6 +472,10 @@ public final class BspIV { |
|
|
|
!= other.getRobotErrorLeft()) return false; |
|
|
|
if (getRobotErrorRight() |
|
|
|
!= other.getRobotErrorRight()) return false; |
|
|
|
if (getRobotCompensationLeft() |
|
|
|
!= other.getRobotCompensationLeft()) return false; |
|
|
|
if (getRobotCompensationRight() |
|
|
|
!= other.getRobotCompensationRight()) return false; |
|
|
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false; |
|
|
|
return true; |
|
|
|
} |
|
|
|
@ -459,49 +511,53 @@ public final class BspIV { |
|
|
|
hash = (53 * hash) + getRobotErrorLeft(); |
|
|
|
hash = (37 * hash) + ROBOT_ERROR_RIGHT_FIELD_NUMBER; |
|
|
|
hash = (53 * hash) + getRobotErrorRight(); |
|
|
|
hash = (37 * hash) + ROBOT_COMPENSATION_LEFT_FIELD_NUMBER; |
|
|
|
hash = (53 * hash) + getRobotCompensationLeft(); |
|
|
|
hash = (37 * hash) + ROBOT_COMPENSATION_RIGHT_FIELD_NUMBER; |
|
|
|
hash = (53 * hash) + getRobotCompensationRight(); |
|
|
|
hash = (29 * hash) + getUnknownFields().hashCode(); |
|
|
|
memoizedHashCode = hash; |
|
|
|
return hash; |
|
|
|
} |
|
|
|
|
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
java.nio.ByteBuffer data) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
java.nio.ByteBuffer data, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data, extensionRegistry); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
com.google.protobuf.ByteString data) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
com.google.protobuf.ByteString data, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data, extensionRegistry); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom(byte[] data) |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom(byte[] data) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
byte[] data, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException { |
|
|
|
return PARSER.parseFrom(data, extensionRegistry); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom(java.io.InputStream input) |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom(java.io.InputStream input) |
|
|
|
throws java.io.IOException { |
|
|
|
return com.google.protobuf.GeneratedMessage |
|
|
|
.parseWithIOException(PARSER, input); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
java.io.InputStream input, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws java.io.IOException { |
|
|
|
@ -509,26 +565,26 @@ public final class BspIV { |
|
|
|
.parseWithIOException(PARSER, input, extensionRegistry); |
|
|
|
} |
|
|
|
|
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseDelimitedFrom(java.io.InputStream input) |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseDelimitedFrom(java.io.InputStream input) |
|
|
|
throws java.io.IOException { |
|
|
|
return com.google.protobuf.GeneratedMessage |
|
|
|
.parseDelimitedWithIOException(PARSER, input); |
|
|
|
} |
|
|
|
|
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseDelimitedFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseDelimitedFrom( |
|
|
|
java.io.InputStream input, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws java.io.IOException { |
|
|
|
return com.google.protobuf.GeneratedMessage |
|
|
|
.parseDelimitedWithIOException(PARSER, input, extensionRegistry); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
com.google.protobuf.CodedInputStream input) |
|
|
|
throws java.io.IOException { |
|
|
|
return com.google.protobuf.GeneratedMessage |
|
|
|
.parseWithIOException(PARSER, input); |
|
|
|
} |
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define parseFrom( |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define parseFrom( |
|
|
|
com.google.protobuf.CodedInputStream input, |
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
|
|
|
throws java.io.IOException { |
|
|
|
@ -541,7 +597,7 @@ public final class BspIV { |
|
|
|
public static Builder newBuilder() { |
|
|
|
return DEFAULT_INSTANCE.toBuilder(); |
|
|
|
} |
|
|
|
public static Builder newBuilder(com.example.removemarineanimals.models.BspIV.IV_struct_define prototype) { |
|
|
|
public static Builder newBuilder(com.example.fivewheel.models.BspIV.IV_struct_define prototype) { |
|
|
|
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); |
|
|
|
} |
|
|
|
@java.lang.Override |
|
|
|
@ -562,21 +618,21 @@ public final class BspIV { |
|
|
|
public static final class Builder extends |
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> implements |
|
|
|
// @@protoc_insertion_point(builder_implements:IV_struct_define)
|
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_defineOrBuilder { |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_defineOrBuilder { |
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor |
|
|
|
getDescriptor() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
return com.example.fivewheel.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable |
|
|
|
internalGetFieldAccessorTable() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.internal_static_IV_struct_define_fieldAccessorTable |
|
|
|
return com.example.fivewheel.models.BspIV.internal_static_IV_struct_define_fieldAccessorTable |
|
|
|
.ensureFieldAccessorsInitialized( |
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_define.class, com.example.removemarineanimals.models.BspIV.IV_struct_define.Builder.class); |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_define.class, com.example.fivewheel.models.BspIV.IV_struct_define.Builder.class); |
|
|
|
} |
|
|
|
|
|
|
|
// Construct using com.example.removemarineanimals.models.BspIV.IV_struct_define.newBuilder()
|
|
|
|
// Construct using com.example.fivewheel.models.BspIV.IV_struct_define.newBuilder()
|
|
|
|
private Builder() { |
|
|
|
|
|
|
|
} |
|
|
|
@ -602,23 +658,25 @@ public final class BspIV { |
|
|
|
robotCurrentRight_ = 0; |
|
|
|
robotErrorLeft_ = 0; |
|
|
|
robotErrorRight_ = 0; |
|
|
|
robotCompensationLeft_ = 0; |
|
|
|
robotCompensationRight_ = 0; |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public com.google.protobuf.Descriptors.Descriptor |
|
|
|
getDescriptorForType() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
return com.example.fivewheel.models.BspIV.internal_static_IV_struct_define_descriptor; |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public com.example.removemarineanimals.models.BspIV.IV_struct_define getDefaultInstanceForType() { |
|
|
|
return com.example.removemarineanimals.models.BspIV.IV_struct_define.getDefaultInstance(); |
|
|
|
public com.example.fivewheel.models.BspIV.IV_struct_define getDefaultInstanceForType() { |
|
|
|
return com.example.fivewheel.models.BspIV.IV_struct_define.getDefaultInstance(); |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public com.example.removemarineanimals.models.BspIV.IV_struct_define build() { |
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_define result = buildPartial(); |
|
|
|
public com.example.fivewheel.models.BspIV.IV_struct_define build() { |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_define result = buildPartial(); |
|
|
|
if (!result.isInitialized()) { |
|
|
|
throw newUninitializedMessageException(result); |
|
|
|
} |
|
|
|
@ -626,14 +684,14 @@ public final class BspIV { |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public com.example.removemarineanimals.models.BspIV.IV_struct_define buildPartial() { |
|
|
|
com.example.removemarineanimals.models.BspIV.IV_struct_define result = new com.example.removemarineanimals.models.BspIV.IV_struct_define(this); |
|
|
|
public com.example.fivewheel.models.BspIV.IV_struct_define buildPartial() { |
|
|
|
com.example.fivewheel.models.BspIV.IV_struct_define result = new com.example.fivewheel.models.BspIV.IV_struct_define(this); |
|
|
|
if (bitField0_ != 0) { buildPartial0(result); } |
|
|
|
onBuilt(); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
private void buildPartial0(com.example.removemarineanimals.models.BspIV.IV_struct_define result) { |
|
|
|
private void buildPartial0(com.example.fivewheel.models.BspIV.IV_struct_define result) { |
|
|
|
int from_bitField0_ = bitField0_; |
|
|
|
if (((from_bitField0_ & 0x00000001) != 0)) { |
|
|
|
result.robotMoveAutoSpeed_ = robotMoveAutoSpeed_; |
|
|
|
@ -671,20 +729,26 @@ public final class BspIV { |
|
|
|
if (((from_bitField0_ & 0x00000800) != 0)) { |
|
|
|
result.robotErrorRight_ = robotErrorRight_; |
|
|
|
} |
|
|
|
if (((from_bitField0_ & 0x00001000) != 0)) { |
|
|
|
result.robotCompensationLeft_ = robotCompensationLeft_; |
|
|
|
} |
|
|
|
if (((from_bitField0_ & 0x00002000) != 0)) { |
|
|
|
result.robotCompensationRight_ = robotCompensationRight_; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) { |
|
|
|
if (other instanceof com.example.removemarineanimals.models.BspIV.IV_struct_define) { |
|
|
|
return mergeFrom((com.example.removemarineanimals.models.BspIV.IV_struct_define)other); |
|
|
|
if (other instanceof com.example.fivewheel.models.BspIV.IV_struct_define) { |
|
|
|
return mergeFrom((com.example.fivewheel.models.BspIV.IV_struct_define)other); |
|
|
|
} else { |
|
|
|
super.mergeFrom(other); |
|
|
|
return this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public Builder mergeFrom(com.example.removemarineanimals.models.BspIV.IV_struct_define other) { |
|
|
|
if (other == com.example.removemarineanimals.models.BspIV.IV_struct_define.getDefaultInstance()) return this; |
|
|
|
public Builder mergeFrom(com.example.fivewheel.models.BspIV.IV_struct_define other) { |
|
|
|
if (other == com.example.fivewheel.models.BspIV.IV_struct_define.getDefaultInstance()) return this; |
|
|
|
if (other.getRobotMoveAutoSpeed() != 0) { |
|
|
|
setRobotMoveAutoSpeed(other.getRobotMoveAutoSpeed()); |
|
|
|
} |
|
|
|
@ -721,6 +785,12 @@ public final class BspIV { |
|
|
|
if (other.getRobotErrorRight() != 0) { |
|
|
|
setRobotErrorRight(other.getRobotErrorRight()); |
|
|
|
} |
|
|
|
if (other.getRobotCompensationLeft() != 0) { |
|
|
|
setRobotCompensationLeft(other.getRobotCompensationLeft()); |
|
|
|
} |
|
|
|
if (other.getRobotCompensationRight() != 0) { |
|
|
|
setRobotCompensationRight(other.getRobotCompensationRight()); |
|
|
|
} |
|
|
|
this.mergeUnknownFields(other.getUnknownFields()); |
|
|
|
onChanged(); |
|
|
|
return this; |
|
|
|
@ -807,6 +877,16 @@ public final class BspIV { |
|
|
|
bitField0_ |= 0x00000800; |
|
|
|
break; |
|
|
|
} // case 96
|
|
|
|
case 104: { |
|
|
|
robotCompensationLeft_ = input.readInt32(); |
|
|
|
bitField0_ |= 0x00001000; |
|
|
|
break; |
|
|
|
} // case 104
|
|
|
|
case 112: { |
|
|
|
robotCompensationRight_ = input.readInt32(); |
|
|
|
bitField0_ |= 0x00002000; |
|
|
|
break; |
|
|
|
} // case 112
|
|
|
|
default: { |
|
|
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) { |
|
|
|
done = true; // was an endgroup tag
|
|
|
|
@ -1220,16 +1300,80 @@ public final class BspIV { |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
private int robotCompensationLeft_ ; |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Left = 13;</code> |
|
|
|
* @return The robotCompensationLeft. |
|
|
|
*/ |
|
|
|
@java.lang.Override |
|
|
|
public int getRobotCompensationLeft() { |
|
|
|
return robotCompensationLeft_; |
|
|
|
} |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Left = 13;</code> |
|
|
|
* @param value The robotCompensationLeft to set. |
|
|
|
* @return This builder for chaining. |
|
|
|
*/ |
|
|
|
public Builder setRobotCompensationLeft(int value) { |
|
|
|
|
|
|
|
robotCompensationLeft_ = value; |
|
|
|
bitField0_ |= 0x00001000; |
|
|
|
onChanged(); |
|
|
|
return this; |
|
|
|
} |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Left = 13;</code> |
|
|
|
* @return This builder for chaining. |
|
|
|
*/ |
|
|
|
public Builder clearRobotCompensationLeft() { |
|
|
|
bitField0_ = (bitField0_ & ~0x00001000); |
|
|
|
robotCompensationLeft_ = 0; |
|
|
|
onChanged(); |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
private int robotCompensationRight_ ; |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Right = 14;</code> |
|
|
|
* @return The robotCompensationRight. |
|
|
|
*/ |
|
|
|
@java.lang.Override |
|
|
|
public int getRobotCompensationRight() { |
|
|
|
return robotCompensationRight_; |
|
|
|
} |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Right = 14;</code> |
|
|
|
* @param value The robotCompensationRight to set. |
|
|
|
* @return This builder for chaining. |
|
|
|
*/ |
|
|
|
public Builder setRobotCompensationRight(int value) { |
|
|
|
|
|
|
|
robotCompensationRight_ = value; |
|
|
|
bitField0_ |= 0x00002000; |
|
|
|
onChanged(); |
|
|
|
return this; |
|
|
|
} |
|
|
|
/** |
|
|
|
* <code>int32 Robot_Compensation_Right = 14;</code> |
|
|
|
* @return This builder for chaining. |
|
|
|
*/ |
|
|
|
public Builder clearRobotCompensationRight() { |
|
|
|
bitField0_ = (bitField0_ & ~0x00002000); |
|
|
|
robotCompensationRight_ = 0; |
|
|
|
onChanged(); |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:IV_struct_define)
|
|
|
|
} |
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:IV_struct_define)
|
|
|
|
private static final com.example.removemarineanimals.models.BspIV.IV_struct_define DEFAULT_INSTANCE; |
|
|
|
private static final com.example.fivewheel.models.BspIV.IV_struct_define DEFAULT_INSTANCE; |
|
|
|
static { |
|
|
|
DEFAULT_INSTANCE = new com.example.removemarineanimals.models.BspIV.IV_struct_define(); |
|
|
|
DEFAULT_INSTANCE = new com.example.fivewheel.models.BspIV.IV_struct_define(); |
|
|
|
} |
|
|
|
|
|
|
|
public static com.example.removemarineanimals.models.BspIV.IV_struct_define getDefaultInstance() { |
|
|
|
public static com.example.fivewheel.models.BspIV.IV_struct_define getDefaultInstance() { |
|
|
|
return DEFAULT_INSTANCE; |
|
|
|
} |
|
|
|
|
|
|
|
@ -1265,7 +1409,7 @@ public final class BspIV { |
|
|
|
} |
|
|
|
|
|
|
|
@java.lang.Override |
|
|
|
public com.example.removemarineanimals.models.BspIV.IV_struct_define getDefaultInstanceForType() { |
|
|
|
public com.example.fivewheel.models.BspIV.IV_struct_define getDefaultInstanceForType() { |
|
|
|
return DEFAULT_INSTANCE; |
|
|
|
} |
|
|
|
|
|
|
|
@ -1285,7 +1429,7 @@ public final class BspIV { |
|
|
|
descriptor; |
|
|
|
static { |
|
|
|
java.lang.String[] descriptorData = { |
|
|
|
"\n\014bsp_IV.proto\"\341\002\n\020IV_struct_define\022\034\n\024R" + |
|
|
|
"\n\014bsp_IV.proto\"\244\003\n\020IV_struct_define\022\034\n\024R" + |
|
|
|
"obot_Move_AutoSpeed\030\001 \001(\005\022\036\n\026Robot_Move_" + |
|
|
|
"ManualSpeed\030\002 \001(\005\022\035\n\025Robot_CurrentPositi" + |
|
|
|
"on\030\003 \001(\005\022\027\n\017Robot_AngleRoll\030\004 \001(\005\022\023\n\013Rob" + |
|
|
|
@ -1294,8 +1438,9 @@ public final class BspIV { |
|
|
|
"t_CurrentState\030\010 \001(\005\022\032\n\022Robot_Current_Le" + |
|
|
|
"ft\030\t \001(\005\022\033\n\023Robot_Current_Right\030\n \001(\005\022\030\n" + |
|
|
|
"\020Robot_Error_Left\030\013 \001(\005\022\031\n\021Robot_Error_R" + |
|
|
|
"ight\030\014 \001(\005B*\n&com.example.removemarinean" + |
|
|
|
"imals.modelsP\000b\006proto3" |
|
|
|
"ight\030\014 \001(\005\022\037\n\027Robot_Compensation_Left\030\r " + |
|
|
|
"\001(\005\022 \n\030Robot_Compensation_Right\030\016 \001(\005B \n" + |
|
|
|
"\034com.example.fivewheel.modelsP\000b\006proto3" |
|
|
|
}; |
|
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor |
|
|
|
.internalBuildGeneratedFileFrom(descriptorData, |
|
|
|
@ -1306,7 +1451,7 @@ public final class BspIV { |
|
|
|
internal_static_IV_struct_define_fieldAccessorTable = new |
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable( |
|
|
|
internal_static_IV_struct_define_descriptor, |
|
|
|
new java.lang.String[] { "RobotMoveAutoSpeed", "RobotMoveManualSpeed", "RobotCurrentPosition", "RobotAngleRoll", "RobotError", "RobotDynamometerValue", "RobotForceValue", "RobotCurrentState", "RobotCurrentLeft", "RobotCurrentRight", "RobotErrorLeft", "RobotErrorRight", }); |
|
|
|
new java.lang.String[] { "RobotMoveAutoSpeed", "RobotMoveManualSpeed", "RobotCurrentPosition", "RobotAngleRoll", "RobotError", "RobotDynamometerValue", "RobotForceValue", "RobotCurrentState", "RobotCurrentLeft", "RobotCurrentRight", "RobotErrorLeft", "RobotErrorRight", "RobotCompensationLeft", "RobotCompensationRight", }); |
|
|
|
descriptor.resolveAllFeaturesImmutable(); |
|
|
|
} |
|
|
|
|