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

Commit 62a808c9 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5850082 from b8f4fec0 to rvc-release

Change-Id: Idbb5cebba82f8b2ce4b0a821ed7c824c82edba38
parents 2da7d07d b8f4fec0
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -47,15 +47,8 @@ cc_library_static {
        "include",
        ".",
    ],
    header_libs: [
        "libbluetooth_headers",
    ],
    include_dirs: [
        "packages/modules/Bluetooth/system",
        "packages/modules/Bluetooth/system/utils/include",
        "packages/modules/Bluetooth/system/hci/include",
        "packages/modules/Bluetooth/system/internal_include",
        "packages/modules/Bluetooth/system/stack/include",
    ],
    shared_libs: [
        "libbase",
@@ -90,9 +83,6 @@ cc_test_host {
    ],
    include_dirs: [
        "packages/modules/Bluetooth/system",
        "packages/modules/Bluetooth/system/utils/include",
        "packages/modules/Bluetooth/system/hci/include",
        "packages/modules/Bluetooth/system/stack/include",
    ],
    shared_libs: [
        "liblog",
@@ -126,9 +116,6 @@ cc_test_host {
    ],
    include_dirs: [
        "packages/modules/Bluetooth/system",
        "packages/modules/Bluetooth/system/utils/include",
        "packages/modules/Bluetooth/system/hci/include",
        "packages/modules/Bluetooth/system/stack/include",
    ],
    shared_libs: [
        "liblog",
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@
#include <utils/Log.h>
#include <future>

#include "hci_internals.h"

using ::android::bluetooth::root_canal::TestEnvironment;

constexpr uint16_t kTestPort = 6401;
+0 −2
Original line number Diff line number Diff line
@@ -24,8 +24,6 @@
#include <string.h>
#include <utils/Log.h>

#include "hci_internals.h"

namespace android {
namespace bluetooth {
namespace root_canal {
+5 −0
Original line number Diff line number Diff line
@@ -59,5 +59,10 @@ enum class Version : uint8_t {
  V5_0 = 9,
};

enum class Role : uint8_t {
  MASTER = 0x00,
  SLAVE = 0x01,
};

}  // namespace hci
}  // namespace test_vendor_lib
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ enum class OpCode : uint16_t {
  LE_SET_ADVERTISING_PARAMETERS = LE_CONTROLLER | 0x0006,
  LE_READ_ADVERTISING_CHANNEL_TX_POWER = LE_CONTROLLER | 0x0007,
  LE_SET_ADVERTISING_DATA = LE_CONTROLLER | 0x0008,
  LE_SET_SCAN_RSPONSE_DATA = LE_CONTROLLER | 0x0009,
  LE_SET_SCAN_RESPONSE_DATA = LE_CONTROLLER | 0x0009,
  LE_SET_ADVERTISING_ENABLE = LE_CONTROLLER | 0x000A,
  LE_SET_SCAN_PARAMETERS = LE_CONTROLLER | 0x000B,
  LE_SET_SCAN_ENABLE = LE_CONTROLLER | 0x000C,
Loading