6db4831e98
Android 14
21 lines
302 B
C
21 lines
302 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#include "tpd.h"
|
|
|
|
/* #ifndef TPD_CUSTOM_TREMBLE_TOLERANCE */
|
|
int tpd_trembling_tolerance(int t, int p)
|
|
{
|
|
if (t > 5 || p > 120)
|
|
return 200;
|
|
if (p > 90)
|
|
return 64;
|
|
if (p > 80)
|
|
return 36;
|
|
return 26;
|
|
}
|
|
|
|
/* #endif */
|