From c01a9f09cfef92421c1e45b75d5736f1be20f626 Mon Sep 17 00:00:00 2001 From: kuanyuhuang Date: Tue, 20 Dec 2022 12:37:26 +0000 Subject: [PATCH] Add soong config property for skiping opening BT/WiFi coex device Add BLUETOOTH_SKIP_COEX_DEVICE that BT can skip opening BT/WiFi coex device to enable BT. It is for device bringup stage to make BT can be enabled before WiFi bring up. Bug: 261526478 Test: local build and enable BT Change-Id: Id2af2979c4ddcf164484c7fa1bef2e4f5d0a8956 --- device-akita.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/device-akita.mk b/device-akita.mk index e4de435..ca83715 100644 --- a/device-akita.mk +++ b/device-akita.mk @@ -108,6 +108,12 @@ PRODUCT_PACKAGES_DEBUG += \ PRODUCT_PRODUCT_PROPERTIES += \ persist.bluetooth.a2dp_aac.vbr_supported=true +# TODO b/261526478 remove after BT/WiFi codex device exists +# Bluetooth does not open BT/WiFi codex device before WiFi bringup +BLUETOOTH_SKIP_COEX_DEVICE := true +# Inject soong bluetooth configurations +$(call soong_config_set,bluetooth,bluetooth_skip_coex_device,$(BLUETOOTH_SKIP_COEX_DEVICE)) + # Spatial Audio PRODUCT_PACKAGES += \ libspatialaudio \