Module_PsuComm.c 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  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_COUNT 30
  8. #define DERATING_GAP 30
  9. #define ELEMENT_NOT_FIND 255
  10. #define CHK_VOL_RANGE 50
  11. #define CHK_CUR_RANGE 10
  12. #define DERATING_RANGE 100
  13. #define ZERO_CURRENT 10 // 該值須保持最小為 1A
  14. #define ZERO_VOLTAGE 50
  15. #define STOP_CURRENT 30
  16. #define PSU_MIN_CUR 1000
  17. #define PSU_MIN_VOL 1500
  18. #define PRE_CHARG_STEP_CUR 30
  19. #define PRE_CHARG_RANGE 50
  20. #define EQUAL 0
  21. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  22. struct StatusCodeData *ShmStatusCodeData;
  23. struct PsuData *ShmPsuData;
  24. bool libInitialize = false;
  25. byte getAvailableCapOffset = 5;
  26. byte deratingKeepCount = 0;
  27. float evseOutVol = 0;
  28. float evseOutCur = 0;
  29. void PRINTF_FUNC(char *string, ...);
  30. int StoreLogMsg(const char *fmt, ...);
  31. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  33. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  34. unsigned long GetTimeoutValue(struct timeval _sour_time);
  35. unsigned long GetTimeoutValue(struct timeval _sour_time)
  36. {
  37. struct timeval _end_time;
  38. gettimeofday(&_end_time, NULL);
  39. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  40. }
  41. int StoreLogMsg(const char *fmt, ...)
  42. {
  43. char Buf[4096+256];
  44. char buffer[4096];
  45. va_list args;
  46. struct timeb SeqEndTime;
  47. struct tm *tm;
  48. va_start(args, fmt);
  49. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  50. va_end(args);
  51. memset(Buf,0,sizeof(Buf));
  52. ftime(&SeqEndTime);
  53. SeqEndTime.time = time(NULL);
  54. tm=localtime(&SeqEndTime.time);
  55. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == YES)
  56. {
  57. sprintf(Buf,"%02d:%02d:%02d:%03d - %s",
  58. tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm, buffer);
  59. printf("%s \n", Buf);
  60. }
  61. else
  62. {
  63. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  64. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm,
  65. buffer,
  66. tm->tm_year+1900,tm->tm_mon+1);
  67. system(Buf);
  68. }
  69. return rc;
  70. }
  71. void PRINTF_FUNC(char *string, ...)
  72. {
  73. va_list args;
  74. char buffer[4096];
  75. va_start(args, string);
  76. vsnprintf(buffer, sizeof(buffer), string, args);
  77. va_end(args);
  78. DEBUG_INFO("%s \n", buffer);
  79. }
  80. //=================================
  81. // Common routine
  82. //=================================
  83. size_t FindIndex(const int a[], size_t size, int value, byte group)
  84. {
  85. size_t index = 0;
  86. while ( index < size && a[index] != value ) ++index;
  87. return (index == size ? ELEMENT_NOT_FIND : group);
  88. }
  89. byte FindTargetGroup(byte address)
  90. {
  91. byte _group = ELEMENT_NOT_FIND;
  92. if (ShmPsuData->GroupCount == 1)
  93. _group = 0;
  94. else
  95. {
  96. _group = FindIndex(connector_1, ShmPsuData->PsuGroup[0].GroupPresentPsuQuantity, address, 0);
  97. if (_group == ELEMENT_NOT_FIND)
  98. _group = FindIndex(connector_2, ShmPsuData->PsuGroup[1].GroupPresentPsuQuantity, address, 1);
  99. }
  100. return _group;
  101. }
  102. bool IsOverModuleCount(byte count)
  103. {
  104. bool result = false;
  105. if (count >= ShmPsuData->SystemPresentPsuQuantity)
  106. result = true;
  107. return result;
  108. }
  109. //=================================
  110. // Save data to share memory Function
  111. //=================================
  112. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  113. {
  114. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  115. {
  116. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  117. {
  118. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  119. return true;
  120. }
  121. }
  122. for (byte index = 0; index < CCS_QUANTITY; index++)
  123. {
  124. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  125. {
  126. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  127. return true;
  128. }
  129. }
  130. for (byte index = 0; index < GB_QUANTITY; index++)
  131. {
  132. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  133. {
  134. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  135. return true;
  136. }
  137. }
  138. return false;
  139. }
  140. //=================================
  141. // Alarm code mapping to share memory Function
  142. //=================================
  143. // 檢查 Byte 中某個 Bit 的值
  144. // _byte : 欲改變的 byte
  145. // _bit : 該 byte 的第幾個 bit
  146. unsigned char mask_table[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
  147. unsigned char DetectBitValue(unsigned char _byte, unsigned char _bit)
  148. {
  149. return ( _byte & mask_table[_bit] ) != 0x00;
  150. }
  151. void AbnormalStopAnalysis(byte gun_index, int errCode)
  152. {
  153. for (char i = 0; i < 3; i++)
  154. {
  155. unsigned char byteIndex = (errCode >> (8 * i)) & 0xff;
  156. for (char bitIndex = 0; bitIndex < 8; bitIndex++)
  157. {
  158. if(DetectBitValue(byteIndex , bitIndex) == 1)
  159. {
  160. switch(byteIndex)
  161. {
  162. case 0:
  163. {
  164. if (bitIndex == 0)
  165. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = YES;
  166. else if (bitIndex == 5)
  167. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = YES;
  168. }
  169. break;
  170. case 1:
  171. {
  172. if (bitIndex == 1)
  173. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = YES;
  174. else if (bitIndex == 2)
  175. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuProtectionAlarm = YES;
  176. else if (bitIndex == 3)
  177. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = YES;
  178. else if (bitIndex == 4)
  179. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = YES;
  180. else if (bitIndex == 5)
  181. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = YES;
  182. }
  183. break;
  184. case 2:
  185. {
  186. if (bitIndex == 0)
  187. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPowerLimitedState = YES;
  188. else if (bitIndex == 1)
  189. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = YES;
  190. else if (bitIndex == 2)
  191. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseOnputImbalance = YES;
  192. else if (bitIndex == 3)
  193. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = YES;
  194. else if (bitIndex == 4)
  195. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = YES;
  196. else if (bitIndex == 5)
  197. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = YES;
  198. else if (bitIndex == 6)
  199. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = YES;
  200. }
  201. break;
  202. }
  203. }
  204. // else
  205. // {
  206. // switch (byteIndex) {
  207. // case 0: {
  208. // if (bitIndex == 0)
  209. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = NO;
  210. // else if (bitIndex == 5)
  211. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  212. // }
  213. // break;
  214. // case 1: {
  215. // if (bitIndex == 1)
  216. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = NO;
  217. // else if (bitIndex == 2)
  218. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuProtectionAlarm = NO;
  219. // else if (bitIndex == 3)
  220. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = NO;
  221. // else if (bitIndex == 4)
  222. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = NO;
  223. // else if (bitIndex == 5)
  224. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  225. // }
  226. // break;
  227. // case 2: {
  228. // if (bitIndex == 1)
  229. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = NO;
  230. // if (bitIndex == 2)
  231. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseOnputImbalance = NO;
  232. // else if (bitIndex == 3)
  233. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  234. // else if (bitIndex == 4)
  235. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  236. // else if (bitIndex == 5)
  237. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = NO;
  238. // else if (bitIndex == 6)
  239. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = NO;
  240. // }
  241. // break;
  242. // }
  243. // }
  244. }
  245. }
  246. }
  247. //=================================
  248. // Callback Function
  249. //=================================
  250. // no using -- GetOutputAndTempCallback
  251. void GetStatusCallback(byte group, byte address, byte temp, int alarm)
  252. {
  253. // if (ShmPsuData->Work_Step == INITIAL_START)
  254. // return;
  255. //
  256. // if (IsOverModuleCount(address))
  257. // return;
  258. //
  259. // byte group1 = FindTargetGroup(address);
  260. //
  261. // if (group1 == 1)
  262. // address -= ShmPsuData->PsuGroup[group1 - 1].GroupPresentPsuQuantity;
  263. //
  264. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp1 = temp;
  265. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp2 = temp;
  266. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp3 = temp;
  267. // ShmPsuData->PsuGroup[group1].PsuModule[address].ExletTemp = temp;
  268. // ShmPsuData->PsuGroup[group1].PsuModule[address].AlarmCode = alarm;
  269. // AbnormalStopAnalysis(group1, alarm);
  270. // PRINTF_FUNC("***Status*** address = %d, temp = %d, err1 = %d, err2 = %d, err3 = %d, err4 = %d \n",
  271. // address, temp,
  272. // (alarm >> 24) & 0xFF,
  273. // (alarm >> 16) & 0xFF,
  274. // (alarm >> 8) & 0xFF,
  275. // alarm & 0xFF);
  276. }
  277. // no using -- GetOutputAndTempCallback End
  278. void GetModuleCountCallback(byte group, byte count)
  279. {
  280. if (group == SYSTEM_CMD)
  281. ShmPsuData->SystemPresentPsuQuantity = count;
  282. else
  283. {
  284. ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity = count;
  285. }
  286. }
  287. void GetMaxPowerAndCur(unsigned char mode, int ratingCur, int *pow, int *cur)
  288. {
  289. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  290. return;
  291. unsigned short maxCurrent = ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent * 10;
  292. unsigned short maxPower = ShmSysConfigAndInfo->SysConfig.MaxChargingPower * 10;
  293. if (mode == _MAIN_CHARGING_MODE_AVER)
  294. {
  295. maxCurrent /= 2;
  296. maxPower /= 2;
  297. }
  298. if (maxPower != 0 && maxPower <= *pow)
  299. *pow = maxPower;
  300. if (maxCurrent != 0 && maxCurrent <= *cur)
  301. *cur = maxCurrent;
  302. if (ratingCur != 0 && ratingCur <= *cur)
  303. *cur = ratingCur;
  304. }
  305. void GetAvailableCapCallback(byte address, short maxVol, short minVol, short maxCur, short totalPow)
  306. {
  307. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  308. return;
  309. int _groupPower = 0, _groupCurrent = 0;
  310. byte group = FindTargetGroup(address);
  311. if (group == 1)
  312. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  313. if (chargingInfo[group]->DeratingChargingCurrent == 0)
  314. ShmPsuData->PsuGroup[group].PsuModule[address].AvailableCurrent = PSU_MIN_CUR;
  315. else
  316. ShmPsuData->PsuGroup[group].PsuModule[address].AvailableCurrent = maxCur;
  317. ShmPsuData->PsuGroup[group].PsuModule[address].AvailablePower = totalPow;
  318. // 總和該 Group 的可輸出電流
  319. for (byte index = 0; index < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; index++)
  320. {
  321. _groupCurrent += ShmPsuData->PsuGroup[group].PsuModule[index].AvailableCurrent;
  322. _groupPower += ShmPsuData->PsuGroup[group].PsuModule[index].AvailablePower;
  323. }
  324. // 各群得到最大輸出能力 (電流、Power)
  325. ShmPsuData->PsuGroup[group].GroupAvailableCurrent = _groupCurrent;
  326. ShmPsuData->PsuGroup[group].GroupAvailablePower = _groupPower;
  327. chargingInfo[group]->MaximumChargingVoltage = maxVol;
  328. int _power = 0, _current = 0, _ratingcurrent = 0;
  329. bool isGetAllDeratingCurrent = true;
  330. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  331. {
  332. _power += ShmPsuData->PsuGroup[index].GroupAvailablePower;
  333. _current += ShmPsuData->PsuGroup[index].GroupAvailableCurrent;
  334. _ratingcurrent += chargingInfo[index]->DeratingChargingCurrent;
  335. if (ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage >= PSU_MIN_VOL &&
  336. chargingInfo[index]->DeratingChargingCurrent == 0)
  337. isGetAllDeratingCurrent = false;
  338. }
  339. // 如果不是所有群都得到 Derating current,則先不採樣該次的 ratingCurrent
  340. if (!isGetAllDeratingCurrent) _ratingcurrent = 0;
  341. ShmPsuData->SystemAvailableCurrent = _current;
  342. ShmPsuData->SystemAvailablePower = _power;
  343. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER ||
  344. (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_GET_NEW_CAP &&
  345. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A))
  346. {
  347. int halfPow = ShmPsuData->PsuGroup[group].GroupAvailablePower;
  348. int halfCur = ShmPsuData->PsuGroup[group].GroupAvailableCurrent;
  349. int ratingCur = chargingInfo[group]->DeratingChargingCurrent;
  350. if ((ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_GET_NEW_CAP &&
  351. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A))
  352. {
  353. if (chargingInfo[group]->DividChargingCurrent == 0)
  354. return;
  355. else
  356. {
  357. halfCur = chargingInfo[group]->DividChargingCurrent;
  358. ratingCur = 0;
  359. }
  360. }
  361. GetMaxPowerAndCur(_MAIN_CHARGING_MODE_AVER, ratingCur, &halfPow, &halfCur);
  362. // if ((ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_GET_NEW_CAP &&
  363. // ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A))
  364. // {
  365. // chargingInfo[group]->AvailableChargingCurrent = DERATING_RANGE;
  366. // chargingInfo[group]->AvailableChargingPower = ShmPsuData->PsuGroup[group].GroupAvailablePower;
  367. // }
  368. // else
  369. {
  370. // 以下狀況 -> 槍資訊中的最大輸出能力,為該群的輸出能力
  371. // 1. 如不是最大充
  372. // 2. 智能切換成均充過程
  373. chargingInfo[group]->AvailableChargingCurrent = halfCur;
  374. chargingInfo[group]->AvailableChargingPower = halfPow;
  375. if(chargingInfo[group]->DeratingChargingCurrent > 0)
  376. {
  377. chargingInfo[group]->RealRatingPower = (chargingInfo[group]->DeratingChargingCurrent * chargingInfo[group]->PresentChargingVoltage) / 100000;
  378. }
  379. //printf("(Aver.) RealRatingPower = %d \n", chargingInfo[group]->RealRatingPower);
  380. }
  381. }
  382. else if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  383. {
  384. GetMaxPowerAndCur(_MAIN_CHARGING_MODE_MAX, _ratingcurrent, &_power, &_current);
  385. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  386. {
  387. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  388. {
  389. chargingInfo[count]->MaximumChargingVoltage = maxVol;
  390. chargingInfo[count]->AvailableChargingCurrent = _current;
  391. chargingInfo[count]->AvailableChargingPower = _power;
  392. }
  393. }
  394. else
  395. {
  396. // 如果是最大充,該槍資訊中的輸出能力為各群輸出能力的和
  397. chargingInfo[group]->AvailableChargingCurrent = _current;
  398. chargingInfo[group]->AvailableChargingPower = _power;
  399. }
  400. if(_ratingcurrent > 0)
  401. {
  402. chargingInfo[group]->RealRatingPower = (_ratingcurrent * chargingInfo[group]->PresentChargingVoltage) / 100000;
  403. }
  404. //printf("(Max.) RealRatingPower = %d \n", chargingInfo[group]->RealRatingPower);
  405. }
  406. }
  407. void GetFwCallback(byte address, short dcSwVer, short pfcSwVer, short hwVer)
  408. {
  409. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  410. return;
  411. if (IsOverModuleCount(address))
  412. return;
  413. byte group = FindTargetGroup(address);
  414. sprintf((char *)ShmPsuData->PsuVersion[address].FwPrimaryVersion, "DC %d.%02d", (dcSwVer & 0xFF00) >> 8, dcSwVer & 0xFF);
  415. sprintf((char *)ShmPsuData->PsuVersion[address].FwSecondVersion, "PFC %d.%02d", (pfcSwVer & 0xFF00) >> 8, pfcSwVer & 0xFF);
  416. if (group == 1)
  417. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  418. sprintf((char *)ShmPsuData->PsuGroup[group].PsuModule[address].FwVersion, "DC %d.%02d", (dcSwVer & 0xFF00) >> 8, dcSwVer & 0xFF);
  419. //DEBUG_INFO("fw Ver. = %s \n", ShmPsuData->PsuGroup[group].PsuModule[address].FwVersion);
  420. }
  421. // no using -- GetInputVoltageCallback
  422. void GetInputVoltageCallback(byte address, unsigned short vol1, unsigned short vol2, unsigned short vol3)
  423. {
  424. // if (ShmPsuData->Work_Step < GET_SYS_CAP)
  425. // return;
  426. //
  427. // if (IsOverModuleCount(address))
  428. // return;
  429. //
  430. // byte group = FindTargetGroup(address);
  431. //
  432. // if (group == 1)
  433. // address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  434. //
  435. // ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL1 = vol1;
  436. // ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL2 = vol2;
  437. // ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL3 = vol3;
  438. //
  439. // PRINTF_FUNC("***Input*** address = %d, R = %d, S = %d, T = %d, gp = %d \n",
  440. // address, vol1, vol2, vol3, group);
  441. }
  442. // no using -- GetInputVoltageCallback End
  443. // no using -- GetOutputAndTempCallback
  444. void GetPresentOutputCallback(byte group, unsigned short outVol, unsigned short outCur)
  445. {
  446. // if (ShmPsuData->Work_Step < GET_SYS_CAP)
  447. // return;
  448. //if (outCur != ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent)
  449. //{
  450. // PRINTF_FUNC("Gp_%d, gp output cur = %d \n", group, outCur);
  451. //}
  452. // // PSU Group - 電壓
  453. // ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage = outVol;
  454. // // PSU Group - 電流
  455. // ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent = outCur;
  456. //
  457. // if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX ||
  458. // (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  459. // (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_WAITING &&
  460. // ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_COMP))
  461. // )
  462. // {
  463. // unsigned short outputVol = 0;
  464. // unsigned short outputCur = 0;
  465. //
  466. // for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  467. // {
  468. // bool needtoAdd = true;
  469. //
  470. // if (ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage > outputVol)
  471. // outputVol = ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage;
  472. //
  473. // if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_ADJUST_M_TO_A &&
  474. // ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A)
  475. // {
  476. //// PRINTF_FUNC("Gp_%d, DividChargingCurrent = %d \n", index,
  477. //// chargingInfo[index]->DividChargingCurrent);
  478. // if (chargingInfo[index]->DividChargingCurrent == 0)
  479. // needtoAdd = false;
  480. // }
  481. //
  482. // if (needtoAdd)
  483. // outputCur += ShmPsuData->PsuGroup[index].GroupPresentOutputCurrent;
  484. // }
  485. //
  486. // // 黑白機
  487. // if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  488. // {
  489. // for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  490. // {
  491. // float _vol_buf = outputVol;
  492. // float _cur_buf = outputCur;
  493. //
  494. // // EVSE - 電壓
  495. // _vol_buf /= 10;
  496. // chargingInfo[count]->PresentChargingVoltage = _vol_buf;
  497. // // EVSE - 電流
  498. // _cur_buf /= 10;
  499. // chargingInfo[count]->PresentChargingCurrent = _cur_buf;
  500. // }
  501. // }
  502. //
  503. // if ((chargingInfo[group]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[group]->SystemStatus <= S_COMPLETE) ||
  504. // (chargingInfo[group]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[group]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  505. // {
  506. // float _vol_buf = outputVol;
  507. // float _cur_buf = outputCur;
  508. //
  509. // // EVSE - 電壓
  510. // _vol_buf /= 10;
  511. // chargingInfo[group]->PresentChargingVoltage = _vol_buf;
  512. // // EVSE - 電流
  513. // _cur_buf /= 10;
  514. // chargingInfo[group]->PresentChargingCurrent = _cur_buf;
  515. // }
  516. // }
  517. // else
  518. // {
  519. // float _vol_buf = ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage;
  520. // float _cur_buf = ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent;
  521. //
  522. // // EVSE - 電壓
  523. // _vol_buf /= 10;
  524. // chargingInfo[group]->PresentChargingVoltage = _vol_buf;
  525. // // EVSE - 電流
  526. // _cur_buf /= 10;
  527. // chargingInfo[group]->PresentChargingCurrent = _cur_buf;
  528. // }
  529. //
  530. // PRINTF_FUNC("Gun_%d, PresentChargingVoltage = %f, PresentChargingCurrent = %f \n", group,
  531. // chargingInfo[group]->PresentChargingVoltage,
  532. // chargingInfo[group]->PresentChargingCurrent);
  533. }
  534. // no using -- GetOutputAndTempCallback End
  535. void GetFanSpeedCallback(byte address, unsigned int fanSpeed)
  536. {
  537. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  538. return;
  539. if (IsOverModuleCount(address))
  540. return;
  541. byte group = FindTargetGroup(address);
  542. if (group == 1)
  543. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  544. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_1 = fanSpeed;
  545. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_2 = fanSpeed;
  546. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_3 = fanSpeed;
  547. ShmPsuData->PsuGroup[group].PsuModule[address].FanSpeed_4 = fanSpeed;
  548. }
  549. void GetIavailableCallback(byte address, unsigned short Iavail, unsigned short Vext)
  550. {
  551. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  552. return;
  553. if (IsOverModuleCount(address))
  554. return;
  555. //PRINTF_FUNC("address = %d, Iavail = %d \n", address, Iavail);
  556. byte group = FindTargetGroup(address);
  557. if (group == 1)
  558. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  559. //PRINTF_FUNC("group = %d, address_%d, Iavail = %d \n", group, address, Iavail);
  560. ShmPsuData->PsuGroup[group].PsuModule[address].IAvailableCurrent = Iavail;
  561. bool isPass = true;
  562. int totalCur = 0;
  563. if (Iavail == 0)
  564. {
  565. for (byte count = 0; count < 2; count++)
  566. {
  567. chargingInfo[group]->SampleChargingCur[count] = Iavail;
  568. }
  569. }
  570. else
  571. {
  572. // 該群的可輸出電流
  573. for (byte index = 0; index < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; index++)
  574. {
  575. totalCur += ShmPsuData->PsuGroup[group].PsuModule[index].IAvailableCurrent;
  576. }
  577. for (byte count = 0; count < 2; count++)
  578. {
  579. if (chargingInfo[group]->SampleChargingCur[count] == 0)
  580. {
  581. chargingInfo[group]->SampleChargingCur[count] = totalCur;
  582. return;
  583. }
  584. else
  585. {
  586. if (chargingInfo[group]->SampleChargingCur[count] != totalCur)
  587. {
  588. chargingInfo[group]->SampleChargingCur[count] = totalCur;
  589. isPass = false;
  590. break;
  591. }
  592. }
  593. }
  594. }
  595. if (isPass)
  596. {
  597. //PRINTF_FUNC("rating pass value = %d \n", totalCur);
  598. chargingInfo[group]->DeratingChargingCurrent = totalCur;
  599. }
  600. }
  601. //==========================================
  602. // 特規用指令
  603. //==========================================
  604. void GetOutputAndTempCallback(byte address, unsigned short outputVol_s,
  605. unsigned short outputCur_s, unsigned short outputPower, unsigned char Temperature)
  606. {
  607. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  608. return;
  609. unsigned short outVol = outputVol_s;
  610. unsigned short outCur = outputCur_s;
  611. if (IsOverModuleCount(address))
  612. return;
  613. byte group = FindTargetGroup(address);
  614. if (group == 1)
  615. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  616. // PSU Group - 電壓
  617. ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage = outVol;
  618. // PSU Group - 電流
  619. ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent = outCur;
  620. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX ||
  621. (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  622. (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_WAITING &&
  623. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_COMP))
  624. )
  625. {
  626. unsigned short outputVol = 0;
  627. unsigned short outputCur = 0;
  628. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  629. {
  630. bool needtoAdd = true;
  631. if (ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage > outputVol)
  632. outputVol = ShmPsuData->PsuGroup[index].GroupPresentOutputVoltage;
  633. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_ADJUST_M_TO_A &&
  634. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A)
  635. {
  636. if (chargingInfo[index]->DividChargingCurrent == 0)
  637. needtoAdd = false;
  638. }
  639. if (needtoAdd)
  640. outputCur += ShmPsuData->PsuGroup[index].GroupPresentOutputCurrent;
  641. }
  642. // 黑白機
  643. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  644. {
  645. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  646. {
  647. float _vol_buf = outputVol;
  648. float _cur_buf = outputCur;
  649. // EVSE - 電壓
  650. _vol_buf /= 10;
  651. chargingInfo[count]->PresentChargingVoltage = _vol_buf;
  652. // EVSE - 電流
  653. _cur_buf /= 10;
  654. chargingInfo[count]->PresentChargingCurrent = _cur_buf;
  655. }
  656. }
  657. if ((chargingInfo[group]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[group]->SystemStatus <= S_COMPLETE) ||
  658. (chargingInfo[group]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[group]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  659. {
  660. float _vol_buf = outputVol;
  661. float _cur_buf = outputCur;
  662. // EVSE - 電壓
  663. _vol_buf /= 10;
  664. chargingInfo[group]->PresentChargingVoltage = _vol_buf;
  665. // EVSE - 電流
  666. _cur_buf /= 10;
  667. chargingInfo[group]->PresentChargingCurrent = _cur_buf;
  668. }
  669. }
  670. else
  671. {
  672. float _vol_buf = ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage;
  673. float _cur_buf = ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent;
  674. // EVSE - 電壓
  675. _vol_buf /= 10;
  676. chargingInfo[group]->PresentChargingVoltage = _vol_buf;
  677. // EVSE - 電流
  678. _cur_buf /= 10;
  679. chargingInfo[group]->PresentChargingCurrent = _cur_buf;
  680. }
  681. ShmPsuData->PsuGroup[group].PsuModule[address].CriticalTemp1 = Temperature;
  682. ShmPsuData->PsuGroup[group].PsuModule[address].CriticalTemp2 = Temperature;
  683. ShmPsuData->PsuGroup[group].PsuModule[address].CriticalTemp3 = Temperature;
  684. ShmPsuData->PsuGroup[group].PsuModule[address].ExletTemp = Temperature;
  685. // PRINTF_FUNC("***Output Value and Temp*** group = %d, Vol = %d, Cur = %d \n",
  686. // group, outputVol_s, outputCur_s);
  687. }
  688. void GetModuleStatusCallback(byte address, unsigned char isErr, unsigned char status,
  689. unsigned char err1, unsigned char err2, unsigned char err3, unsigned char err4)
  690. {
  691. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  692. return;
  693. if (IsOverModuleCount(address))
  694. return;
  695. byte group1 = FindTargetGroup(address);
  696. if (group1 == 1)
  697. address -= ShmPsuData->PsuGroup[group1 - 1].GroupPresentPsuQuantity;
  698. int alarm = (err2 << 24) | (err3 << 16) | (err4 << 8);
  699. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp1 = temp;
  700. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp2 = temp;
  701. // ShmPsuData->PsuGroup[group1].PsuModule[address].CriticalTemp3 = temp;
  702. // ShmPsuData->PsuGroup[group1].PsuModule[address].ExletTemp = temp;
  703. ShmPsuData->PsuGroup[group1].PsuModule[address].AlarmCode = alarm;
  704. AbnormalStopAnalysis(group1, alarm);
  705. // err2 == state 2
  706. // err3 == state 1
  707. // err4 == state 0
  708. //PRINTF_FUNC("***Status*** address = %d, alarm = %d \n", address, alarm);
  709. }
  710. void GetModuleInputCallback(byte address, unsigned short inputR,
  711. unsigned short inputS, unsigned short inputT)
  712. {
  713. if (ShmPsuData->Work_Step < GET_SYS_CAP)
  714. return;
  715. if (IsOverModuleCount(address))
  716. return;
  717. byte group = FindTargetGroup(address);
  718. if (group == 1)
  719. address -= ShmPsuData->PsuGroup[group - 1].GroupPresentPsuQuantity;
  720. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL1 = inputR;
  721. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL2 = inputS;
  722. ShmPsuData->PsuGroup[group].PsuModule[address].InputVoltageL3 = inputT;
  723. //PRINTF_FUNC("***Input*** address = %d, R = %d, S = %d, T = %d \n",
  724. // address, inputR, inputS, inputT);
  725. }
  726. //==========================================
  727. // Init all share memory
  728. //==========================================
  729. int InitShareMemory()
  730. {
  731. int result = PASS;
  732. int MeterSMId;
  733. //creat ShmSysConfigAndInfo
  734. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  735. {
  736. #ifdef SystemLogMessage
  737. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG %d \n");
  738. #endif
  739. result = FAIL;
  740. }
  741. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  742. {
  743. #ifdef SystemLogMessage
  744. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG \n");
  745. #endif
  746. result = FAIL;
  747. }
  748. else
  749. {}
  750. //creat ShmStatusCodeData
  751. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  752. {
  753. #ifdef SystemLogMessage
  754. DEBUG_ERROR("shmget ShmStatusCodeData NG \n");
  755. #endif
  756. result = FAIL;
  757. }
  758. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  759. {
  760. #ifdef SystemLogMessage
  761. DEBUG_ERROR("shmat ShmStatusCodeData NG \n");
  762. #endif
  763. result = FAIL;
  764. }
  765. else
  766. {}
  767. //creat ShmPsuData
  768. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  769. {
  770. #ifdef SystemLogMessage
  771. DEBUG_ERROR("shmget ShmPsuData NG \n");
  772. #endif
  773. result = FAIL;
  774. }
  775. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  776. {
  777. #ifdef SystemLogMessage
  778. DEBUG_ERROR("shmat ShmPsuData NG \n");
  779. #endif
  780. result = FAIL;
  781. }
  782. memset(ShmPsuData,0,sizeof(struct PsuData));
  783. return result;
  784. }
  785. //================================================
  786. // Main process
  787. //================================================
  788. void InitialPsuData()
  789. {
  790. ShmPsuData->SystemPresentPsuQuantity = 0;
  791. ShmPsuData->SystemAvailablePower = 0;
  792. PRINTF_FUNC("************ psu Group = %d \n", ShmPsuData->GroupCount);
  793. for (byte _groupCount = 0; _groupCount < ShmPsuData->GroupCount; _groupCount++)
  794. {
  795. ShmPsuData->PsuGroup[_groupCount].GroupPresentPsuQuantity = 0;
  796. ShmPsuData->PsuGroup[_groupCount].GroupAvailablePower = 0;
  797. ShmPsuData->PsuGroup[_groupCount].GroupAvailableCurrent = 0;
  798. }
  799. }
  800. void Initialization()
  801. {
  802. bool isPass = false;
  803. while(!isPass)
  804. {
  805. isPass = true;
  806. for (byte _index = 0; _index < _gunCount; _index++)
  807. {
  808. if (!FindChargingInfoData(_index, &chargingInfo[0]))
  809. {
  810. DEBUG_ERROR("Module_PsuComm : FindChargingInfoData false \n");
  811. isPass = false;
  812. break;
  813. }
  814. }
  815. sleep(1);
  816. }
  817. if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  818. ShmPsuData->GroupCount = 1;
  819. else
  820. ShmPsuData->GroupCount = _gunCount;
  821. char EvsePower[2];
  822. EvsePower[2] = '\0';
  823. char count = 0;
  824. byte psuTarIndex = 0;
  825. // 解析 ModelName 取得各槍各有幾個 PSU 及編號
  826. if (strlen((char *) ShmSysConfigAndInfo->SysConfig.ModelName) >= 6)
  827. {
  828. strncpy(EvsePower, (char *)(ShmSysConfigAndInfo->SysConfig.ModelName + 4), 2);
  829. if (strcmp(EvsePower, "15") == EQUAL)
  830. count = 5;
  831. else if (strcmp(EvsePower, "30") == EQUAL)
  832. count = 1;
  833. else if (strcmp(EvsePower, "60") == EQUAL)
  834. count = 2;
  835. else if (strcmp(EvsePower, "18") == EQUAL)
  836. count = 6;
  837. else if (strcmp(EvsePower, "36") == EQUAL)
  838. count = 12;
  839. if (count > 0)
  840. {
  841. if (ShmPsuData->GroupCount == 1)
  842. conn_1_count = count;
  843. else if (ShmPsuData->GroupCount == 2)
  844. {
  845. if(count % 2 > 0)
  846. conn_1_count = (count / 2) + 1;
  847. else
  848. conn_1_count = (count / 2);
  849. conn_2_count = count - conn_1_count;
  850. }
  851. for(byte psuIndex = 0; psuIndex < conn_1_count; psuIndex++)
  852. {
  853. connector_1[psuIndex] = psuTarIndex;
  854. psuTarIndex++;
  855. }
  856. for(byte psuIndex = 0; psuIndex < conn_2_count; psuIndex++)
  857. {
  858. connector_2[psuIndex] = psuTarIndex;
  859. psuTarIndex++;
  860. }
  861. for(byte psuIndex = 0; psuIndex < conn_1_count; psuIndex++)
  862. PRINTF_FUNC("Connector 1 - Number = %d \n", connector_1[psuIndex]);
  863. for(byte psuIndex = 0; psuIndex < conn_2_count; psuIndex++)
  864. PRINTF_FUNC("Connector 2 - Number = %d \n", connector_2[psuIndex]);
  865. }
  866. else
  867. DEBUG_ERROR("Module_PsuComm : Can't parsing model name. \n");
  868. }
  869. }
  870. void CheckSmartChargingStep(bool isWaitingAver, bool isCharging, bool canAverageCharging)
  871. {
  872. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_PREPARE_M_TO_A)
  873. {
  874. if (isWaitingAver)
  875. {
  876. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  877. {
  878. ShmSysConfigAndInfo->SysInfo.CanAverageCharging = canAverageCharging;
  879. if (canAverageCharging)
  880. {
  881. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_GET_NEW_CAP============= Step 2 \n");
  882. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_GET_NEW_CAP;
  883. }
  884. else
  885. {
  886. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_NONE============= Step 0 \n");
  887. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  888. }
  889. }
  890. else
  891. {
  892. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_NONE============= Step 0 \n");
  893. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  894. }
  895. }
  896. }
  897. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_PREPARE_A_TO_M)
  898. {
  899. if (isCharging)
  900. {
  901. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  902. {
  903. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_ADJUST_A_TO_M============= Step 12 \n");
  904. preChargingCur = preChargingTarget = 0;
  905. gettimeofday(&_max_time, NULL);
  906. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_ADJUST_A_TO_M;
  907. }
  908. else
  909. {
  910. PRINTF_FUNC("=============Smart Charging_1 : _REASSIGNED_COMP============= Step 15 \n");
  911. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_COMP;
  912. }
  913. }
  914. else
  915. {
  916. PRINTF_FUNC("=============Smart Charging_2 : _REASSIGNED_COMP============= Step 15 \n");
  917. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_COMP;
  918. }
  919. }
  920. }
  921. int main(void)
  922. {
  923. if(InitShareMemory() == FAIL)
  924. {
  925. #ifdef SystemLogMessage
  926. DEBUG_ERROR("InitShareMemory NG\n");
  927. #endif
  928. if(ShmStatusCodeData != NULL)
  929. {
  930. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  931. }
  932. sleep(5);
  933. return 0;
  934. }
  935. PRINTF_FUNC("InitShareMemory OK\n");
  936. // register callback function
  937. RefreshStatus(&GetStatusCallback);
  938. RefreshModuleCount(&GetModuleCountCallback);
  939. RefreshAvailableCap(&GetAvailableCapCallback);
  940. RefreshFwVersion(&GetFwCallback);
  941. RefreshInputVol(&GetInputVoltageCallback);
  942. RefreshGetOutput(&GetPresentOutputCallback);
  943. RefreshFanInfo(&GetFanSpeedCallback);
  944. RefreshIavailable(&GetIavailableCallback);
  945. // GetPresentOutputCallback & GetStatusCallback
  946. AutoMode_RefreshOutputAndTemp(&GetOutputAndTempCallback);
  947. // GetStatusCallback
  948. AutoMode_RefreshModuleStatus(&GetModuleStatusCallback);
  949. // GetInputVoltageCallback
  950. AutoMode_RefreshModuleInput(&GetModuleInputCallback);
  951. sleep(2);
  952. _gunCount = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  953. // initial object
  954. InitialPsuData();
  955. Initialization();
  956. libInitialize = InitialCommunication();
  957. byte isInitialComp = NO;
  958. PRINTF_FUNC("ALTERNATIVE_CONG = %d \n", ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf);
  959. //main loop
  960. while (libInitialize)
  961. {
  962. // 斷電狀態
  963. if (ShmSysConfigAndInfo->SysInfo.AcContactorStatus == NO)
  964. {
  965. //一但 AC Off PSU 斷電全部的 PSU Group ID 會全部清 0
  966. if (!isInitialComp)
  967. {
  968. ShmPsuData->Work_Step = INITIAL_START;
  969. sleep(2);
  970. InitialPsuData();
  971. isInitialComp = YES;
  972. }
  973. sleep(1);
  974. continue;
  975. }
  976. else
  977. isInitialComp = NO;
  978. // 自檢失敗
  979. if (ShmPsuData->Work_Step == _NO_WORKING)
  980. {
  981. PRINTF_FUNC("== PSU == self test fail. \n");
  982. sleep(5);
  983. }
  984. switch(ShmPsuData->Work_Step)
  985. {
  986. case INITIAL_START:
  987. {
  988. PRINTF_FUNC("== PSU == INITIAL_START \n");
  989. gettimeofday(&_cmdSubPriority_time, NULL);
  990. sleep(5);
  991. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  992. SetWalkInConfig(SYSTEM_CMD, NO, 0);
  993. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  994. isStartOutputSwitch[index] = false;
  995. ShmPsuData->Work_Step = GET_PSU_COUNT;
  996. }
  997. break;
  998. case GET_PSU_COUNT:
  999. {
  1000. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  1001. byte moduleCount = 0;
  1002. if (time > 2000)
  1003. {
  1004. PRINTF_FUNC("== PSU == indexCount = %d, moduleCount = %d, sysCount = %d\n",
  1005. ShmPsuData->GroupCount, moduleCount, ShmPsuData->SystemPresentPsuQuantity);
  1006. // if (ShmPsuData->GroupCount == 0)
  1007. // ShmPsuData->GroupCount = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  1008. // 分別取各群模組數量
  1009. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1010. {
  1011. // 總和各群模組數量
  1012. moduleCount += ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity;
  1013. // 取各群模組數量
  1014. GetModuleCount(index);
  1015. }
  1016. // 發送取得目前全部模組數量
  1017. GetModuleCount(SYSTEM_CMD);
  1018. // 判斷系統數量與各群數量一致
  1019. if(moduleCount == ShmPsuData->SystemPresentPsuQuantity && moduleCount > 0)
  1020. {
  1021. PRINTF_FUNC("Psu Count = %d \n", moduleCount);
  1022. if (ShmSysConfigAndInfo->SysInfo.BootingStatus == BOOTTING)
  1023. {
  1024. // 電樁在 Booting 的狀態 - 自檢
  1025. PRINTF_FUNC("== PSU == GET_SYS_CAP \n");
  1026. ShmPsuData->Work_Step = GET_SYS_CAP;
  1027. }
  1028. else
  1029. {
  1030. PRINTF_FUNC("== PSU == _WORK_CHARGING \n");
  1031. ShmPsuData->Work_Step = _WORK_CHARGING;
  1032. //sdlu test
  1033. gettimeofday(&_test_time, NULL);
  1034. }
  1035. }
  1036. _getCapDelayCount = 7;
  1037. gettimeofday(&_cmdSubPriority_time, NULL);
  1038. }
  1039. }
  1040. break;
  1041. case GET_SYS_CAP:
  1042. {
  1043. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  1044. if (time > 1000)
  1045. {
  1046. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1047. {
  1048. // Pooling Status
  1049. //GetStatus(index);
  1050. // 取系統總輸出能力
  1051. GetModuleCap(index);
  1052. // 取版號
  1053. GetModuleVer(index);
  1054. }
  1055. _getCapDelayCount--;
  1056. gettimeofday(&_cmdSubPriority_time, NULL);
  1057. }
  1058. // 判斷系統輸出額定功率與電流
  1059. if (ShmPsuData->SystemAvailablePower > 0 && ShmPsuData->SystemAvailableCurrent > 0 &&
  1060. _getCapDelayCount <= 0)
  1061. {
  1062. PRINTF_FUNC("SystemAvailableCurrent = %d, SystemAvailablePower = %d \n",
  1063. ShmPsuData->SystemAvailableCurrent, ShmPsuData->SystemAvailablePower);
  1064. PRINTF_FUNC("== PSU == BOOTING_COMPLETE \n");
  1065. ShmPsuData->Work_Step = BOOTING_COMPLETE;
  1066. }
  1067. }
  1068. break;
  1069. case BOOTING_COMPLETE:
  1070. {
  1071. bool isSelfTestPass = true;
  1072. for (byte groupIndex = 0; groupIndex < _gunCount; groupIndex++)
  1073. {
  1074. if (chargingInfo[groupIndex]->SystemStatus == S_BOOTING)
  1075. {
  1076. isSelfTestPass = false;
  1077. }
  1078. }
  1079. if (isSelfTestPass)
  1080. ShmPsuData->Work_Step = _WORK_CHARGING;
  1081. sleep(1);
  1082. }
  1083. break;
  1084. case _WORK_CHARGING:
  1085. {
  1086. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  1087. // 低 Priority 的指令
  1088. if (time > 1500)
  1089. {
  1090. isCharging = false;
  1091. isWaitingAver = false;
  1092. isReadToCharging = false;
  1093. CanAverageCharging = true;
  1094. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1095. {
  1096. // Pooling Status
  1097. //GetStatus(index);
  1098. // 取得模塊輸出額定電流能力
  1099. GetModuleIavailable(index);
  1100. if (chargingInfo[index]->SystemStatus == S_CHARGING)
  1101. {
  1102. isCharging = true;
  1103. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_PREPARE_M_TO_A)
  1104. {
  1105. if (toAverVolPoint > 0 &&
  1106. toAverVolPoint == (chargingInfo[index]->EvBatterytargetCurrent * 10))
  1107. {
  1108. // 欲最大充 -> 均充需要等待充電中的輸出電流拉高到目標電流
  1109. if ((chargingInfo[index]->PresentChargingCurrent * 10) >=
  1110. (chargingInfo[index]->EvBatterytargetCurrent * 10) - CHK_CUR_RANGE)
  1111. {
  1112. if (toAverVolCount == 0)
  1113. isWaitingAver = true;
  1114. else
  1115. toAverVolCount--;
  1116. }
  1117. }
  1118. else
  1119. {
  1120. toAverVolPoint = (chargingInfo[index]->EvBatterytargetCurrent * 10);
  1121. toAverVolCount = 3;
  1122. }
  1123. }
  1124. else
  1125. {
  1126. toAverVolPoint = 0;
  1127. toAverVolCount = 3;
  1128. }
  1129. }
  1130. if ((chargingInfo[index]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[index]->SystemStatus <= S_CHARGING) ||
  1131. (chargingInfo[index]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[index]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  1132. {
  1133. isReadToCharging = true;
  1134. }
  1135. if (chargingInfo[index]->DeratingChargingCurrent < STOP_CURRENT)
  1136. {
  1137. CanAverageCharging = false;
  1138. }
  1139. }
  1140. gettimeofday(&_cmdSubPriority_time, NULL);
  1141. CheckSmartChargingStep(isWaitingAver, isCharging, CanAverageCharging);
  1142. }
  1143. for (byte groupIndex = 0; groupIndex < _gunCount; groupIndex++)
  1144. {
  1145. // 取系統總輸出能力
  1146. GetModuleCap(groupIndex);
  1147. // 針對各槍當前狀態,傳送需要回傳的資料指令
  1148. if (((chargingInfo[groupIndex]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[groupIndex]->SystemStatus <= S_CHARGING) && chargingInfo[groupIndex]->RelayK1K2Status) ||
  1149. (chargingInfo[groupIndex]->SystemStatus >= S_PREPARING_FOR_EVSE && chargingInfo[groupIndex]->SystemStatus <= S_CHARGING && chargingInfo[groupIndex]->Type == _Type_GB) ||
  1150. (chargingInfo[groupIndex]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[groupIndex]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  1151. {
  1152. if (time > 1500)
  1153. {
  1154. if (chargingInfo[groupIndex]->FireChargingVoltage > 0 &&
  1155. evseOutVol != (chargingInfo[groupIndex]->FireChargingVoltage / 10))
  1156. {
  1157. evseOutVol = (chargingInfo[groupIndex]->FireChargingVoltage / 10);
  1158. PRINTF_FUNC("groupIndex = %d, ev need vol = %f, evse output vol = %f \n", groupIndex,
  1159. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1160. chargingInfo[groupIndex]->FireChargingVoltage);
  1161. }
  1162. if ((chargingInfo[groupIndex]->PresentChargingCurrent * 10) > 0 &&
  1163. evseOutCur != (chargingInfo[groupIndex]->PresentChargingCurrent * 10))
  1164. {
  1165. evseOutCur = (chargingInfo[groupIndex]->PresentChargingCurrent * 10);
  1166. PRINTF_FUNC("groupIndex = %d, evse output cur = %f \n", groupIndex,
  1167. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10),
  1168. (chargingInfo[groupIndex]->PresentChargingCurrent * 10));
  1169. }
  1170. }
  1171. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  1172. {
  1173. // PRINTF_FUNC("index = %d, SystemStatus = %d, Ev = %f, curCur = %f \n", groupIndex,
  1174. // chargingInfo[groupIndex]->SystemStatus, chargingInfo[groupIndex]->EvBatterytargetCurrent,
  1175. // (chargingInfo[groupIndex]->PresentChargingCurrent * 10));
  1176. // 智能判斷 Start -----------------------------------------------------------
  1177. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_GET_NEW_CAP &&
  1178. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A)
  1179. {
  1180. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_GET_NEW_CAP)
  1181. {
  1182. //PRINTF_FUNC("group = %d, GroupPresentOutputCurrent = %d \n",
  1183. // groupIndex, ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent);
  1184. if (chargingInfo[groupIndex]->DividChargingCurrent == 0)
  1185. {
  1186. chargingInfo[groupIndex]->DividChargingCurrent = ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent;
  1187. }
  1188. }
  1189. PRINTF_FUNC("Index = %d, DividChargingCurrent = %f \n", groupIndex, chargingInfo[groupIndex]->DividChargingCurrent);
  1190. }
  1191. else
  1192. {
  1193. chargingInfo[groupIndex]->DividChargingCurrent = 0;
  1194. }
  1195. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_GET_NEW_CAP)
  1196. {
  1197. if (ShmPsuData->SystemAvailableCurrent != chargingInfo[groupIndex]->AvailableChargingCurrent)
  1198. {
  1199. // 車端要求電流為該充電槍的額定輸出電流的範圍內
  1200. if ((chargingInfo[groupIndex]->EvBatterytargetCurrent * 10) <= ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent + DERATING_GAP ||
  1201. deratingKeepCount >= DERATING_COUNT)
  1202. {
  1203. // 車端降載完成
  1204. PRINTF_FUNC("Index = %d, newEvCurrent = %f \n", groupIndex, (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1205. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_ADJUST_M_TO_A============= Step 3 \n");
  1206. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_ADJUST_M_TO_A;
  1207. gettimeofday(&_derating_time, NULL);
  1208. deratingKeepCount = 0;
  1209. }
  1210. else
  1211. {
  1212. deratingKeepCount++;
  1213. PRINTF_FUNC("** Step 2 ** : Index = %d, EvBatterytargetCurrent = %f, TargetCurrent = %d, Count = %d \n",
  1214. groupIndex,
  1215. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10),
  1216. (ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent + DERATING_GAP),
  1217. deratingKeepCount);
  1218. }
  1219. }
  1220. }
  1221. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_ADJUST_M_TO_A)
  1222. {
  1223. bool isChanged = false;
  1224. if (chargingInfo[groupIndex]->AvailableChargingCurrent <= (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10))
  1225. {
  1226. PRINTF_FUNC("** _REASSIGNED_ADJUST_M_TO_A ** Gun_%d, PresentChargingCurrent = %f, AvailableChargingCurrent = %f, EvBatterytargetCurrent = %f \n", groupIndex,
  1227. (chargingInfo[groupIndex]->PresentChargingCurrent * 10),
  1228. chargingInfo[groupIndex]->AvailableChargingCurrent,
  1229. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1230. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1231. {
  1232. if (chargingInfo[subIndex]->SystemStatus == S_REASSIGN)
  1233. {
  1234. // 當 B 模塊輸出電流小於 5A 及退開 relay
  1235. if ((ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent) <= 50)
  1236. isChanged = true;
  1237. break;
  1238. }
  1239. }
  1240. }
  1241. else if (((chargingInfo[groupIndex]->PresentChargingCurrent * 10) >= ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent - CHK_CUR_RANGE) &&
  1242. ((chargingInfo[groupIndex]->PresentChargingCurrent * 10) <= ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent + CHK_CUR_RANGE))
  1243. {
  1244. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1245. {
  1246. if (chargingInfo[subIndex]->SystemStatus == S_REASSIGN)
  1247. {
  1248. if ((ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent) <= CHK_CUR_RANGE)
  1249. isChanged = true;
  1250. break;
  1251. }
  1252. }
  1253. }
  1254. if (isChanged)
  1255. {
  1256. PRINTF_FUNC("** _REASSIGNED_ADJUST_M_TO_A To 4** Gun_%d, PresentChargingCurrent = %f, GroupPresentOutputCurrent = %d \n", groupIndex,
  1257. (chargingInfo[groupIndex]->PresentChargingCurrent * 10),
  1258. ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent);
  1259. // 輸出端與車端要求電流接近
  1260. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_RELAY_M_TO_A============= Step 4 \n");
  1261. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_RELAY_M_TO_A;
  1262. }
  1263. else
  1264. {
  1265. if ((GetTimeoutValue(_derating_time) / 1000) > 1000)
  1266. {
  1267. gettimeofday(&_derating_time, NULL);
  1268. }
  1269. }
  1270. }
  1271. //if (ShmPsuData->SystemAvailablePower > 0)
  1272. {
  1273. // 調整輸出電流 : 漸進調整方式
  1274. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_GET_NEW_CAP &&
  1275. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag < _REASSIGNED_RELAY_M_TO_A)
  1276. {
  1277. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_ADJUST_M_TO_A)
  1278. {
  1279. // 當前充電中的目標電壓
  1280. float targetVol = (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10);
  1281. byte reassignIndex = ELEMENT_NOT_FIND;
  1282. // 找到等待分配的槍
  1283. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1284. {
  1285. if (chargingInfo[subIndex]->SystemStatus == S_REASSIGN)
  1286. {
  1287. reassignIndex = subIndex;
  1288. break;
  1289. }
  1290. }
  1291. if (reassignIndex != ELEMENT_NOT_FIND)
  1292. {
  1293. if ((GetTimeoutValue(_derating_time) / 1000) <= 50)
  1294. {
  1295. // A 模塊維持當前電壓電流
  1296. //PRINTF_FUNC("A : index = %d, cur = %d \n", groupIndex, ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent);
  1297. //PresentOutputVol(groupIndex, targetVol, ShmPsuData->PsuGroup[groupIndex].GroupPresentOutputCurrent);
  1298. //PRINTF_FUNC("set out (%d) value = %f******** 1 \n", groupIndex, chargingInfo[groupIndex]->EvBatterytargetCurrent);
  1299. PresentOutputVol(groupIndex, targetVol, (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1300. // }
  1301. //
  1302. // if ((GetTimeoutValue(_derating_time) / 1000) <= 50)
  1303. // {
  1304. // 直接拉掉 B 模塊的電流
  1305. //PRINTF_FUNC("B : index = %d, cur = %d \n", reassignIndex, CHK_CUR_RANGE);
  1306. //PRINTF_FUNC("set out (%d) value = %d******** 2 \n", reassignIndex, CHK_CUR_RANGE);
  1307. PresentOutputVol(reassignIndex, targetVol, CHK_CUR_RANGE);
  1308. }
  1309. }
  1310. }
  1311. if ((chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) == 0)
  1312. {
  1313. //PRINTF_FUNC("sys ******** 1 \n");
  1314. bool isNeedToClosePower = false;
  1315. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1316. {
  1317. if (isStartOutputSwitch[index])
  1318. {
  1319. isNeedToClosePower = true;
  1320. }
  1321. isStartOutputSwitch[index] = false;
  1322. }
  1323. if (isNeedToClosePower)
  1324. {
  1325. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  1326. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  1327. }
  1328. }
  1329. }
  1330. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_RELAY_M_TO_A)
  1331. {
  1332. //PRINTF_FUNC("set out (%d) value = %f******** 3 \n", groupIndex, chargingInfo[groupIndex]->EvBatterytargetCurrent);
  1333. PresentOutputVol(groupIndex,
  1334. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1335. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1336. }
  1337. else
  1338. {
  1339. // PRINTF_FUNC("set out (sys) value = %f, smart step = %d******** 4 \n",
  1340. // chargingInfo[groupIndex]->EvBatterytargetCurrent, ShmSysConfigAndInfo->SysInfo.ReAssignedFlag);
  1341. // 該充電槍的目標電壓與目標電流
  1342. PresentOutputVol(SYSTEM_CMD,
  1343. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1344. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1345. if ((chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) == 0)
  1346. {
  1347. //PRINTF_FUNC("sys ******** 2 \n");
  1348. bool isNeedToClosePower = false;
  1349. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1350. {
  1351. if (isStartOutputSwitch[index])
  1352. {
  1353. isNeedToClosePower = true;
  1354. }
  1355. isStartOutputSwitch[index] = false;
  1356. }
  1357. if (isNeedToClosePower)
  1358. {
  1359. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  1360. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  1361. }
  1362. }
  1363. else
  1364. {
  1365. bool isNeedToOpenPower = false;
  1366. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1367. {
  1368. if (!isStartOutputSwitch[index])
  1369. {
  1370. isNeedToOpenPower = true;
  1371. }
  1372. isStartOutputSwitch[index] = true;
  1373. }
  1374. if (isNeedToOpenPower)
  1375. {
  1376. SwitchPower(SYSTEM_CMD, PSU_POWER_ON);
  1377. FlashLed(SYSTEM_CMD, PSU_FLASH_ON);
  1378. }
  1379. }
  1380. }
  1381. }
  1382. }
  1383. else if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  1384. {
  1385. // 智能判斷 Start -----------------------------------------------------------
  1386. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_ADJUST_A_TO_M)
  1387. {
  1388. bool balanceVol = true;
  1389. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1390. {
  1391. if (chargingInfo[subIndex]->SystemStatus == S_IDLE ||
  1392. chargingInfo[subIndex]->SystemStatus == S_RESERVATION)
  1393. {
  1394. // 各群電壓接近平衡
  1395. if (((chargingInfo[subIndex]->PresentChargingVoltage * 10) < (chargingInfo[groupIndex]->PresentChargingVoltage * 10) - ZERO_VOLTAGE) ||
  1396. ((chargingInfo[subIndex]->PresentChargingVoltage * 10) < (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) - CHK_VOL_RANGE))
  1397. {
  1398. PRINTF_FUNC("** _REASSIGNED_ADJUST_A_TO_M ** Gun_%d, PresentChargingVoltage = %f, PresentChargingVoltage_V = %f, EvBatterytargetVoltage = %f \n", subIndex,
  1399. (chargingInfo[subIndex]->PresentChargingVoltage * 10),
  1400. ((chargingInfo[groupIndex]->PresentChargingVoltage * 10) - ZERO_VOLTAGE),
  1401. ((chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) - CHK_VOL_RANGE));
  1402. balanceVol = false;
  1403. }
  1404. break;
  1405. }
  1406. }
  1407. if (balanceVol)
  1408. {
  1409. // 閒置端與車端要求電壓接近
  1410. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_RELAY_A_TO_M============= Step 13 \n");
  1411. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_RELAY_A_TO_M;
  1412. }
  1413. else
  1414. {
  1415. if ((GetTimeoutValue(_max_time) / 1000) > 500)
  1416. {
  1417. gettimeofday(&_max_time, NULL);
  1418. }
  1419. }
  1420. }
  1421. else if(ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_WAITING)
  1422. {
  1423. int idleCurrent = 0;
  1424. int chargingCurrent = 0;
  1425. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1426. {
  1427. if (chargingInfo[subIndex]->SystemStatus == S_IDLE ||
  1428. chargingInfo[subIndex]->SystemStatus == S_RESERVATION ||
  1429. chargingInfo[subIndex]->SystemStatus == S_REASSIGN_CHECK)
  1430. idleCurrent = ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent;
  1431. else
  1432. chargingCurrent = ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent;
  1433. }
  1434. if (idleCurrent >= chargingCurrent - PRE_CHARG_RANGE)
  1435. {
  1436. PRINTF_FUNC("=============Smart Charging_0 : _REASSIGNED_COMP============= Step 15 \n");
  1437. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_COMP;
  1438. }
  1439. else
  1440. {
  1441. if ((GetTimeoutValue(_max_time) / 1000) > 500)
  1442. {
  1443. gettimeofday(&_max_time, NULL);
  1444. }
  1445. }
  1446. }
  1447. if (chargingInfo[groupIndex]->AvailableChargingCurrent > 0)
  1448. {
  1449. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_ADJUST_A_TO_M)
  1450. {
  1451. byte reassignIndex = ELEMENT_NOT_FIND;
  1452. for (byte subIndex = 0; subIndex < ShmPsuData->GroupCount; subIndex++)
  1453. {
  1454. if (chargingInfo[subIndex]->SystemStatus == S_IDLE ||
  1455. chargingInfo[subIndex]->SystemStatus == S_RESERVATION ||
  1456. chargingInfo[subIndex]->SystemStatus == S_REASSIGN_CHECK)
  1457. {
  1458. reassignIndex = subIndex;
  1459. // if ((GetTimeoutValue(_max_time) / 1000) <= 50)
  1460. // {
  1461. // // 閒置模塊升壓,另對剛分配近來的模塊,預上升電流值 (preChargingCur)
  1462. // PresentOutputVol(subIndex,
  1463. // chargingInfo[groupIndex]->EvBatterytargetVoltage,
  1464. // ZERO_CURRENT + preChargingTarget);
  1465. // }
  1466. //PRINTF_FUNC("preChargingCur = %d \n", preChargingCur);
  1467. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_WAITING)
  1468. {
  1469. preChargingCur = ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent;
  1470. }
  1471. else
  1472. preChargingCur = 0;
  1473. }
  1474. else
  1475. {
  1476. //PRINTF_FUNC("CurOutputCurrent = %d \n", ShmPsuData->PsuGroup[subIndex].GroupPresentOutputCurrent - preChargingCur);
  1477. // 充電中的模塊維持輸出
  1478. // if ((GetTimeoutValue(_max_time) / 1000) <= 50)
  1479. // {
  1480. // PresentOutputVol(subIndex,
  1481. // chargingInfo[subIndex]->EvBatterytargetVoltage,
  1482. // chargingInfo[subIndex]->EvBatterytargetCurrent - preChargingCur);
  1483. // }
  1484. if ((ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_WAITING) &&
  1485. (preChargingCur >= preChargingTarget - ZERO_CURRENT))
  1486. preChargingTarget += PRE_CHARG_STEP_CUR;
  1487. if (preChargingTarget >= (chargingInfo[subIndex]->EvBatterytargetCurrent * 10) / 2)
  1488. preChargingTarget = (chargingInfo[subIndex]->EvBatterytargetCurrent * 10) / 2;
  1489. }
  1490. }
  1491. if (reassignIndex != ELEMENT_NOT_FIND)
  1492. {
  1493. if ((GetTimeoutValue(_max_time) / 1000) <= 50)
  1494. {
  1495. //PRINTF_FUNC("set out (%d) value = %d******** 5 \n", reassignIndex, ZERO_CURRENT + preChargingTarget);
  1496. // 閒置模塊升壓,另對剛分配近來的模塊,預上升電流值 (preChargingCur)
  1497. PresentOutputVol(reassignIndex,
  1498. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1499. ZERO_CURRENT + preChargingTarget);
  1500. byte _ovCahrgingCur = 0;
  1501. if (preChargingCur > PRE_CHARG_STEP_CUR)
  1502. _ovCahrgingCur = PRE_CHARG_STEP_CUR;
  1503. //PRINTF_FUNC("set out (%d) value = %f******** 6 \n", groupIndex, chargingInfo[groupIndex]->EvBatterytargetCurrent - preChargingCur - _ovCahrgingCur);
  1504. PresentOutputVol(groupIndex,
  1505. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1506. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10) - preChargingCur - _ovCahrgingCur);
  1507. }
  1508. }
  1509. if ((chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) == 0)
  1510. {
  1511. //PRINTF_FUNC("sys ******** 3 \n");
  1512. bool isNeedToClosePower = false;
  1513. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1514. {
  1515. if (isStartOutputSwitch[index])
  1516. {
  1517. isNeedToClosePower = true;
  1518. }
  1519. isStartOutputSwitch[index] = false;
  1520. }
  1521. if (isNeedToClosePower)
  1522. {
  1523. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  1524. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  1525. }
  1526. }
  1527. else
  1528. {
  1529. bool isNeedToOpenPower = false;
  1530. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1531. {
  1532. if (!isStartOutputSwitch[index])
  1533. {
  1534. isNeedToOpenPower = true;
  1535. }
  1536. isStartOutputSwitch[index] = true;
  1537. }
  1538. if (isNeedToOpenPower)
  1539. {
  1540. SwitchPower(SYSTEM_CMD, PSU_POWER_ON);
  1541. FlashLed(SYSTEM_CMD, PSU_FLASH_ON);
  1542. }
  1543. }
  1544. }
  1545. else
  1546. {
  1547. //PRINTF_FUNC("set out (%d) value = %f******** 7 \n", groupIndex, chargingInfo[groupIndex]->EvBatterytargetCurrent);
  1548. PresentOutputVol(groupIndex,
  1549. (chargingInfo[groupIndex]->EvBatterytargetVoltage * 10),
  1550. (chargingInfo[groupIndex]->EvBatterytargetCurrent * 10));
  1551. if ((chargingInfo[groupIndex]->EvBatterytargetVoltage * 10) == 0)
  1552. {
  1553. //PRINTF_FUNC("%d ******** 4 \n", groupIndex);
  1554. if (isStartOutputSwitch[groupIndex])
  1555. {
  1556. isStartOutputSwitch[groupIndex] = false;
  1557. SwitchPower(groupIndex, PSU_POWER_OFF);
  1558. FlashLed(groupIndex, PSU_FLASH_NORMAL);
  1559. }
  1560. }
  1561. else
  1562. {
  1563. if (!isStartOutputSwitch[groupIndex])
  1564. {
  1565. isStartOutputSwitch[groupIndex] = true;
  1566. SwitchPower(groupIndex, PSU_POWER_ON);
  1567. FlashLed(groupIndex, PSU_FLASH_ON);
  1568. }
  1569. }
  1570. }
  1571. }
  1572. }
  1573. }
  1574. else if (chargingInfo[groupIndex]->SystemStatus >= S_TERMINATING &&
  1575. chargingInfo[groupIndex]->SystemStatus <= S_COMPLETE)
  1576. {
  1577. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  1578. {
  1579. if (!isCharging)
  1580. {
  1581. //PRINTF_FUNC("sys ******** 5 \n");
  1582. bool isNeedToClosePower = false;
  1583. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1584. {
  1585. if (isStartOutputSwitch[index])
  1586. {
  1587. isNeedToClosePower = true;
  1588. }
  1589. isStartOutputSwitch[index] = false;
  1590. }
  1591. if (isNeedToClosePower)
  1592. {
  1593. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  1594. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  1595. }
  1596. if (chargingInfo[groupIndex]->SystemStatus == S_COMPLETE)
  1597. {
  1598. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_PREPARE_M_TO_A &&
  1599. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A)
  1600. {
  1601. // 代表在切換的過程中,停止充電了
  1602. if ((chargingInfo[groupIndex]->PresentChargingCurrent * 10) <= STOP_CURRENT)
  1603. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_RELAY_M_TO_A;
  1604. }
  1605. }
  1606. }
  1607. else if (chargingInfo[groupIndex]->SystemStatus == S_COMPLETE)
  1608. {
  1609. // 代表充電的槍依舊在充電,欲進入充電的槍取消充電了
  1610. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_PREPARE_M_TO_A &&
  1611. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag <= _REASSIGNED_RELAY_M_TO_A)
  1612. {
  1613. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  1614. }
  1615. }
  1616. }
  1617. else if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  1618. {
  1619. if (!isReadToCharging)
  1620. {
  1621. bool isNeedToClosePower = false;
  1622. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1623. {
  1624. if (isStartOutputSwitch[index])
  1625. {
  1626. isNeedToClosePower = true;
  1627. }
  1628. isStartOutputSwitch[index] = false;
  1629. }
  1630. if (isNeedToClosePower)
  1631. {
  1632. SwitchPower(SYSTEM_CMD, PSU_POWER_OFF);
  1633. FlashLed(SYSTEM_CMD, PSU_FLASH_NORMAL);
  1634. }
  1635. }
  1636. else
  1637. {
  1638. if (isStartOutputSwitch[groupIndex])
  1639. {
  1640. isStartOutputSwitch[groupIndex] = false;
  1641. SwitchPower(groupIndex, PSU_POWER_OFF);
  1642. FlashLed(groupIndex, PSU_FLASH_NORMAL);
  1643. }
  1644. }
  1645. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_WAITING)
  1646. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_COMP;
  1647. else
  1648. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  1649. }
  1650. }
  1651. else if ((chargingInfo[groupIndex]->SystemStatus >= S_PREPARNING && chargingInfo[groupIndex]->SystemStatus <= S_PREPARING_FOR_EV) &&
  1652. ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  1653. {
  1654. //PRINTF_FUNC("%d ******** 7 \n", groupIndex);
  1655. if (isStartOutputSwitch[groupIndex])
  1656. {
  1657. isStartOutputSwitch[groupIndex] = false;
  1658. SwitchPower(groupIndex, PSU_POWER_OFF);
  1659. FlashLed(groupIndex, PSU_FLASH_NORMAL);
  1660. }
  1661. }
  1662. }
  1663. break;
  1664. }
  1665. case _TEST_MODE:
  1666. {
  1667. // 在測試模式中,保持與模塊的通訊
  1668. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  1669. if (time > 1500)
  1670. {
  1671. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  1672. {
  1673. // 取系統總輸出能力
  1674. GetModuleCap(index);
  1675. }
  1676. gettimeofday(&_cmdSubPriority_time, NULL);
  1677. }
  1678. byte _switch = 0x00;
  1679. if ((chargingInfo[0]->EvBatterytargetVoltage * 10) > 0 && (chargingInfo[0]->EvBatterytargetCurrent * 10) > 0)
  1680. _switch = 0x01;
  1681. for (byte _groupCount_1 = 0; _groupCount_1 < conn_1_count; _groupCount_1++)
  1682. {
  1683. SetDirModulePresentOutput(connector_1[_groupCount_1],
  1684. (chargingInfo[0]->EvBatterytargetVoltage * 10),
  1685. (chargingInfo[0]->EvBatterytargetCurrent * 10),
  1686. _switch);
  1687. }
  1688. for (byte _groupCount_2 = 0; _groupCount_2 < conn_2_count; _groupCount_2++)
  1689. {
  1690. SetDirModulePresentOutput(connector_2[_groupCount_2],
  1691. (chargingInfo[0]->EvBatterytargetVoltage * 10),
  1692. (chargingInfo[0]->EvBatterytargetCurrent * 10),
  1693. _switch);
  1694. }
  1695. }
  1696. break;
  1697. }
  1698. usleep(20000);
  1699. }
  1700. return FAIL;
  1701. }