diff --git a/proto/protofiles_sources/server_car/sonar.proto b/proto/protofiles_sources/server_car/sonar.proto index dc24ed94bad..8caa566651a 100644 --- a/proto/protofiles_sources/server_car/sonar.proto +++ b/proto/protofiles_sources/server_car/sonar.proto @@ -1,9 +1,16 @@ syntax = "proto3"; -package carkot; message SonarRequest { repeated int32 angles = 1; + repeated int32 attempts = 2; + int32 threshold = 3; + Smoothing smoothing = 4; + enum Smoothing { + NONE = 0; + MEDIAN = 1; + MEAN = 2; + } } message SonarResponse {