#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(); } }