From a40a46cc833462e7fd98fa21b0a53840a0629b2d Mon Sep 17 00:00:00 2001 From: Peter Lin Date: Wed, 27 Mar 2024 14:23:09 +0000 Subject: [PATCH 1/2] Screen Brightening/Darkening thresholds update Bug: 327934902 test: dumpsys display Change-Id: Ieceaf9c9f50ca31545400220a3b3ac07310112f6 --- .../base/core/res/res/values/config.xml | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index ecfb1c9..53282f6 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -416,6 +416,55 @@ 2050 + + + 0.5 + 0.6 + 0.9 + + + + + 100 + 100 + 40 + 10 + + + + + 200 + 200 + 200 + 200 + + 90198 From 909711bbdfd4f768e917b4570665ff83d9594ebc Mon Sep 17 00:00:00 2001 From: Rios Kao Date: Tue, 30 Apr 2024 09:07:23 +0000 Subject: [PATCH 2/2] audio: add debug interface soong value note: Using the flag to filter all debugging purpose interface from the build. Test: build pass Bug: 332490210 Change-Id: I06a8048c0d28b58c3965ad110f41255c92d1b6d5 --- BoardConfig-common.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/BoardConfig-common.mk b/BoardConfig-common.mk index a3ca747..5cf00b2 100644 --- a/BoardConfig-common.mk +++ b/BoardConfig-common.mk @@ -245,6 +245,7 @@ ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) $(call soong_config_set,aoc_audio_func,dump_usecase_data,true) $(call soong_config_set,aoc_audio_func,hal_socket_control,true) $(call soong_config_set,aoc_audio_func,record_tuning_keys,true) +$(call soong_config_set,aoc_audio_func,aidl_command_interface,true) endif ifneq (,$(filter aosp_%,$(TARGET_PRODUCT)))