vibrator: Add a threshold to filter out some short vibration cases am: 214cb227e2

Original change: https://googleplex-android-review.googlesource.com/c/device/google/redfin/+/12308086

Change-Id: I49204d3b883ba93d3681b3494a98cc8d75b2fc2e
This commit is contained in:
chasewu 2020-08-07 12:23:46 +00:00 committed by Automerger Merge Worker
commit 84312007e5
1 changed files with 4 additions and 1 deletions

View File

@ -75,6 +75,7 @@ static struct timespec sGetTime;
#define SENSOR_DATA_NUM 20
// Set sensing period to 2s
#define SENSING_PERIOD 2000000000
#define VIBRATION_MOTION_TIME_THRESHOLD 100
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
int GSensorCallback(__attribute__((unused)) int fd, __attribute__((unused)) int events,
@ -500,7 +501,9 @@ ndk::ScopedAStatus Vibrator::on(int32_t timeoutMs,
if (temperature > TEMP_UPPER_BOUND) {
mSteadyConfig->odClamp = &mSteadyTargetOdClamp[0];
mSteadyConfig->olLraPeriod = mSteadyOlLraPeriod;
if (!motionAwareness()) {
// TODO: b/162346934 This a compromise way to bypass the motion
// awareness delay
if ((timeoutMs > VIBRATION_MOTION_TIME_THRESHOLD) && (!motionAwareness())) {
return on(timeoutMs, RTP_MODE, mSteadyConfig, 2);
}
} else if (temperature < TEMP_LOWER_BOUND) {