Module_PsuComm.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880
  1. #include "Module_PsuComm.h"
  2. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  3. #define PASS 1
  4. #define FAIL -1
  5. #define YES 1
  6. #define NO 0
  7. #define DERATING 30
  8. #define ELEMENT_NOT_FIND 255
  9. #define CHK_VOL_RANGE 20
  10. #define CHK_CUR_RANGE 10
  11. #define DERATING_RANGE 100
  12. #define ZERO_CURRENT 0
  13. #define ZERO_VOLTAGE 10
  14. #define STOP_CURRENT 30
  15. #define PSU_MIN_CUR 100
  16. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  17. struct StatusCodeData *ShmStatusCodeData;
  18. struct PsuData *ShmPsuData;
  19. bool libInitialize = false;
  20. byte getAvailableCapOffset = 5;
  21. byte deratingKeepCount = 0;
  22. float carReqVol = 0;
  23. float carReqCur = 0;
  24. float evseOutVol = 0;
  25. float evseOutCur = 0;
  26. void PRINTF_FUNC(char *string, ...);
  27. int StoreLogMsg(const char *fmt, ...);
  28. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  29. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  30. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  31. unsigned long GetTimeoutValue(struct timeval _sour_time);
  32. unsigned long GetTimeoutValue(struct timeval _sour_time)
  33. {
  34. struct timeval _end_time;
  35. gettimeofday(&_end_time, NULL);
  36. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  37. }
  38. int StoreLogMsg(const char *fmt, ...)
  39. {
  40. char Buf[4096+256];
  41. char buffer[4096];
  42. time_t CurrentTime;
  43. struct tm *tm;
  44. va_list args;
  45. va_start(args, fmt);
  46. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  47. va_end(args);
  48. memset(Buf,0,sizeof(Buf));
  49. CurrentTime = time(NULL);
  50. tm=localtime(&CurrentTime);
  51. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  52. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  53. buffer,
  54. tm->tm_year+1900,tm->tm_mon+1);
  55. system(Buf);
  56. return rc;
  57. }
  58. void PRINTF_FUNC(char *string, ...)
  59. {
  60. va_list args;
  61. char buffer[4096];
  62. va_start(args, string);
  63. vsnprintf(buffer, sizeof(buffer), string, args);
  64. va_end(args);
  65. if (DEBUG)
  66. printf("%s \n", buffer);
  67. else
  68. DEBUG_INFO("%s \n", buffer);
  69. }
  70. //=================================
  71. // Common routine
  72. //=================================
  73. size_t FindIndex(const int a[], size_t size, int value, byte group)
  74. {
  75. size_t index = 0;
  76. while ( index < size && a[index] != value ) ++index;
  77. return (index == size ? ELEMENT_NOT_FIND : group);
  78. }
  79. byte FindTargetGroup(byte address)
  80. {
  81. byte _group = ELEMENT_NOT_FIND;
  82. if (ShmPsuData->GroupCount == 1)
  83. _group = 0;
  84. else
  85. {
  86. _group = FindIndex(connector_1, ShmPsuData->PsuGroup[0].GroupPresentPsuQuantity, address, 0);
  87. if (_group == ELEMENT_NOT_FIND)
  88. _group = FindIndex(connector_2, ShmPsuData->PsuGroup[1].GroupPresentPsuQuantity, address, 1);
  89. }
  90. return _group;
  91. }
  92. bool IsOverModuleCount(byte count)
  93. {
  94. bool result = false;
  95. if (count >= ShmPsuData->SystemPresentPsuQuantity)
  96. result = true;
  97. return result;
  98. }
  99. //=================================
  100. // Save data to share memory Function
  101. //=================================
  102. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  103. {
  104. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  105. {
  106. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  107. {
  108. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  109. return true;
  110. }
  111. }
  112. for (byte index = 0; index < CCS_QUANTITY; index++)
  113. {
  114. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  115. {
  116. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  117. return true;
  118. }
  119. }
  120. for (byte index = 0; index < GB_QUANTITY; index++)
  121. {
  122. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  123. {
  124. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  125. return true;
  126. }
  127. }
  128. return false;
  129. }
  130. //=================================
  131. // Alarm code mapping to share memory Function
  132. //=================================
  133. // 檢查 Byte 中某個 Bit 的值
  134. // _byte : 欲改變的 byte
  135. // _bit : 該 byte 的第幾個 bit
  136. unsigned char mask_table[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
  137. unsigned char DetectBitValue(unsigned char _byte, unsigned char _bit)
  138. {
  139. return ( _byte & mask_table[_bit] ) != 0x00;
  140. }
  141. void AbnormalStopAnalysis(byte gun_index, int errCode)
  142. {
  143. for (char i = 0; i < 3; i++)
  144. {
  145. unsigned char byteIndex = (errCode >> (8 * i)) & 0xff;
  146. for (char bitIndex = 0; bitIndex < 8; bitIndex++)
  147. {
  148. if(DetectBitValue(byteIndex , bitIndex) == 1)
  149. {
  150. switch(byteIndex)
  151. {
  152. case 0:
  153. {
  154. if (bitIndex == 0)
  155. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = YES;
  156. else if (bitIndex == 5)
  157. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = YES;
  158. }
  159. break;
  160. case 1:
  161. {
  162. if (bitIndex == 1)
  163. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = YES;
  164. else if (bitIndex == 2)
  165. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuProtectionAlarm = YES;
  166. else if (bitIndex == 3)
  167. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = YES;
  168. else if (bitIndex == 4)
  169. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = YES;
  170. else if (bitIndex == 5)
  171. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = YES;
  172. }
  173. break;
  174. case 2:
  175. {
  176. if (bitIndex == 0)
  177. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPowerLimitedState = YES;
  178. else if (bitIndex == 1)
  179. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = YES;
  180. else if (bitIndex == 2)
  181. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseOnputImbalance = YES;
  182. else if (bitIndex == 3)
  183. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = YES;
  184. else if (bitIndex == 4)
  185. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = YES;
  186. else if (bitIndex == 5)
  187. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = YES;
  188. else if (bitIndex == 6)
  189. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = YES;
  190. }
  191. break;
  192. }
  193. }
  194. // else
  195. // {
  196. // switch (byteIndex) {
  197. // case 0: {
  198. // if (bitIndex == 0)
  199. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = NO;
  200. // else if (bitIndex == 5)
  201. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  202. // }
  203. // break;
  204. // case 1: {
  205. // if (bitIndex == 1)
  206. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = NO;
  207. // else if (bitIndex == 2)
  208. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuProtectionAlarm = NO;
  209. // else if (bitIndex == 3)
  210. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = NO;
  211. // else if (bitIndex == 4)
  212. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = NO;
  213. // else if (bitIndex == 5)
  214. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  215. // }
  216. // break;
  217. // case 2: {
  218. // if (bitIndex == 1)
  219. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = NO;
  220. // if (bitIndex == 2)
  221. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseOnputImbalance = NO;
  222. // else if (bitIndex == 3)
  223. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  224. // else if (bitIndex == 4)
  225. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  226. // else if (bitIndex == 5)
  227. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = NO;
  228. // else if (bitIndex == 6)
  229. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = NO;
  230. // }
  231. // break;
  232. // }
  233. // }
  234. }
  235. }
  236. }
  237. //=================================
  238. // Callback Function
  239. //=================================
  240. void GetStatusCallback(byte group, byte address, byte temp, int alarm)
  241. {
  242. if (IsOverModuleCount(address))
  243. return;
  244. byte group1 = FindTargetGroup(address);
  245. if (group1 == 1)
  246. address -= ShmPsuData->PsuGroup[group1 - 1].GroupPresentPsuQuantity;
  247. ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp1 = temp;
  248. ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp2 = temp;
  249. ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp3 = temp;
  250. ShmPsuData->PsuGroup[group1].PsuModule[address].ExletTemp = temp;
  251. ShmPsuData->PsuGroup[group1].PsuModule[address].AlarmCode = alarm;
  252. AbnormalStopAnalysis(group1, alarm);
  253. //printf("alarm = %d \n", alarm);
  254. }
  255. void GetModuleCountCallback(byte group, byte count)
  256. {
  257. if (group == SYSTEM_CMD)
  258. ShmPsuData->SystemPresentPsuQuantity = count;
  259. else
  260. {
  261. ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity = count;
  262. }
  263. }
  264. void GetMaxPowerAndCur(unsigned char mode, int ratingCur, int *pow, int *cur)
  265. {
  266. unsigned short maxCurrent = ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent * 10;
  267. unsigned short maxPower = ShmSysConfigAndInfo->SysConfig.MaxChargingPower * 10;
  268. if (mode == _MAIN_CHARGING_MODE_AVER)
  269. {
  270. maxCurrent /= 2;
  271. maxPower /= 2;
  272. }
  273. if (maxPower != 0 && maxPower <= *pow)
  274. *pow = maxPower;
  275. if (maxCurrent != 0 && maxCurrent <= *cur)
  276. *cur = maxCurrent;
  277. if (ratingCur != 0 && ratingCur <= *cur)
  278. *cur = ratingCur;
  279. }
  280. void GetAvailableCapCallback(byte address, short maxVol, short minVol, short maxCur, short totalPow)
  281. {
  282. int _groupPower = 0, _groupCurrent = 0;
  283. byte group = FindTargetGroup(address);
  284. if (group == 1)
  285. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  286. if (chargingInfo[group]->DeratingChargingCurrent == 0)
  287. ShmPsuData->PsuGroup[group].PsuModule[address].AvailableCurrent = PSU_MIN_CUR;
  288. else
  289. ShmPsuData->PsuGroup[group].PsuModule[address].AvailableCurrent = maxCur;
  290. ShmPsuData->PsuGroup[group].PsuModule[address].AvailablePower = totalPow;
  291. for (byte index = 0; index < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; index++)
  292. {
  293. _groupCurrent += ShmPsuData->PsuGroup[group].PsuModule[index].AvailableCurrent;
  294. _groupPower += ShmPsuData->PsuGroup[group].PsuModule[index].AvailablePower;
  295. }
  296. // 各群得到最大輸出能力 (電流、Power)
  297. ShmPsuData->PsuGroup[group].GroupAvailableCurrent = _groupCurrent;
  298. ShmPsuData->PsuGroup[group].GroupAvailablePower = _groupPower;
  299. chargingInfo[group]->MaximumChargingVoltage = maxVol;
  300. int _power = 0, _current = 0, _ratingcurrent = 0;
  301. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  302. {
  303. _power += ShmPsuData->PsuGroup[index].GroupAvailablePower;
  304. _current += ShmPsuData->PsuGroup[index].GroupAvailableCurrent;
  305. _ratingcurrent += chargingInfo[address]->DeratingChargingCurrent;
  306. }
  307. ShmPsuData->SystemAvailableCurrent = _current;
  308. ShmPsuData->SystemAvailablePower = _power;
  309. GetMaxPowerAndCur(_MAIN_CHARGING_MODE_MAX, _ratingcurrent, &_power, &_current);
  310. // 雙槍單模時,同步雙槍資訊
  311. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  312. {
  313. byte _count = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  314. for (byte count = 0; count < _count; count++)
  315. {
  316. chargingInfo[count]->MaximumChargingVoltage = maxVol;
  317. chargingInfo[count]->AvailableChargingCurrent = _current;
  318. chargingInfo[count]->AvailableChargingPower = _power;
  319. }
  320. }
  321. else
  322. {
  323. chargingInfo[group]->AvailableChargingCurrent = _current;
  324. chargingInfo[group]->AvailableChargingPower = _power;
  325. }
  326. }
  327. void GetFwCallback(byte address, short dcSwVer, short pfcSwVer, short hwVer)
  328. {
  329. if (IsOverModuleCount(address))
  330. return;
  331. byte group = FindTargetGroup(address);
  332. if (group == 1)
  333. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  334. sprintf((char *)ShmPsuData->PsuGroup[group].PsuModule[address].FwVersion, "DC %d.%02d", (dcSwVer & 0xFF00) >> 8, dcSwVer & 0xFF);
  335. //DEBUG_INFO("fw Ver. = %s \n", ShmPsuData->PsuGroup[group].PsuModule[address].FwVersion);
  336. }
  337. void GetInputVoltageCallback(byte address, unsigned short vol1, unsigned short vol2, unsigned short vol3)
  338. {
  339. if (IsOverModuleCount(address))
  340. return;
  341. byte group = FindTargetGroup(address);
  342. if (group == 1)
  343. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  344. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL1 = vol1;
  345. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL2 = vol2;
  346. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL3 = vol3;
  347. }
  348. void GetPresentOutputCallback(byte group, unsigned short outVol, unsigned short outCur)
  349. {
  350. unsigned short outputVol = outVol;
  351. unsigned short outputCur = outCur;
  352. // PSU Group - 電壓
  353. ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage = outputVol;
  354. // PSU Group - 電流
  355. ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent = outputCur;
  356. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  357. {
  358. outputVol = 0;
  359. outputCur = 0;
  360. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  361. {
  362. if (ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage > outputVol)
  363. outputVol = ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage;
  364. outputCur += ShmPsuData->PsuGroup[index].GroupPresentOutputCurrent;
  365. }
  366. // 黑白機
  367. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  368. {
  369. byte _count = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  370. for (byte count = 0; count < _count; count++)
  371. {
  372. // EVSE - 電壓
  373. chargingInfo[count]->PresentChargingVoltage = outputVol;
  374. // EVSE - 電流
  375. chargingInfo[count]->PresentChargingCurrent = outputCur;
  376. }
  377. }
  378. if ((chargingInfo[group]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[group]->SystemStatus <= S_CHARGING) ||
  379. (chargingInfo[group]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[group]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  380. {
  381. // EVSE - 電壓
  382. chargingInfo[group]->PresentChargingVoltage = outputVol;
  383. // EVSE - 電流
  384. chargingInfo[group]->PresentChargingCurrent = outputCur;
  385. }
  386. }
  387. else
  388. {
  389. // EVSE - 電壓
  390. chargingInfo[group]->PresentChargingVoltage = ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage;
  391. // EVSE - 電流
  392. chargingInfo[group]->PresentChargingCurrent = ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent;
  393. }
  394. // PRINTF_FUNC("Gun_%d, PresentChargingCurrent = %f \n", group,
  395. // chargingInfo[group]->PresentChargingCurrent);
  396. }
  397. void GetFanSpeedCallback(byte address, unsigned int fanSpeed)
  398. {
  399. if (IsOverModuleCount(address))
  400. return;
  401. byte group = FindTargetGroup(address);
  402. if (group == 1)
  403. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  404. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_1 = fanSpeed;
  405. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_2 = fanSpeed;
  406. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_3 = fanSpeed;
  407. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_4 = fanSpeed;
  408. }
  409. void GetIavailableCallback(byte address, unsigned short Iavail, unsigned short Vext)
  410. {
  411. //PRINTF_FUNC("GetIavailableCallback address_%d, Vext = %d, Iavail = %d \n", address, Vext, Iavail);
  412. bool isPass = true;
  413. if (Iavail == 0)
  414. {
  415. for (byte count = 0; count < 2; count++)
  416. {
  417. chargingInfo[address]->SampleChargingCur[count] = Iavail;
  418. }
  419. }
  420. else
  421. {
  422. for (byte count = 0; count < 2; count++)
  423. {
  424. if (chargingInfo[address]->SampleChargingCur[count] == 0)
  425. {
  426. chargingInfo[address]->SampleChargingCur[count] = Iavail;
  427. return;
  428. }
  429. else
  430. {
  431. if (chargingInfo[address]->SampleChargingCur[count] != Iavail)
  432. {
  433. chargingInfo[address]->SampleChargingCur[count] = Iavail;
  434. isPass = false;
  435. continue;
  436. }
  437. }
  438. }
  439. }
  440. if (isPass)
  441. {
  442. chargingInfo[address]->DeratingChargingCurrent = Iavail;
  443. }
  444. }
  445. //==========================================
  446. // Init all share memory
  447. //==========================================
  448. int InitShareMemory()
  449. {
  450. int result = PASS;
  451. int MeterSMId;
  452. //creat ShmSysConfigAndInfo
  453. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  454. {
  455. #ifdef SystemLogMessage
  456. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG %d \n");
  457. #endif
  458. result = FAIL;
  459. }
  460. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  461. {
  462. #ifdef SystemLogMessage
  463. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG \n");
  464. #endif
  465. result = FAIL;
  466. }
  467. else
  468. {}
  469. //creat ShmStatusCodeData
  470. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  471. {
  472. #ifdef SystemLogMessage
  473. DEBUG_ERROR("shmget ShmStatusCodeData NG \n");
  474. #endif
  475. result = FAIL;
  476. }
  477. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  478. {
  479. #ifdef SystemLogMessage
  480. DEBUG_ERROR("shmat ShmStatusCodeData NG \n");
  481. #endif
  482. result = FAIL;
  483. }
  484. else
  485. {}
  486. //creat ShmPsuData
  487. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  488. {
  489. #ifdef SystemLogMessage
  490. DEBUG_ERROR("shmget ShmPsuData NG \n");
  491. #endif
  492. result = FAIL;
  493. }
  494. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  495. {
  496. #ifdef SystemLogMessage
  497. DEBUG_ERROR("shmat ShmPsuData NG \n");
  498. #endif
  499. result = FAIL;
  500. }
  501. memset(ShmPsuData,0,sizeof(struct PsuData));
  502. return result;
  503. }
  504. //================================================
  505. // Main process
  506. //================================================
  507. void InitialPsuData()
  508. {
  509. ShmPsuData->SystemPresentPsuQuantity = 0;
  510. for (byte _groupCount = 0; _groupCount < ARRAY_SIZE(ShmPsuData->PsuGroup); _groupCount++)
  511. {
  512. ShmPsuData->PsuGroup[_groupCount].GroupPresentPsuQuantity = 0;
  513. ShmPsuData->PsuGroup[_groupCount].GroupAvailablePower = 0;
  514. ShmPsuData->PsuGroup[_groupCount].GroupAvailableCurrent = 0;
  515. }
  516. ShmPsuData->Work_Step = _INIT_PSU_STATUS;
  517. }
  518. void Initialization()
  519. {
  520. bool isPass = false;
  521. while(!isPass)
  522. {
  523. isPass = true;
  524. for (byte _index = 0; _index < _gunCount; _index++)
  525. {
  526. if (!FindChargingInfoData(_index, &chargingInfo[0]))
  527. {
  528. DEBUG_ERROR("EvComm (main) : FindChargingInfoData false \n");
  529. isPass = false;
  530. break;
  531. }
  532. }
  533. }
  534. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  535. ShmPsuData->GroupCount = 1;
  536. else
  537. ShmPsuData->GroupCount = _gunCount;
  538. }
  539. int main(void)
  540. {
  541. PRINTF_FUNC("Psu Task boot .... \n");
  542. if(InitShareMemory() == FAIL)
  543. {
  544. #ifdef SystemLogMessage
  545. DEBUG_ERROR("InitShareMemory NG\n");
  546. #endif
  547. if(ShmStatusCodeData != NULL)
  548. {
  549. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  550. }
  551. sleep(5);
  552. return 0;
  553. }
  554. PRINTF_FUNC("InitShareMemory OK\n");
  555. // register callback function
  556. RefreshStatus(&GetStatusCallback);
  557. RefreshModuleCount(&GetModuleCountCallback);
  558. RefreshAvailableCap(&GetAvailableCapCallback);
  559. RefreshFwVersion(&GetFwCallback);
  560. RefreshInputVol(&GetInputVoltageCallback);
  561. RefreshGetOutput(&GetPresentOutputCallback);
  562. RefreshFanInfo(&GetFanSpeedCallback);
  563. RefreshIavailable(&GetIavailableCallback);
  564. _gunCount = GUN_COUNT;
  565. // initial object
  566. InitialPsuData();
  567. Initialization();
  568. libInitialize = InitialCommunication();
  569. byte isInitialComp = NO;
  570. PRINTF_FUNC("ALTERNATIVE_CONG = %d \n", ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf);
  571. //main loop
  572. while (libInitialize)
  573. {
  574. // 斷電狀態
  575. if (ShmSysConfigAndInfo->SysInfo.AcContactorStatus == NO)
  576. {
  577. //一但 AC Off PSU 斷電全部的 PSU Group ID 會全部清 0
  578. if (!isInitialComp)
  579. {
  580. InitialPsuData();
  581. ShmPsuData->Work_Step = INITIAL_START;
  582. isInitialComp = YES;
  583. }
  584. sleep(1);
  585. continue;
  586. }
  587. else
  588. isInitialComp = NO;
  589. // 自檢失敗
  590. if (ShmPsuData->Work_Step == _NO_WORKING)
  591. {
  592. PRINTF_FUNC("== PSU == self test fail. \n");
  593. sleep(5);
  594. }
  595. switch(ShmPsuData->Work_Step)
  596. {
  597. case INITIAL_START:
  598. {
  599. PRINTF_FUNC("== PSU == INITIAL_START \n");
  600. gettimeofday(&_cmdSubPriority_time, NULL);
  601. sleep(5);
  602. ShmPsuData->Work_Step = GET_PSU_COUNT;
  603. }
  604. break;
  605. case GET_PSU_COUNT:
  606. {
  607. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  608. byte moduleCount = 0;
  609. if (time > 2000)
  610. {
  611. PRINTF_FUNC("== PSU == GET_PSU_COUNT = %d \n", ShmPsuData->GroupCount);
  612. if (ShmPsuData->GroupCount == 0)
  613. ShmPsuData->GroupCount = 1;
  614. // 分別取各群模組數量
  615. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  616. {
  617. // 總和各群模組數量
  618. moduleCount += ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity;
  619. // 取各群模組數量
  620. GetModuleCount(index);
  621. // 取版號
  622. GetModuleVer(index);
  623. }
  624. // 發送取得目前全部模組數量
  625. GetModuleCount(SYSTEM_CMD);
  626. // 判斷系統數量與各群數量一致
  627. if(moduleCount == ShmPsuData->SystemPresentPsuQuantity && moduleCount > 0)
  628. {
  629. PRINTF_FUNC("Psu Count = %d \n", moduleCount);
  630. if (ShmSysConfigAndInfo->SysInfo.BootingStatus == BOOTTING)
  631. {
  632. // 電樁在 Booting 的狀態 - 自檢
  633. PRINTF_FUNC("== PSU == GET_SYS_CAP \n");
  634. ShmPsuData->Work_Step = GET_SYS_CAP;
  635. }
  636. else
  637. {
  638. PRINTF_FUNC("== PSU == _WORK_CHARGING \n");
  639. ShmPsuData->Work_Step = _WORK_CHARGING;
  640. }
  641. }
  642. _getCapDelayCount = 3;
  643. gettimeofday(&_cmdSubPriority_time, NULL);
  644. }
  645. }
  646. break;
  647. case GET_SYS_CAP:
  648. {
  649. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  650. if (time > 1000)
  651. {
  652. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  653. {
  654. // Pooling Status
  655. GetStatus(index);
  656. // 取系統總輸出能力
  657. GetModuleCap(index);
  658. }
  659. _getCapDelayCount--;
  660. gettimeofday(&_cmdSubPriority_time, NULL);
  661. }
  662. // 判斷系統輸出額定功率與電流
  663. if (ShmPsuData->SystemAvailablePower > 0 && ShmPsuData->SystemAvailableCurrent > 0 &&
  664. _getCapDelayCount <= 0)
  665. {
  666. PRINTF_FUNC("SystemAvailableCurrent = %d, SystemAvailablePower = %d \n",
  667. ShmPsuData->SystemAvailableCurrent, ShmPsuData->SystemAvailablePower);
  668. PRINTF_FUNC("== PSU == BOOTING_COMPLETE \n");
  669. ShmPsuData->Work_Step = BOOTING_COMPLETE;
  670. }
  671. }
  672. break;
  673. case BOOTING_COMPLETE:
  674. {
  675. sleep(1);
  676. }
  677. break;
  678. case _WORK_CHARGING:
  679. {
  680. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  681. // 低 Priority 的指令
  682. if (time > 1500)
  683. {
  684. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  685. {
  686. // Pooling Status
  687. GetStatus(index);
  688. // 取系統總輸出能力
  689. GetModuleCap(index);
  690. // 取得模塊輸入電壓
  691. GetModuleInput(index);
  692. // 取得模塊輸出額定電流能力
  693. GetModuleIavailable(index);
  694. }
  695. gettimeofday(&_cmdSubPriority_time, NULL);
  696. }
  697. for (byte groupIndex = 0; groupIndex < _gunCount; groupIndex++)
  698. {
  699. GetModuleOutput(groupIndex);
  700. // 針對各槍當前狀態,傳送需要回傳的資料指令
  701. if (((chargingInfo[groupIndex]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[groupIndex]->SystemStatus <= S_CHARGING) && chargingInfo[groupIndex]->RelayK1K2Status) ||
  702. (chargingInfo[groupIndex]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[groupIndex]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  703. {
  704. if (chargingInfo[groupIndex]->EvBatterytargetVoltage > 0 &&
  705. carReqVol != chargingInfo[groupIndex]->EvBatterytargetVoltage)
  706. {
  707. carReqVol = chargingInfo[groupIndex]->EvBatterytargetVoltage;
  708. DEBUG_INFO("ev need vol = %f \n", chargingInfo[groupIndex]->EvBatterytargetVoltage);
  709. }
  710. if (chargingInfo[groupIndex]->EvBatterytargetCurrent > 0 &&
  711. carReqCur != chargingInfo[groupIndex]->EvBatterytargetCurrent)
  712. {
  713. carReqCur = chargingInfo[groupIndex]->EvBatterytargetCurrent;
  714. DEBUG_INFO("ev need cur = %f \n", chargingInfo[groupIndex]->EvBatterytargetCurrent);
  715. }
  716. if (chargingInfo[groupIndex]->FireChargingVoltage > 0 &&
  717. evseOutVol != chargingInfo[groupIndex]->FireChargingVoltage)
  718. {
  719. evseOutVol = chargingInfo[groupIndex]->FireChargingVoltage;
  720. PRINTF_FUNC("groupIndex = %d, evse output vol = %f \n", groupIndex,
  721. chargingInfo[groupIndex]->FireChargingVoltage);
  722. }
  723. if (chargingInfo[groupIndex]->PresentChargingCurrent > 0 &&
  724. evseOutCur != chargingInfo[groupIndex]->PresentChargingCurrent)
  725. {
  726. evseOutCur = chargingInfo[groupIndex]->PresentChargingCurrent;
  727. PRINTF_FUNC("groupIndex = %d, evse output cur = %f \n", groupIndex,
  728. chargingInfo[groupIndex]->PresentChargingCurrent);
  729. }
  730. if (ShmPsuData->SystemAvailablePower > 0)
  731. {
  732. // 該充電槍的目標電壓與目標電流
  733. PresentOutputVol(SYSTEM_CMD,
  734. chargingInfo[groupIndex]->EvBatterytargetVoltage,
  735. chargingInfo[groupIndex]->EvBatterytargetCurrent);
  736. if (chargingInfo[groupIndex]->EvBatterytargetVoltage == 0)
  737. {
  738. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  739. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  740. }
  741. else
  742. {
  743. SwitchPower(SYSTEM_CMD, PSU_POWER_ON);
  744. FlashLed(SYSTEM_CMD, PSU_FLASH_ON);
  745. }
  746. }
  747. }
  748. else if (chargingInfo[groupIndex]->SystemStatus >= S_TERMINATING &&
  749. chargingInfo[groupIndex]->SystemStatus <= S_COMPLETE)
  750. {
  751. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  752. {
  753. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  754. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  755. }
  756. else if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  757. {
  758. SwitchPower(groupIndex, PSU_POWER_OFF);
  759. FlashLed(groupIndex, PSU_FLASH_NORMAL);
  760. }
  761. }
  762. }
  763. break;
  764. }
  765. }
  766. usleep(20000);
  767. }
  768. return FAIL;
  769. }