We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36eac3 commit aba2649Copy full SHA for aba2649
‎LCM/Code/App/task.c
@@ -1232,9 +1232,12 @@ void Charge_Detect_Task(void)
1232
{
1233
Charge_Flag = 0;
1234
}
1235
- else if(data.inpVoltage >= FULL_VOLTAGE && Charge_Time > 2000)
+ else if(data.inpVoltage >= FULL_VOLTAGE)
1236
1237
- Charge_Flag = 3;
+ if(Charge_Time > 2000)
1238
+ {
1239
+ Charge_Flag = 3;
1240
+ }
1241
1242
else
1243
0 commit comments