mtk battery_table

Posted chjgongzuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mtk battery_table相关的知识,希望对你有一定的参考价值。

mtk电池曲线是按照mah,voltage,resistance,percentage来读取的

而在fg_custom_parse_table中实际用到的只有mah,voltage,resistance;

static void fg_custom_parse_table(const struct device_node *np,
    const char *node_srting, struct FUELGAUGE_PROFILE_STRUCT *profile_struct)
{
 int mah, voltage, resistance, idx, saddles;
 struct FUELGAUGE_PROFILE_STRUCT *profile_p;
 profile_p = profile_struct;
 saddles = fg_table_cust_data.fg_profile_t0_size;
 idx = 0;
 bm_debug("fg_custom_parse_table: %s, %d ", node_srting, saddles);
 while (!of_property_read_u32_index(np, node_srting, idx, &mah)) {
  idx++;
  if (!of_property_read_u32_index(np, node_srting, idx, &voltage)) {
   /*bm_err("fg_custom_parse_table: mah: %d, voltage: %d ", mah, voltage);*/
   /*bm_err("fg_custom_parse_table: mah: %d, voltage: %d ", mah, voltage);*/
  }
  idx++;
  if (!of_property_read_u32_index(np, node_srting, idx, &resistance)) {
   bm_debug("fg_custom_parse_table: mah: %d, voltage: %d, resistance: %d ",
        mah, voltage, resistance);
  }
  profile_p->mah = mah;
  profile_p->voltage = voltage;
  profile_p->resistance = resistance;
  /* dump parsing data */
  #if 0
  msleep(20);
  bm_print(BM_LOG_CRTI, "__batt_meter_parse_table>> %s[%d]: <%d, %d> ",
    node_srting, (idx/2), profile_p->percentage, profile_p->voltage);
  #endif
  profile_p++;
  if ((idx++) >= (saddles * 3))
   break;
 }

以上是关于mtk battery_table的主要内容,如果未能解决你的问题,请参考以下文章

mtk怎么安装刷机驱动

mtk平台手机都有啥快捷指令

MTK是啥,有操作系统。有MTK的智能手机吗

mtk方案的安卓系统怎么刷机,目前主流的刷机软件都不支持?!

MTK是啥系统?

MTK开发基础入门教程