blob: 4472bfec81f5307f8e3d9c41ea9c8c1859aad49b [file] [log] [blame]
syntax = "proto3";
package bluetooth.cert;
import "google/protobuf/empty.proto";
import "facade/common.proto";
service RootCert {
rpc StartStack(StartStackRequest) returns (StartStackResponse) {}
rpc StopStack(StopStackRequest) returns (StopStackResponse) {}
}
enum BluetoothModule {
HAL = 0;
HCI = 1;
L2CAP = 2;
SECURITY = 3;
}
message StartStackRequest {
BluetoothModule module_to_test = 1;
}
message StartStackResponse {}
message StopStackRequest {}
message StopStackResponse {}
service ReadOnlyProperty {
rpc ReadLocalAddress(google.protobuf.Empty) returns (facade.BluetoothAddress) {}
}