diff options
author | JustArchi <JustArchi@JustArchi.net> | 2015-07-10 06:42:32 +0200 |
---|---|---|
committer | tilaksidduram <tilaksidduram@gmail.com> | 2015-09-07 23:42:22 +0530 |
commit | ac4c22394966a4eb82be6d402ad19e235f7c7b26 (patch) | |
tree | 7d9cb7e92751e4bb26a20807ca69d57ec4269403 | |
parent | 55d7df1e375bfa7f51e0cd4df4dad6753bd8a605 (diff) | |
download | device_samsung_n7100-ac4c22394966a4eb82be6d402ad19e235f7c7b26.zip device_samsung_n7100-ac4c22394966a4eb82be6d402ad19e235f7c7b26.tar.gz device_samsung_n7100-ac4c22394966a4eb82be6d402ad19e235f7c7b26.tar.bz2 |
N7100: Boost earpiece volume
I'm still wondering what exactly happened that resulted earpiece volume that low between CM11 and CM12.
I compared all current earpiece CTLs and they seem to be exactly the same as stock ones, although volume is still too low.
Let's fix it by enabling boost level 1 (possible <0,3>) and increasing output volume to 60 (possible <57,63>)
Perhaps I find some better solution in future.
Closes #101
-rw-r--r-- | configs/tiny_hw.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configs/tiny_hw.xml b/configs/tiny_hw.xml index 03c613c..195a909 100644 --- a/configs/tiny_hw.xml +++ b/configs/tiny_hw.xml @@ -158,16 +158,19 @@ We are able to have most of our routing static so do that <ctl name="AIF2ADC HPF Switch" val="1"/> <ctl name="AIF1DAC1 Volume" val="96"/> <ctl name="AIF2DAC Volume" val="96"/> - <ctl name="AIF1 Boost Volume" val="0"/> - <ctl name="AIF2 Boost Volume" val="0"/> + <ctl name="AIF1 Boost Volume" val="1"/> + <ctl name="AIF2 Boost Volume" val="1"/> <ctl name="DAC1 Volume" val="96"/> <ctl name="Left Output Mixer DAC Volume" val="7"/> <ctl name="Right Output Mixer DAC Volume" val="7"/> - <ctl name="Output Volume" val="57"/> + <ctl name="Output Volume" val="60"/> <ctl name="Earpiece Volume" val="1"/> </path> <path name="off"> <ctl name="RCV Switch" val="0"/> + <ctl name="AIF1 Boost Volume" val="0"/> + <ctl name="AIF2 Boost Volume" val="0"/> + <ctl name="Output Volume" val="57"/> </path> </device> <device name="headphone"> |