You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
20 lines
391 B
syntax = "proto3";
|
|
|
|
package bluetooth.hci;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
service ControllerFacade {
|
|
rpc GetMacAddress(google.protobuf.Empty) returns (AddressMsg) {}
|
|
rpc WriteLocalName(NameMsg) returns (google.protobuf.Empty) {}
|
|
rpc GetLocalName(google.protobuf.Empty) returns (NameMsg) {}
|
|
}
|
|
|
|
message AddressMsg {
|
|
bytes address = 1;
|
|
}
|
|
|
|
message NameMsg {
|
|
bytes name = 1;
|
|
}
|