Use a stream for the steering as well.

This commit is contained in:
Piv
2019-11-24 13:12:55 +10:30
parent 070a87f285
commit d1695772b3
3 changed files with 7 additions and 7 deletions

View File

@@ -20,5 +20,5 @@ message SteeringResponse{
service CarControl{
rpc SetThrottle(stream ThrottleRequest) returns (ThrottleResponse){}
rpc SetSteering(SteeringRequest) returns (SteeringResponse){}
rpc SetSteering(stream SteeringRequest) returns (SteeringResponse){}
}