|
@@ -42,6 +42,7 @@
|
|
#include "./Define/define.h"
|
|
#include "./Define/define.h"
|
|
#include "./SelectGun/SelectGun.h"
|
|
#include "./SelectGun/SelectGun.h"
|
|
#include "Config.h"
|
|
#include "Config.h"
|
|
|
|
+#include "./ModuleEvComm/Module_EvComm.h"
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
//------------------------------------------------------------------------------
|
|
#define CMD_KEY_WAIT (1)
|
|
#define CMD_KEY_WAIT (1)
|
|
@@ -705,6 +706,103 @@ static void setConfirmSelGun(uint8_t selGun)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+static float ReadAdcVolt(uint8_t AdcChannel)
|
|
|
|
+{
|
|
|
|
+ //AIN0=CCS GUN Temp 1
|
|
|
|
+ //AIN1=CCS GUN Temp 2
|
|
|
|
+ //AIN2=CCS_Proximity/2
|
|
|
|
+ //AIN3=pilot voltage
|
|
|
|
+ int fd = -1;
|
|
|
|
+ uint8_t str[64] = { 0 };
|
|
|
|
+ uint8_t AdcValue[8] = { '\0' };
|
|
|
|
+
|
|
|
|
+ if (AdcChannel > 7) {
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ sprintf((char*)str, "/sys/bus/iio/devices/iio\:device0/in_voltage%d_raw", AdcChannel);
|
|
|
|
+ fd = open((char*)str, O_RDONLY);
|
|
|
|
+ read(fd, AdcValue, 4);
|
|
|
|
+
|
|
|
|
+ close(fd);
|
|
|
|
+
|
|
|
|
+ return (1.8 * atoi((char*)&AdcValue[0])) / 4095;
|
|
|
|
+ //return (1.8 * atoi((char *)&AdcValue)) / 4095;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void getChillerTemperature(struct ChargingInfoData* chargingData)
|
|
|
|
+{
|
|
|
|
+ uint8_t i = 0;
|
|
|
|
+ float adcVoltage = 0.0;
|
|
|
|
+ ChillerTemp pChillerTemp;
|
|
|
|
+ uint8_t maxTemp;
|
|
|
|
+ for (i = 0; i < 4; i++) {
|
|
|
|
+ adcVoltage = 0.0;
|
|
|
|
+ adcVoltage = ReadAdcVolt(i);
|
|
|
|
+ ShmDcCommonData->TempVolt[i] = adcVoltage;
|
|
|
|
+ if ((adcVoltage <= 0.9) && (adcVoltage >= 0.8)) { //0 ~ -40
|
|
|
|
+ pChillerTemp.Temp[i] = ((adcVoltage - 0.908) * 500) + 60;
|
|
|
|
+ //log_info("1 adcVoltage = %f", (adcVoltage - 0.9) * 500);
|
|
|
|
+ } else if ((adcVoltage <= 1.07) && (adcVoltage > 0.9)) {
|
|
|
|
+ pChillerTemp.Temp[i] = ((adcVoltage - 0.91) * 705.88) + 60;
|
|
|
|
+ //log_info("2 adcVoltage = %f", (adcVoltage - 0.9) * 500);
|
|
|
|
+ } else {
|
|
|
|
+ pChillerTemp.Temp[i] = UNDEFINED_TEMP;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ maxTemp = pChillerTemp.Temp[0];
|
|
|
|
+ memcpy((char*)ShmDcCommonData->SystemTemp, (char*)pChillerTemp.Temp, sizeof(ChillerTemp));
|
|
|
|
+ for (i = 1; i < 4; i++) {
|
|
|
|
+ if (pChillerTemp.Temp[i] > pChillerTemp.Temp[i - 1] && pChillerTemp.Temp[i] != UNDEFINED_TEMP) {
|
|
|
|
+ maxTemp = pChillerTemp.Temp[i];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ chargingData->ChillerTemp = maxTemp;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void GetOtpPwrOrCurMethod(struct ChargingInfoData* chargingData, float* pow, float* cur)
|
|
|
|
+{
|
|
|
|
+ for(int i = 0 ; i < 4 ; i++) {
|
|
|
|
+ if (ShmDcCommonData->SystemTemp[i] >= STAGE1_GUN_DERATING_TEMP &&
|
|
|
|
+ ShmDcCommonData->SystemTemp[i] < STAGE2_GUN_DERATING_TEMP &&
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex < 1) {
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex = 1;
|
|
|
|
+ } else if (ShmDcCommonData->SystemTemp[i] >= STAGE2_GUN_DERATING_TEMP &&
|
|
|
|
+ ShmDcCommonData->SystemTemp[i] != UNDEFINED_TEMP &&
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex < 2) {
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex = 2;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ /*
|
|
|
|
+ if (((chargingData->ConnectorTemp >= STAGE1_GUN_DERATING_TEMP &&
|
|
|
|
+ chargingData->ConnectorTemp < STAGE2_GUN_DERATING_TEMP) ||
|
|
|
|
+ (chargingData->ChillerTemp >= STAGE1_GUN_DERATING_TEMP &&
|
|
|
|
+ chargingData->ChillerTemp < STAGE2_GUN_DERATING_TEMP)) &&
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex < 1)
|
|
|
|
+ {
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex = 1;
|
|
|
|
+ } else if ((chargingData->ConnectorTemp >= STAGE2_GUN_DERATING_TEMP ||
|
|
|
|
+ chargingData->ChillerTemp >= STAGE2_GUN_DERATING_TEMP) &&
|
|
|
|
+ chargingData->ConnectorTemp != UNDEFINED_TEMP &&
|
|
|
|
+ chargingData->ChillerTemp != UNDEFINED_TEMP &&
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex < 2)
|
|
|
|
+ {
|
|
|
|
+ chargingData->deratingByConnOtp.deratingIndex = 2;
|
|
|
|
+ }
|
|
|
|
+ */
|
|
|
|
+ if (chargingData->deratingByConnOtp.deratingTargetRate[chargingData->deratingByConnOtp.deratingIndex] != 0)
|
|
|
|
+ {
|
|
|
|
+ *pow *= chargingData->deratingByConnOtp.deratingTargetRate[chargingData->deratingByConnOtp.deratingIndex];
|
|
|
|
+ } else if (chargingData->deratingByConnOtp.deratingTargetCurrent[chargingData->deratingByConnOtp.deratingIndex] != 0)
|
|
|
|
+ {
|
|
|
|
+ if (*cur > (chargingData->deratingByConnOtp.deratingTargetCurrent[chargingData->deratingByConnOtp.deratingIndex]/10)) {
|
|
|
|
+ *cur = chargingData->deratingByConnOtp.deratingTargetCurrent[chargingData->deratingByConnOtp.deratingIndex]/10;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
{
|
|
{
|
|
int _GunIndex;
|
|
int _GunIndex;
|
|
@@ -714,7 +812,11 @@ void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
int isContinue = 1;
|
|
int isContinue = 1;
|
|
float _Voltage;
|
|
float _Voltage;
|
|
float _Current;
|
|
float _Current;
|
|
|
|
+ float deratingPower;
|
|
|
|
+ float deratingCurrent;
|
|
|
|
+ int derating_index = 0;
|
|
uint8_t PreviousSystemStatus[2] = {0xff};
|
|
uint8_t PreviousSystemStatus[2] = {0xff};
|
|
|
|
+ int idx;
|
|
char *usageMsg = "Usage:\n"
|
|
char *usageMsg = "Usage:\n"
|
|
" strchg <index> <voltage> <current> ex: strchg 0 150 2\n"
|
|
" strchg <index> <voltage> <current> ex: strchg 0 150 2\n"
|
|
" chg <voltage> <current> ex: chg 500 100\n"
|
|
" chg <voltage> <current> ex: chg 500 100\n"
|
|
@@ -769,6 +871,7 @@ void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
pDcChargingInfo->ConnectorPlugIn = 1;
|
|
pDcChargingInfo->ConnectorPlugIn = 1;
|
|
printf ("[UnconditionalCharge - S_IDLE]\n");
|
|
printf ("[UnconditionalCharge - S_IDLE]\n");
|
|
pDcChargingInfo->Type = 9;
|
|
pDcChargingInfo->Type = 9;
|
|
|
|
+ sleep(1);
|
|
|
|
|
|
}
|
|
}
|
|
if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf == 1) {
|
|
if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf == 1) {
|
|
@@ -921,6 +1024,27 @@ void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
// pDcChargingInfo->EvBatterytargetVoltage,
|
|
// pDcChargingInfo->EvBatterytargetVoltage,
|
|
// pDcChargingInfo->EvBatterytargetCurrent);
|
|
// pDcChargingInfo->EvBatterytargetCurrent);
|
|
//ev task do this
|
|
//ev task do this
|
|
|
|
+ for (idx = 0; idx < pSysConfig->TotalConnectorCount; idx++) {
|
|
|
|
+ struct ChargingInfoData* pInfo = (struct ChargingInfoData*)GetDcChargingInfoData(idx);
|
|
|
|
+ if (pInfo->deratingByConnOtp.isNeedDerating) {
|
|
|
|
+ deratingCurrent = pInfo->EvBatterytargetCurrent;
|
|
|
|
+ deratingPower = pInfo->AvailableChargingPower;
|
|
|
|
+
|
|
|
|
+ getChillerTemperature(pInfo);
|
|
|
|
+ GetOtpPwrOrCurMethod(pInfo, &deratingPower, &deratingCurrent);
|
|
|
|
+ if (derating_index != pDcChargingInfo->deratingByConnOtp.deratingIndex) {
|
|
|
|
+ printf("Change Derating Index:%d\n", pInfo->deratingByConnOtp.deratingIndex);
|
|
|
|
+ derating_index = pInfo->deratingByConnOtp.deratingIndex;
|
|
|
|
+ }
|
|
|
|
+ if (pInfo->EvBatterytargetCurrent != deratingCurrent ||
|
|
|
|
+ pInfo->AvailableChargingPower != deratingPower) {
|
|
|
|
+ pInfo->EvBatterytargetCurrent = deratingCurrent;
|
|
|
|
+ pInfo->AvailableChargingPower = deratingPower;
|
|
|
|
+ printf("Derating Current:%.3f Power:%.3f\n", pInfo->EvBatterytargetCurrent, pInfo->AvailableChargingPower);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } // for
|
|
|
|
+
|
|
pDcChargingInfo->PresentChargingPower =
|
|
pDcChargingInfo->PresentChargingPower =
|
|
((float)((pDcChargingInfo->PresentChargingVoltage) *
|
|
((float)((pDcChargingInfo->PresentChargingVoltage) *
|
|
(pDcChargingInfo->PresentChargingCurrent)) / 1000);
|
|
(pDcChargingInfo->PresentChargingCurrent)) / 1000);
|
|
@@ -971,9 +1095,9 @@ void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
|
|
pDcChargingInfo->PresentChargingPower = 0;
|
|
pDcChargingInfo->PresentChargingPower = 0;
|
|
|
|
|
|
if (stopChg == pSysConfig->TotalConnectorCount) {
|
|
if (stopChg == pSysConfig->TotalConnectorCount) {
|
|
- ShmDcCommonData->debugflag = NO;
|
|
|
|
- ShmFanModuleData->TestFanSpeed = 0;
|
|
|
|
system("/root/Module_EvComm &");
|
|
system("/root/Module_EvComm &");
|
|
|
|
+ ShmFanModuleData->TestFanSpeed = 0;
|
|
|
|
+ ShmDcCommonData->debugflag = NO;
|
|
sleep(3);
|
|
sleep(3);
|
|
|
|
|
|
for (_GunIndex = 0; _GunIndex < pSysConfig->TotalConnectorCount; _GunIndex++) {
|
|
for (_GunIndex = 0; _GunIndex < pSysConfig->TotalConnectorCount; _GunIndex++) {
|
|
@@ -1318,15 +1442,17 @@ static void writeGunAndChillerTemp(void)
|
|
}
|
|
}
|
|
|
|
|
|
if (strcmp(newString[0], "chiller") == 0) {//修改水冷機溫度值
|
|
if (strcmp(newString[0], "chiller") == 0) {//修改水冷機溫度值
|
|
- if (_GunIndex >= 1) {
|
|
|
|
- _GunIndex = 0; //只會有一個水冷機
|
|
|
|
|
|
+ if (ShmDcCommonData->pGunInfo[_GunIndex].withChiller) {
|
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(_GunIndex);
|
|
|
|
+ memset((char*)ShmDcCommonData->SystemTemp, atoi(newString[2]), sizeof(ShmDcCommonData->SystemTemp));
|
|
|
|
+ pDcChargingInfo->ChillerTemp = atoi(newString[2]);
|
|
|
|
+ printf("set %d chiller temperature = %d\r\n",
|
|
|
|
+ _GunIndex,
|
|
|
|
+ pDcChargingInfo->ChillerTemp);
|
|
|
|
+ } else {
|
|
|
|
+ printf("This Gun without Chiller");
|
|
}
|
|
}
|
|
|
|
|
|
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_GunIndex);
|
|
|
|
- pDcChargingInfo->ChillerTemp = atoi(newString[2]);
|
|
|
|
- printf("set %d chiller temperature = %d\r\n",
|
|
|
|
- _GunIndex,
|
|
|
|
- pDcChargingInfo->ChillerTemp);
|
|
|
|
} else if (strcmp(newString[0], "conn") == 0) {//修改槍頭溫度值
|
|
} else if (strcmp(newString[0], "conn") == 0) {//修改槍頭溫度值
|
|
pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_GunIndex);
|
|
pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_GunIndex);
|
|
|
|
|
|
@@ -1339,6 +1465,7 @@ static void writeGunAndChillerTemp(void)
|
|
usleep(sleepTime);
|
|
usleep(sleepTime);
|
|
}//while
|
|
}//while
|
|
}
|
|
}
|
|
|
|
+
|
|
void ShowPowerConsumption(char* v1)
|
|
void ShowPowerConsumption(char* v1)
|
|
{
|
|
{
|
|
printf("Dispenser Gun0 PowerConsumption:%.4f\n", ShmDcCommonData->pGunInfo[0].PowerConsumption);
|
|
printf("Dispenser Gun0 PowerConsumption:%.4f\n", ShmDcCommonData->pGunInfo[0].PowerConsumption);
|
|
@@ -1360,7 +1487,7 @@ int main(void)
|
|
" lock <index> : get gun locked state\n"
|
|
" lock <index> : get gun locked state\n"
|
|
" sysid : test system ID\n"
|
|
" sysid : test system ID\n"
|
|
" self : self test state (x)\n"
|
|
" self : self test state (x)\n"
|
|
- " version | v | -v : version of board (407 or relay or other)\n"
|
|
|
|
|
|
+ " ver| v | -v : version of board (407 or relay or other)\n"
|
|
" update : update firmware\n"
|
|
" update : update firmware\n"
|
|
" ac : get ac relay state (x) \n"
|
|
" ac : get ac relay state (x) \n"
|
|
" cable <index> <state> : set ground fault state\n"
|
|
" cable <index> <state> : set ground fault state\n"
|
|
@@ -1448,7 +1575,7 @@ int main(void)
|
|
} else if (strcmp(newString[0], "self") == 0) {
|
|
} else if (strcmp(newString[0], "self") == 0) {
|
|
// CSU 自我檢測狀態
|
|
// CSU 自我檢測狀態
|
|
RunSelfProc(newString[1]);
|
|
RunSelfProc(newString[1]);
|
|
- } else if (strcmp(newString[0], "version") == 0 ||
|
|
|
|
|
|
+ } else if (strcmp(newString[0], "ver") == 0 ||
|
|
strcmp(newString[0], "v") == 0 ||
|
|
strcmp(newString[0], "v") == 0 ||
|
|
strcmp(newString[0], "-v") == 0) {
|
|
strcmp(newString[0], "-v") == 0) {
|
|
//if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0) {
|
|
//if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0) {
|