522601435d
* Add this atom to report events related to Bluetooth link layer connection, including: - Obfuscated ID of remote device - Connection handle - Direction of the connection - Type of the connection - Associated HCI command and/or event - Status code associated with HCI command and/or event - Reason code associated with HCI command and/or event * Add enum definitions for HCI commands and events as defined in the Bluetooth 5.0 specification * Add enum definitions for link type and direction Bug: 112969790 Test: make, test drive with statsd Change-Id: I0fdc59274d49ad503e9ba9cf8f49c9d8872a4131 Merged-In: I0fdc59274d49ad503e9ba9cf8f49c9d8872a4131 (cherry picked from commit ab86dbd20cf17a1389d42135865eabfc4fc48604)
28 lines
949 B
Plaintext
28 lines
949 B
Plaintext
// Copyright (C) 2018 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// C++ library for Bluetooth platform wide protobuf definitions
|
|
cc_library_static {
|
|
name: "libbt-platform-protos-lite",
|
|
host_supported: true,
|
|
proto: {
|
|
export_proto_headers: true,
|
|
type: "lite",
|
|
},
|
|
srcs: [
|
|
"android/bluetooth/enums.proto",
|
|
"android/bluetooth/hci/enums.proto",
|
|
],
|
|
}
|