chargeController/APP/application/Src/chargControl.c

29 lines
414 B
C

#include "chargControl.h"
#include "parameter.h"
#include "comm_types.h"
/**
* @brief 完成充电控制
* @param
* @retval
*
*/
void chargControl(void)
{
// getCVData();
judgeYNBattery();
chargControlMode();
if (getMPPT_Mode() == noWork) {
return;
}
if (getBatteryState()) {
BatteryChargControl();
} else {
noBatteryChargControl();
}
}