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

Commit 4607d186 authored by Heather Lee Wilson's avatar Heather Lee Wilson
Browse files

include bdroid_buildcfg.h from device repo

Fixes Bluetooth tethering issues where BTHC_USERIAL_READ_MEM_SIZE needs to be
set to a higher value.

Change-Id: Ia8db682aadee3ccff8aba1ce27e18a093a78db9c
parent 532448f9
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_CFLAGS += $(bdroid_CFLAGS)

LOCAL_SRC_FILES := \
        src/bt_hci_bdroid.c \
        src/lpm.c \
@@ -11,7 +13,7 @@ LOCAL_SRC_FILES := \

ifeq ($(BLUETOOTH_HCI_USE_MCT),true)

LOCAL_CFLAGS := -DHCI_USE_MCT
LOCAL_CFLAGS += -DHCI_USE_MCT

LOCAL_SRC_FILES += \
        src/hci_mct.c \
@@ -27,7 +29,8 @@ endif

LOCAL_C_INCLUDES += \
        $(LOCAL_PATH)/include \
        $(LOCAL_PATH)/../utils/include
        $(LOCAL_PATH)/../utils/include \
        $(bdroid_C_INCLUDES)

LOCAL_SHARED_LIBRARIES := \
        libcutils \
+4 −0
Original line number Diff line number Diff line
@@ -32,6 +32,10 @@

#include "bt_hci_lib.h"

#ifdef HAS_BDROID_BUILDCFG
#include "bdroid_buildcfg.h"
#endif

/******************************************************************************
**  Constants & Macros
******************************************************************************/