sm7250-common: overlay: Update multiple vibration intensity levels config for T

Since commit: eaaf5331d6
multiple intensities configuration flag has been changed to an interger
reflect that change in here to allow multiple intensity vibration pattern in settings.

Change-Id: I13f9dbf6280623ad1c954ce96ceecbe363140062
Signed-off-by: UtsavBalar1231 <utsavbalar1231@gmail.com>
This commit is contained in:
UtsavBalar1231 2022-08-31 11:58:03 +00:00 committed by mikairyuu
parent 7ef489b51a
commit afdb27fdd8

View File

@ -12,11 +12,21 @@
--> -->
<resources> <resources>
<!-- Whether or not the device is capable of multiple levels of vibration intensity. <!-- The number of vibration intensity levels supported by the device.
Note that this is different from whether it can control the vibration amplitude as some Note that this should correspond to the ability to vary the vibration amplitude, with
devices will be able to vary their amplitude but do not possess enough dynamic range to enough dynamic range to have at least as many distinct intensity levels as defined here.
have distinct intensity levels --> Supported values are 1, 2, 3. If '1', the settings app will use a toggle for the settings,
<bool name="config_vibration_supports_multiple_intensities">true</bool> otherwise a slider. If '3', the settings app maps intensities directly to the levels
supported by the Vibrator HAL APIs. If '2', then the levels will be mapped to
VIBRATION_INTENSITY_LOW and VIBRATION_INTENSITY_HIGH, which gives the most range for
scaling vibrations. The medium intensity will be skipped.
The default intensity values are configured at
frameworks/base/core/res/res/values/config.xml's config_default[type]VibrationIntensity.
Make sure that each default intensity value is consistent with the supported levels set
here. If this settings supports only 2 levels, for example, then the default intensity
should be either LOW (1) or HIGH (3).
-->
<integer name="config_vibration_supported_intensity_levels">3</integer>
<!-- Smart Charging --> <!-- Smart Charging -->
<bool name="config_supportSmartCharging">true</bool> <bool name="config_supportSmartCharging">true</bool>