You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
/* Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __QG_PROFILE_LIB_H__
|
|
#define __QG_PROFILE_LIB_H__
|
|
|
|
struct profile_table_data {
|
|
char *name;
|
|
int rows;
|
|
int cols;
|
|
int *row_entries;
|
|
int *col_entries;
|
|
int **data;
|
|
};
|
|
|
|
int qg_linear_interpolate(int y0, int x0, int y1, int x1, int x);
|
|
int qg_interpolate_single_row_lut(struct profile_table_data *lut,
|
|
int x, int scale);
|
|
int qg_interpolate_soc(struct profile_table_data *lut,
|
|
int batt_temp, int ocv);
|
|
int qg_interpolate_var(struct profile_table_data *lut,
|
|
int batt_temp, int soc);
|
|
int qg_interpolate_slope(struct profile_table_data *lut,
|
|
int batt_temp, int soc);
|
|
|
|
#endif /*__QG_PROFILE_LIB_H__ */
|
|
|