Other Parts Discussed in Thread: BQ3050, TCA9548A
Hello Team,
Does BQ3050 and its series IC`s have inbuilt charge algorithm ? When the Battery RSOC is around 5% , even we charging current of 800mA but Battery takes on around 400mA of charging current.
We did not find any such Algorithum on TRM of BQ3050.
Smart Battery is of : 14.8V / 6.9Ah
From Charger Side we are setting CC/current this way:
if((BQ2_RSOC <= 10) && (BQ2_RSOC >= 0))
Set_Chg2_VoltageCurrent(16800,800);
if((BQ2_RSOC <= 75) && (BQ2_RSOC > 10))
Set_Chg2_VoltageCurrent(16800,1600);
if((BQ2_RSOC <= 90) && (BQ2_RSOC > 75))
Set_Chg2_VoltageCurrent(16800,1400);
if((BQ2_RSOC < 99) && (BQ2_RSOC > 90))
Set_Chg2_VoltageCurrent(16800,800);
- Regards