Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f932f292 authored by Hao Chen's avatar Hao Chen Committed by Android (Google) Code Review
Browse files

Merge "Add VHAL Requests and Results Proto Messages" into udc-dev

parents 442ae0b9 18e54639
Loading
Loading
Loading
Loading
+25 −1
Original line number Diff line number Diff line
@@ -18,9 +18,33 @@ syntax = "proto3";

package android.hardware.automotive.vehicle.proto;

import "android/hardware/automotive/vehicle/StatusCode.proto";
import "android/hardware/automotive/vehicle/VehiclePropValue.proto";

message VehiclePropValueRequest {
    int32 request_id = 1;
    int64 request_id = 1;
    VehiclePropValue value = 2;
};

message SetValueResult {
    int64 request_id = 1;
    StatusCode status = 2;
};

message GetValueResult {
    int64 request_id = 1;
    StatusCode status = 2;
    VehiclePropValue value = 3;
};

message VehiclePropValueRequests {
    repeated VehiclePropValueRequest requests = 1;
};

message SetValueResults {
    repeated SetValueResult results = 1;
};

message GetValueResults {
    repeated GetValueResult results = 1;
};