Recording vehicle change is working

This commit is contained in:
Piv
2020-04-25 16:29:12 +09:30
parent 1d2253dd18
commit b633fdea95
5 changed files with 39 additions and 12 deletions

View File

@@ -8,6 +8,7 @@ option java_outer_classname = "PersonTrackingProto";
import "google/protobuf/empty.proto";
import "google/protobuf/wrappers.proto";
import "car/control/motorService.proto";
message Int32Value{
int32 value = 1;
@@ -24,7 +25,6 @@ message PointScan{
}
service PersonTracking{
rpc set_tracking_group(Int32Value) returns (google.protobuf.Empty) {}
@@ -34,4 +34,6 @@ service PersonTracking{
rpc record(google.protobuf.BoolValue) returns (google.protobuf.Empty) {}
rpc save_lidar(MotorControl.SaveRequest) returns (google.protobuf.Empty) {}
}