ReadCmdline.c 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372
  1. /*
  2. * Main.c
  3. *
  4. * Created on: 2019年8月6日
  5. * Author: 7564
  6. */
  7. #include <sys/time.h>
  8. #include <sys/timeb.h>
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. #include <sys/types.h>
  12. #include <sys/ioctl.h>
  13. #include <sys/socket.h>
  14. #include <sys/ipc.h>
  15. #include <sys/shm.h>
  16. #include <sys/shm.h>
  17. #include <sys/mman.h>
  18. #include <linux/wireless.h>
  19. #include <arpa/inet.h>
  20. #include <netinet/in.h>
  21. #include <unistd.h>
  22. #include <stdarg.h>
  23. #include <stdio.h> /*標準輸入輸出定義*/
  24. #include <stdlib.h> /*標準函數庫定義*/
  25. #include <unistd.h> /*Unix 標準函數定義*/
  26. #include <fcntl.h> /*檔控制定義*/
  27. #include <termios.h> /*PPSIX 終端控制定義*/
  28. #include <errno.h> /*錯誤號定義*/
  29. #include <errno.h>
  30. #include <string.h>
  31. #include <time.h>
  32. #include <ctype.h>
  33. #include <ifaddrs.h>
  34. #include <math.h>
  35. #include <stdbool.h>
  36. #include "../../define.h"
  37. #include "Config.h"
  38. #include "Module_EvComm.h"
  39. #include "Common.h"
  40. typedef unsigned char byte;
  41. #define NO_DEFINE 255
  42. #define DEFAULT_AC_INDEX 2
  43. #define TTY_PATH "/dev/tty"
  44. #define STTY_US "stty raw -echo -F "
  45. #define STTY_DEF "stty -raw echo -F "
  46. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  47. struct StatusCodeData *ShmStatusCodeData;
  48. struct PrimaryMcuData *ShmPrimaryMcuData;
  49. struct CHAdeMOData *ShmCHAdeMOData;
  50. struct CcsData *ShmCcsData;
  51. struct GBTData *ShmGBTData;
  52. struct FanModuleData *ShmFanModuleData;
  53. struct RelayModuleData *ShmRelayModuleData;
  54. struct LedModuleData *ShmLedModuleData;
  55. struct PsuData *ShmPsuData;
  56. ChargerInfoData *ShmChargerInfo;
  57. PsuPositionInfoData *ShmPsuPosition;
  58. PsuGroupingInfoData *ShmPsuGrouping;
  59. struct OCPP16Data *ShmOCPP16Data;
  60. struct OCPP20Data *ShmOCPP20Data;
  61. struct ChargingInfoData *_chargingData[CONNECTOR_QUANTITY];
  62. struct ChargingInfoData *ac_chargingInfo[AC_QUANTITY];
  63. char *msg = "state : get gun state (index) \n"
  64. "card : scanning card (x) : \n"
  65. "gun : get gun plugit state (index) \n"
  66. "lock : get gun locked state (index) \n"
  67. "self : self test state (x) \n"
  68. "ver : ver of board (407 or index or rb or fan) \n"
  69. "ac : get ac relay state (x) \n"
  70. "gunchg: set gun start charging \n"
  71. "gunstp: set gun stop charging \n"
  72. "gunext: extend gun capability \n";
  73. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  74. {
  75. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  76. {
  77. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  78. {
  79. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  80. return true;
  81. }
  82. }
  83. for (byte index = 0; index < CCS_QUANTITY; index++)
  84. {
  85. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  86. {
  87. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  88. return true;
  89. }
  90. }
  91. for (byte index = 0; index < GB_QUANTITY; index++)
  92. {
  93. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  94. {
  95. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  96. return true;
  97. }
  98. }
  99. if(GENERAL_GUN_QUANTITY > 0 && target < GENERAL_GUN_QUANTITY)
  100. {
  101. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ConnectorInfo[target].GeneralChargingData;
  102. return true;
  103. }
  104. return false;
  105. }
  106. bool FindAcChargingInfoData(byte target, struct ChargingInfoData **acChargingData)
  107. {
  108. if (target < AC_QUANTITY)
  109. {
  110. acChargingData[target] = &ShmSysConfigAndInfo->SysInfo.AcChargingData[target];
  111. return true;
  112. }
  113. return false;
  114. }
  115. int InitShareMemory()
  116. {
  117. int result = PASS;
  118. int MeterSMId;
  119. //initial ShmSysConfigAndInfo
  120. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  121. {
  122. result = FAIL;
  123. }
  124. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  125. {
  126. result = FAIL;
  127. }
  128. else
  129. {}
  130. //initial ShmStatusCodeData
  131. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  132. {
  133. result = FAIL;
  134. }
  135. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  136. {
  137. result = FAIL;
  138. }
  139. else
  140. {}
  141. if (CHAdeMO_QUANTITY > 0) {
  142. if ((MeterSMId = shmget(ShmCHAdeMOCommKey, sizeof(struct CHAdeMOData),
  143. IPC_CREAT | 0777)) < 0) {
  144. result = FAIL;
  145. } else if ((ShmCHAdeMOData = shmat(MeterSMId, NULL, 0))
  146. == (void *) -1) {
  147. result = FAIL;
  148. } else {
  149. }
  150. }
  151. if (CCS_QUANTITY > 0) {
  152. if ((MeterSMId = shmget(ShmCcsCommKey, sizeof(struct CcsData),
  153. IPC_CREAT | 0777)) < 0) {
  154. result = FAIL;
  155. } else if ((ShmCcsData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  156. result = FAIL;
  157. } else {
  158. }
  159. }
  160. if (GB_QUANTITY > 0) {
  161. if ((MeterSMId = shmget(ShmGBTCommKey, sizeof(struct GBTData),
  162. IPC_CREAT | 0777)) < 0) {
  163. return 0;
  164. } else if ((ShmGBTData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  165. return 0;
  166. }
  167. memset(ShmGBTData, 0, sizeof(struct GBTData));
  168. }
  169. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), IPC_CREAT | 0777)) < 0)
  170. {
  171. result = FAIL;
  172. }
  173. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  174. {
  175. result = FAIL;
  176. }
  177. if ((MeterSMId = shmget(ShmFanBdKey, sizeof(struct FanModuleData), IPC_CREAT | 0777)) < 0)
  178. {
  179. result = FAIL;
  180. }
  181. else if ((ShmFanModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  182. {
  183. result = FAIL;
  184. }
  185. if ((MeterSMId = shmget(ShmRelayBdKey, sizeof(struct RelayModuleData), IPC_CREAT | 0777)) < 0)
  186. {
  187. result = FAIL;
  188. }
  189. else if ((ShmRelayModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  190. {
  191. result = FAIL;
  192. }
  193. if ((MeterSMId = shmget(ShmLedBdKey, sizeof(struct LedModuleData), 0777)) < 0)
  194. {
  195. result = FAIL;
  196. }
  197. else if ((ShmLedModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  198. {
  199. result = FAIL;
  200. }
  201. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), IPC_CREAT | 0777)) < 0)
  202. {
  203. result = FAIL;
  204. }
  205. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  206. {
  207. result = FAIL;
  208. }
  209. if ((MeterSMId = shmget(SM_ChargerInfoKey, sizeof(ChargerInfoData), IPC_CREAT | 0777)) < 0)
  210. {
  211. result = FAIL;
  212. }
  213. else if ((ShmChargerInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  214. {
  215. result = FAIL;
  216. }
  217. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  218. {
  219. result = FAIL;
  220. }
  221. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  222. {
  223. result = FAIL;
  224. }
  225. if ((MeterSMId = shmget(ShmOcpp20ModuleKey, sizeof(struct OCPP20Data), 0777)) < 0)
  226. {
  227. result = FAIL;
  228. }
  229. else if ((ShmOCPP20Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  230. {
  231. result = FAIL;
  232. }
  233. if(result == PASS)
  234. {
  235. ShmPsuPosition = &ShmChargerInfo->PsuPosition;
  236. ShmPsuGrouping = &ShmChargerInfo->PsuGrouping;
  237. }
  238. return result;
  239. }
  240. void RunStatusProc(char *v1, char *v2)
  241. {
  242. printf("OrderCharging = %d \n", ShmSysConfigAndInfo->SysInfo.OrderCharging);
  243. printf("WaitForPlugit = %d \n", ShmSysConfigAndInfo->SysInfo.WaitForPlugit);
  244. if (strcmp(v1, "ac") == 0)
  245. {
  246. if (!FindAcChargingInfoData(0, &ac_chargingInfo[0]))
  247. {
  248. printf("FindChargingInfoData (AC) false \n");
  249. }
  250. printf("AC Status = %d \n", ac_chargingInfo[0]->ConnectorPlugIn);
  251. return;
  252. }
  253. int _index = atoi(v1);
  254. if (_index <= 1)
  255. {
  256. if (!FindChargingInfoData(_index, &_chargingData[0]))
  257. {
  258. printf ("FindChargingInfoData error\n");
  259. return;
  260. }
  261. if (strcmp(v2, "-1") == 0 || strcmp(v2, "") == 0)
  262. {
  263. // get
  264. printf ("index = %x, status = %x (%d)\n", _index, _chargingData[_index]->SystemStatus, _chargingData[_index]->IsAvailable);
  265. printf ("SystemTimeoutFlag = %d, PageIndex = %d\n",
  266. ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag, ShmSysConfigAndInfo->SysInfo.PageIndex);
  267. printf("ConnectorAlarmCode = %s \n", _chargingData[_index]->ConnectorAlarmCode);
  268. printf("EvConnAlarmCode = %s \n", _chargingData[_index]->EvConnAlarmCode);
  269. printf("RemotenAlarmCode = %s \n", ShmSysConfigAndInfo->SysInfo.ConnectorInfo[_index].RemotenAlarmCode);
  270. }
  271. else
  272. {
  273. // set
  274. _chargingData[_index]->SystemStatus = atoi(v2);
  275. }
  276. }
  277. else
  278. {
  279. if (!FindAcChargingInfoData(0, &ac_chargingInfo[0]))
  280. {
  281. printf("FindChargingInfoData (AC) false \n");
  282. }
  283. if (strcmp(v2, "-1") == 0 || strcmp(v2, "") == 0)
  284. {
  285. // get
  286. printf ("AC Type, status = %x (%d)\n", ac_chargingInfo[0]->SystemStatus, ac_chargingInfo[0]->IsAvailable);
  287. }
  288. else
  289. {
  290. // set
  291. ac_chargingInfo[0]->SystemStatus = atoi(v2);
  292. }
  293. }
  294. }
  295. void RunCardProc(char *v1, char *v2)
  296. {
  297. if (strcmp(v1, "-1") == 0 || strcmp(v1, "") == 0)
  298. {
  299. if (ShmSysConfigAndInfo->SysInfo.WaitForPlugit)
  300. {
  301. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = 0x00;
  302. printf ("SysInfo.WaitForPlugit = %x \n", ShmSysConfigAndInfo->SysInfo.WaitForPlugit);
  303. }
  304. else
  305. {
  306. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = 0x01;
  307. printf ("SysInfo.WaitForPlugit = %x \n", ShmSysConfigAndInfo->SysInfo.WaitForPlugit);
  308. }
  309. }
  310. else
  311. {
  312. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  313. memcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, v1, strlen(v1));
  314. ShmSysConfigAndInfo->SysConfig.UserId[strlen(v1)] = '\0';
  315. printf("StartUserId = %s \n", ShmSysConfigAndInfo->SysConfig.UserId);
  316. }
  317. }
  318. void RunGunPlugitProc(char *v1, char *v2)
  319. {
  320. if (strcmp(v1, "ac") == 0)
  321. {
  322. if (!FindAcChargingInfoData(0, &ac_chargingInfo[0]))
  323. {
  324. printf("FindChargingInfoData (AC) false \n");
  325. }
  326. if (strcmp(v2, "-1") == 0 || strcmp(v2, "") == 0)
  327. {
  328. // get
  329. printf("ConnectorPlugIn = %d \n", ac_chargingInfo[0]->ConnectorPlugIn);
  330. }
  331. else
  332. {
  333. // set
  334. ac_chargingInfo[0]->ConnectorPlugIn = atoi(v2);
  335. }
  336. return;
  337. }
  338. int _index = atoi(v1);
  339. if (!FindChargingInfoData(_index, &_chargingData[0]))
  340. {
  341. printf("FindChargingInfoData error\n");
  342. return;
  343. }
  344. if (strcmp(v2, "-1") == 0 || strcmp(v2, "") == 0)
  345. {
  346. // get
  347. printf("index = %x, plug it = %x\n", _index, _chargingData[_index]->ConnectorPlugIn);
  348. }
  349. else
  350. {
  351. // set
  352. _chargingData[_index]->ConnectorPlugIn = atoi(v2);
  353. }
  354. }
  355. void GetGunLockStatusProc(char *v1, char *v2)
  356. {
  357. int _index = atoi(v1);
  358. if (!FindChargingInfoData(_index, &_chargingData[0]))
  359. {
  360. printf("FindChargingInfoData error\n");
  361. return;
  362. }
  363. if (strcmp(v2, "-1") != 0 && strcmp(v2, "") != 0)
  364. {
  365. _chargingData[_index]->GunLocked = atoi(v2);
  366. }
  367. printf("Gun Locked Status = %d \n", _chargingData[_index]->GunLocked);
  368. }
  369. void SetSystemIDProc()
  370. {
  371. char *systemId = "Alston_Test";
  372. memcpy(&ShmSysConfigAndInfo->SysConfig.SystemId, systemId, strlen(systemId));
  373. }
  374. void RunSelfProc()
  375. {
  376. printf("self test status = %x\n", ShmSysConfigAndInfo->SysInfo.SelfTestSeq);
  377. }
  378. void ShowFwVer(void)
  379. {
  380. printf("\r\nPower Cabinet, Model Name: %s, SN: %s", ShmSysConfigAndInfo->SysConfig.ModelName, ShmSysConfigAndInfo->SysConfig.SerialNumber);
  381. printf("\r\n Csu Bootload: %s", ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev);
  382. //printf("\r\n Csu Kernel: %s", ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev);
  383. printf("\r\n Csu Kernel: ");
  384. for(int i = 0; i < strlen((char *)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev); i++)
  385. {
  386. if(ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev[i] != '\r' && ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev[i] != '\n')
  387. {
  388. printf("%c", ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev[i]);
  389. }
  390. }
  391. printf("\r\n Csu Root Fs: %s", ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  392. printf("\r\n Csu Primary: %s", ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev);
  393. printf("\r\n Fan Module: %s", ShmSysConfigAndInfo->SysInfo.FanModuleFwRev);
  394. printf("\r\n Relay1 Module: %s", ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev);
  395. printf("\r\n Relay2 Module: %s", ShmSysConfigAndInfo->SysInfo.Relay2ModuleFwRev);
  396. for(int i = 0; i < ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity; i++)
  397. {
  398. printf("\r\n\r\nDispenser[%d] Status: %d", i, ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus);
  399. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus != _DS_None &&
  400. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus != _DS_Timeout)
  401. {
  402. printf(", Model Name: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ModelName);
  403. printf("\r\n Csu Bootload: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuBootLoadFwRev);
  404. //printf("\r\n Csu Kernel: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev);
  405. printf("\r\n Csu Kernel: ");
  406. for(int j = 0; j < strlen((char *)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev); j++)
  407. {
  408. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev[j] != '\r' &&
  409. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev[j] != '\n')
  410. {
  411. printf("%c", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev[j]);
  412. }
  413. }
  414. printf("\r\n Csu Root Fs: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuRootFsFwRev);
  415. printf("\r\n Csu Primary: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuPrimFwRev);
  416. printf("\r\n Fan Module: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].FanModuleFwRev);
  417. printf("\r\n Relay Module: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].RelayModuleFwRev);
  418. printf("\r\n Connector 1: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector1FwRev);
  419. printf("\r\n Connector 2: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector2FwRev);
  420. printf("\r\n Led Module: %s", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LedModuleFwRev);
  421. }
  422. }
  423. printf("\r\n\r\n");
  424. }
  425. void GetFwVerProc(char *v1)
  426. {
  427. if (strcmp(v1, "407") == 0)
  428. {
  429. printf("407 FW Version = %s \n", ShmPrimaryMcuData->version);
  430. }
  431. else if (strcmp(v1, "0") == 0 || strcmp(v1, "1") == 0 || strcmp(v1, "2") == 0 || strcmp(v1, "3") == 0)
  432. {
  433. int _index = atoi(v1);
  434. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[_index].Enable)
  435. {
  436. int dispenser = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[_index].ParentDispensetIndex;
  437. int ParentIndex = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[_index].GeneralChargingData.Index;
  438. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[dispenser].LocalStatus != _DS_None &&
  439. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[dispenser].LocalStatus != _DS_Timeout)
  440. {
  441. if(ParentIndex == 0)
  442. {
  443. printf("Gun %d FW Version = %s \n", _index, ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[dispenser].Connector1FwRev);
  444. }
  445. else
  446. {
  447. printf("Gun %d FW Version = %s \n", _index, ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[dispenser].Connector1FwRev);
  448. }
  449. }
  450. }
  451. else
  452. {
  453. printf("Gun %d is disable\r\n", _index);
  454. }
  455. }
  456. else if (strcmp(v1, "rb") == 0)
  457. {
  458. printf("RB1 Version = %s \n", ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev);
  459. printf("RB2 Version = %s \n", ShmSysConfigAndInfo->SysInfo.Relay2ModuleFwRev);
  460. }
  461. else if (strcmp(v1, "fan") == 0)
  462. {
  463. printf("FAN Version = %s \n", ShmSysConfigAndInfo->SysInfo.FanModuleFwRev);
  464. }
  465. else if (strcmp(v1, "dc") == 0)
  466. {
  467. printf("DC Main Version = %s \n", ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  468. }
  469. else if (strcmp(v1, "led") == 0)
  470. {
  471. printf("LED Version = %s \n", ShmSysConfigAndInfo->SysInfo.LedModuleFwRev);
  472. }
  473. }
  474. void CreateOneError(char *v1)
  475. {
  476. int value = atoi(v1);
  477. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PrimaryStestFail = value;
  478. ShmSysConfigAndInfo->SysConfig.BillingData.isBilling = value;
  479. }
  480. void GetAuthorizeFlag(char *v1)
  481. {
  482. if (strcmp(v1, "-1") == 0|| strcmp(v1, "") == 0)
  483. printf("AuthorizeFlag = %d \n", ShmSysConfigAndInfo->SysInfo.AuthorizeFlag);
  484. else
  485. ShmSysConfigAndInfo->SysInfo.AuthorizeFlag = atoi(v1);
  486. }
  487. void GetOrClearId(char *v1)
  488. {
  489. int _index = atoi(v1);
  490. if (!FindChargingInfoData(_index, &_chargingData[0]))
  491. {
  492. printf("FindChargingInfoData error\n");
  493. return;
  494. }
  495. printf("Card Number = %s \n", _chargingData[_index]->StartUserId);
  496. }
  497. void FwUpdateFlagProc()
  498. {
  499. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = 0x01;
  500. }
  501. void CheckAcStatus(char *v1)
  502. {
  503. if (strcmp(v1, "-1") == 0 || strcmp(v1, "") == 0)
  504. {
  505. printf(" AC Contactor Ctrl: %d\r\n", ShmChargerInfo->Control.RelayCtrl.bits.AcContactor);
  506. printf(" AC Off By Psu : %d\r\n", ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByPsu);
  507. printf(" AC Off ByEmergency: %d\r\n", ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByEmergency);
  508. printf("AC Contactor Status: %d\r\n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
  509. }
  510. else
  511. {
  512. if(system("pidof -s main > /dev/null") != 0)
  513. {
  514. if(strcmp(v1, "0") == 0)
  515. {
  516. ShmChargerInfo->Control.RelayCtrl.bits.AcContactor = false;
  517. ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByPsu = false;
  518. ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByEmergency = false;
  519. printf("Set AC Contactor Off\r\n");
  520. }
  521. else
  522. {
  523. ShmChargerInfo->Control.RelayCtrl.bits.AcContactor = true;
  524. ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByPsu = false;
  525. ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByEmergency = false;
  526. printf("Set AC Contactor On\r\n");
  527. }
  528. }
  529. else
  530. {
  531. printf("main task is running\r\n");
  532. }
  533. }
  534. }
  535. void SetCableChkStatus(char *v1, char *v2)
  536. {
  537. int _index = atoi(v1);
  538. if (!FindChargingInfoData(_index, &_chargingData[0]))
  539. {
  540. printf ("FindChargingInfoData error\n");
  541. return;
  542. }
  543. _chargingData[_index]->GroundFaultStatus = atoi(v2);
  544. }
  545. void SetPowerValue(char *v1, char *v2)
  546. {
  547. int _index = atoi(v1);
  548. float _Current = atof(v2);
  549. // 盲沖的時候才允許使用~
  550. if (_chargingData[_index]->Type != 9)
  551. return;
  552. if (!FindChargingInfoData(_index, &_chargingData[0]))
  553. {
  554. printf ("FindChargingInfoData error\n");
  555. return;
  556. }
  557. _chargingData[_index]->EvBatterytargetCurrent = _Current;
  558. }
  559. void GetSystemInfo()
  560. {
  561. printf ("\r\n ModelName = %s", ShmSysConfigAndInfo->SysConfig.ModelName);
  562. printf ("\r\nSerialNumber = %s", ShmSysConfigAndInfo->SysConfig.SerialNumber);
  563. printf ("\r\nInternetConn = %d", ShmSysConfigAndInfo->SysInfo.InternetConn);
  564. printf ("\r\nMaxChargingPower = %d kW, MaxChargingCurrent = %d A",
  565. ShmSysConfigAndInfo->SysConfig.MaxChargingPower,
  566. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
  567. printf("\r\n\r\n");
  568. }
  569. void ChangeGunNum()
  570. {
  571. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected + 1 < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount)
  572. {
  573. ShmSysConfigAndInfo->SysInfo.CurGunSelected += 1;
  574. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = NO_DEFINE;
  575. }
  576. else if (ShmSysConfigAndInfo->SysConfig.AcConnectorCount > 0 &&
  577. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == NO_DEFINE)
  578. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  579. else
  580. {
  581. ShmSysConfigAndInfo->SysInfo.CurGunSelected = 0;
  582. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = NO_DEFINE;
  583. }
  584. }
  585. void GetGunSelectedNum(char *v1)
  586. {
  587. if (strcmp(v1, "-1") == 0 || strcmp(v1, "") == 0)
  588. {
  589. if (AC_QUANTITY > 0 &&
  590. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc != NO_DEFINE)
  591. {
  592. printf("connector select changed = AC \n");
  593. }
  594. else
  595. printf("connector selected = %d \n", ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  596. }
  597. else
  598. {
  599. int _index = atoi(v1);
  600. if (_index <= 1)
  601. {
  602. ShmSysConfigAndInfo->SysInfo.CurGunSelected = _index;
  603. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = NO_DEFINE;
  604. printf("connector select changed = %d \n", _index);
  605. }
  606. else if (AC_QUANTITY > 0)
  607. {
  608. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  609. printf("connector select changed = AC \n");
  610. }
  611. }
  612. }
  613. void SetFanSpeed(char *v1)
  614. {
  615. int speed = atoi(v1);
  616. ShmFanModuleData->TestFanSpeed = speed;
  617. }
  618. void GetFanSpeed()
  619. {
  620. printf("Target Speed = %d \n", ShmFanModuleData->TestFanSpeed);
  621. printf("ShmFanModuleData->PresentFan1Speed = %d \n", ShmFanModuleData->PresentFan1Speed);
  622. printf("ShmFanModuleData->PresentFan2Speed = %d \n", ShmFanModuleData->PresentFan2Speed);
  623. printf("ShmFanModuleData->PresentFan3Speed = %d \n", ShmFanModuleData->PresentFan3Speed);
  624. printf("ShmFanModuleData->PresentFan4Speed = %d \n", ShmFanModuleData->PresentFan4Speed);
  625. }
  626. void SetDebugMode(char *v1)
  627. {
  628. int mode = atoi(v1);
  629. ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag = mode;
  630. }
  631. void SetGFDMode(char *v1)
  632. {
  633. int mode = atoi(v1);
  634. ShmSysConfigAndInfo->SysConfig.AlwaysGfdFlag = mode;
  635. }
  636. // PSU 0 PSU 1 PSU 2 ...
  637. // Gun Temp Chiller DD/PFC/Amb DD/PFC/Amb DD/PFC/Amb DD/PFC/Amb
  638. // 1 XXX XXX XXX/XXX/XXX XXX/XXX/XXX XXX/XXX/XXX XXX/XXX/XXX
  639. void GetTemperature(char *v1)
  640. {
  641. bool show = false;
  642. char strGunTemp[16], strChillerTemp[16];
  643. if(strcmp(v1, "c") == 0)
  644. {
  645. printf("\r\n Get c Parameter");
  646. show = true;
  647. }
  648. do
  649. {
  650. printf("\r\n PSU 0 PSU 1 PSU 2 .....");
  651. printf("\r\n Gun Temp Chiller DD/PFC/Amb DD/PFC/Amb DD/PFC/Amb DD/PFC/Amb");
  652. for(int i = 0; i < CONNECTOR_QUANTITY; i++)
  653. {
  654. sprintf(strGunTemp, "N/A");
  655. sprintf(strChillerTemp, "N/A");
  656. if(_chargingData[i]->ConnectorTemp != 0 && _chargingData[i]->ConnectorTemp != 0xFF)
  657. {
  658. sprintf(strGunTemp, "%3d", _chargingData[i]->ConnectorTemp - 60);
  659. }
  660. if(_chargingData[i]->ChillerTemp != 0 && _chargingData[i]->ChillerTemp != 0xFF)
  661. {
  662. sprintf(strChillerTemp, "%3d", _chargingData[i]->ChillerTemp - 60);
  663. }
  664. printf("\r\n %d %s %s ", i + 1, strGunTemp, strChillerTemp);
  665. for(int j = 0; j < ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity; j++)
  666. {
  667. printf(" %3d/%3d/%3d",
  668. ShmPsuData->PsuGroup[i].PsuModule[j].ExletTemp,
  669. ShmPsuData->PsuGroup[i].PsuModule[j].InletTemp,
  670. ShmPsuData->PsuGroup[i].PsuModule[j].CriticalTemp1);
  671. }
  672. }
  673. printf("\r\n\r\n");
  674. if(show)
  675. {
  676. sleep(1);
  677. }
  678. }while(show);
  679. }
  680. void GetAcInputVol()
  681. {
  682. printf("L1N_L12 = %f, L2N_L23 = %f, L3N_L31 = %f \n",
  683. ShmSysConfigAndInfo->SysInfo.InputVoltageR,
  684. ShmSysConfigAndInfo->SysInfo.InputVoltageS,
  685. ShmSysConfigAndInfo->SysInfo.InputVoltageT);
  686. }
  687. void GetPsuInformation(char *v1, char *v2, char *v3)
  688. {
  689. printf("**********************AC Contact needed*************************\n");
  690. if(strcmp(v1, "count") == 0)
  691. {
  692. for (int i = 0; i < 4; i++)
  693. {
  694. printf("Group Index = %d, Module Count = %d \n", i, ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity);
  695. }
  696. }
  697. else if(strcmp(v1, "ver") == 0)
  698. {
  699. for (int i = 0; i < ShmPsuData->SystemPresentPsuQuantity; i++)
  700. {
  701. printf("Psu Index = %d, PriVersion = %s, SecVersion = %s \n",
  702. i, ShmPsuData->PsuVersion[i].FwPrimaryVersion, ShmPsuData->PsuVersion[i].FwSecondVersion);
  703. }
  704. for (int i = 0; i < ShmPsuData->GroupCount; i++)
  705. {
  706. for (int j = 0; j < ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity; j++)
  707. {
  708. printf("Group Index = %d, Psu Index = %d, Version = %s \n",
  709. i, j, ShmPsuData->PsuGroup[i].PsuModule[j].FwVersion);
  710. }
  711. }
  712. }
  713. else if(strcmp(v1, "cap") == 0)
  714. {
  715. for (int i = 0; i < ShmPsuData->GroupCount; i++)
  716. {
  717. printf("Group Index = %d, MaxCur = %d, Power = %d \n",
  718. i, ShmPsuData->PsuGroup[i].GroupAvailableCurrent, ShmPsuData->PsuGroup[i].GroupAvailablePower);
  719. }
  720. }
  721. else if(strcmp(v1, "input") == 0)
  722. {
  723. for (int i = 0; i < ShmPsuData->GroupCount; i++)
  724. {
  725. for (byte count = 0; count < ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity; count++)
  726. {
  727. printf("gp = %d, Index = %d, volR = %d, volS = %d, volT = %d \n",
  728. i, count,
  729. ShmPsuData->PsuGroup[i].PsuModule[count].InputVoltageL1,
  730. ShmPsuData->PsuGroup[i].PsuModule[count].InputVoltageL2,
  731. ShmPsuData->PsuGroup[i].PsuModule[count].InputVoltageL3);
  732. }
  733. }
  734. }
  735. else if (strcmp(v1, "output") == 0)
  736. {
  737. for (int i = 0; i < ShmPsuData->GroupCount; i++)
  738. {
  739. printf("Group Index = %d, OutputV = %d, OutputC = %d \n",
  740. i, ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage, ShmPsuData->PsuGroup[i].GroupPresentOutputCurrent);
  741. }
  742. }
  743. else if (strcmp(v1, "test") == 0)
  744. {
  745. int mode = atoi(v2);
  746. if (mode >= _TEST_MODE && mode <= _TEST_MODE)
  747. {
  748. ShmPsuData->Work_Step = mode;
  749. }
  750. }
  751. else if (strcmp(v1, "out") == 0)
  752. {
  753. float vol = atof(v2);
  754. float cur = atof(v3);
  755. if (ShmPsuData->Work_Step >= _TEST_MODE && ShmPsuData->Work_Step <= _TEST_MODE)
  756. {
  757. if (!FindChargingInfoData(0, &_chargingData[0]))
  758. {
  759. printf ("FindChargingInfoData error\n");
  760. return;
  761. }
  762. _chargingData[0]->EvBatterytargetVoltage = vol;
  763. _chargingData[0]->EvBatterytargetCurrent = cur;
  764. }
  765. }
  766. printf("*************************************************\n");
  767. }
  768. void GetConnectorCapInfo(char *v1)
  769. {
  770. int _GunIndex = atoi(v1);
  771. if (!FindChargingInfoData(_GunIndex, &_chargingData[0]))
  772. {
  773. printf ("FindChargingInfoData error\n");
  774. return;
  775. }
  776. printf ("Charger Max Current = %d, Max Power = %d \n",
  777. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent * 10,
  778. ShmSysConfigAndInfo->SysConfig.MaxChargingPower * 10);
  779. printf ("Index = %d, MaxPow = %f, MaxVol = %f, MaxCur = %f\n",
  780. _GunIndex,
  781. _chargingData[_GunIndex]->RealMaxPower,
  782. _chargingData[_GunIndex]->RealMaxVoltage,
  783. _chargingData[_GunIndex]->RealMaxCurrent);
  784. }
  785. static void get_char(char *word)
  786. {
  787. fd_set rfds;
  788. struct timeval tv;
  789. FD_ZERO(&rfds);
  790. FD_SET(0, &rfds);
  791. tv.tv_sec = 0;
  792. tv.tv_usec = 10; //wait input timout time
  793. //if input
  794. if (select(1, &rfds, NULL, NULL, &tv) > 0)
  795. {
  796. fgets(word, 128, stdin);
  797. }
  798. }
  799. void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
  800. {
  801. int _GunIndex = atoi(v1);
  802. float _Voltage = atof(v2);
  803. float _Current = atof(v3);
  804. unsigned char PreviousSystemStatus = 0xff;
  805. if (!FindChargingInfoData(_GunIndex, &_chargingData[0]))
  806. {
  807. printf ("FindChargingInfoData error\n");
  808. return;
  809. }
  810. printf ("ReqVoltage = %f, ReqCurrent = %f\n", _Voltage, _Current);
  811. if(_Voltage > 1000 || _Voltage < 50)
  812. {
  813. printf ("Input Voltage over range\n");
  814. return;
  815. }
  816. // if(_Current > 100 || _Current < 2){
  817. //
  818. // printf ("Input Current over range\n");
  819. // return;
  820. // }
  821. //測試期間先跳過自我測試 _STEST_COMPLETE = 0xfe
  822. //ShmSysConfigAndInfo->SysInfo.SelfTestSeq = 0xfe;
  823. //kill ev task
  824. system("killall Module_EvComm");
  825. //_Voltage = (_Voltage * 10);
  826. //_Current = (_Current * 10);
  827. //system(STTY_US TTY_PATH);
  828. while(true)
  829. {
  830. //fix gun 1
  831. ShmSysConfigAndInfo->SysInfo.CurGunSelected = _GunIndex;
  832. switch(_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  833. {
  834. case S_IDLE:
  835. {
  836. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  837. {
  838. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  839. printf ("[UnconditionalCharge - S_IDLE]\n");
  840. }
  841. ShmSysConfigAndInfo->SysInfo.StartToChargingFlag = 0x01;
  842. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_PREPARNING;
  843. }
  844. break;
  845. case S_PREPARNING:
  846. {
  847. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  848. {
  849. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  850. printf ("[UnconditionalCharge - S_PREPARNIN]\n");
  851. //等待 AC Relay 搭上且找到模組 (main 在此 statue 其它 task 會去做完)
  852. printf ("wait find module\n");
  853. }
  854. //main 會在此階段判斷以下資料跳到下一個 state
  855. //用來得知 AC 是否有搭上 (搭上模組的資訊才會出來) 因為每次 AC_Contactor
  856. //ShmPsuData->SystemPresentPsuQuantity;
  857. //ShmPsuData->PsuGroup[gun_index].GroupPresentPsuQuantity;
  858. //ShmPsuData->PsuGroup[gun_index].GroupAvailablePower;
  859. //_chargingData[gun_index]->AvailableChargingPower;
  860. //等待 AC Relay 搭上且找到模組 (main 在此 statue 其它 task 會去做完)
  861. //sleep(10);
  862. //清除 main timeout 機制
  863. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->TimeoutFlag = 0;
  864. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  865. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->Type = 9;
  866. }
  867. break;
  868. case S_PREPARING_FOR_EV:
  869. {
  870. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  871. {
  872. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  873. printf ("[UnconditionalCharge - S_PREPARING_FOR_EV]\n");
  874. printf ("ReqVoltage = %f, ReqCurrent = %f \n", _Voltage * 10,_Current * 10);
  875. }
  876. //清除 main timeout 機制
  877. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->TimeoutFlag = 0;
  878. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  879. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->Type = 9;
  880. //充電電壓電流
  881. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterySoc = 50;
  882. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetVoltage = 500;
  883. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetCurrent = 2;
  884. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->AvailableChargingCurrent = 1000;
  885. //****** 注意~此行為是防止 K1K2 先開導到無法升壓 ( Relay Board 在此 state 還未搭上 K1K2 )
  886. //確定模組己升壓完成
  887. //if(_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingVoltage <= (3000+500) &&
  888. // _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingVoltage >= (3000-500) )
  889. {
  890. printf ("Precharge Done = %f \n", _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingVoltage);
  891. //EV done
  892. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_PREPARING_FOR_EVSE;
  893. }
  894. }
  895. break;
  896. case S_PREPARING_FOR_EVSE:
  897. {
  898. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  899. {
  900. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  901. printf ("[UnconditionalCharge - S_PREPARING_FOR_EVSE]\n");
  902. }
  903. //printf ("tar vol = %d \n", _Voltage);
  904. //printf ("tar cur = %d \n", _Current);
  905. //清除 main timeout 機制
  906. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->TimeoutFlag = 0;
  907. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  908. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->Type = 9;
  909. //充電電壓電流
  910. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterySoc = 50;
  911. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetVoltage = 500;
  912. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetCurrent = 2;
  913. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->AvailableChargingCurrent = 1000;
  914. //printf ("tar vol_ = %d \n", _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetVoltage);
  915. // printf ("tar cur_ = %d \n", _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetCurrent);
  916. //****** 注意~此行為是防止 K1K2 先開導到無法升壓 ( Relay Board 在此 state 還未搭上 K1K2 )
  917. //確定模組己升壓完成
  918. //if(_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus == 0x01 ||
  919. // _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus == 0x03)
  920. //{
  921. //printf ("First Ground Fault State (%d)\n",_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus);
  922. printf ("Wait K1K2 = %f \n", _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingVoltage);
  923. sleep(5);
  924. //EV done
  925. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_CHARGING;
  926. //}
  927. //else if (_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus > 0x02)
  928. //{
  929. // printf ("First Ground Fault check Fail (%d)\n",_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus);
  930. // _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_TERMINATING;
  931. //}
  932. }
  933. break;
  934. case S_CHARGING:
  935. {
  936. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  937. {
  938. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  939. //充電電壓電流
  940. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterySoc = 50;
  941. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetVoltage = _Voltage;
  942. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetCurrent = _Current;
  943. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->AvailableChargingCurrent = 1000;
  944. printf ("[UnconditionalCharge - S_CHARGING]\n");
  945. }
  946. //ev task do this
  947. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingPower =
  948. ((float)((_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingVoltage) * (_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->PresentChargingCurrent)) / 1000);
  949. if (_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus == 0x02){
  950. printf ("Charging Ground Fault check Fail (%d)\n",_chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->GroundFaultStatus);
  951. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_TERMINATING;
  952. }
  953. }
  954. break;
  955. case S_TERMINATING:
  956. {
  957. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  958. {
  959. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  960. system("/root/Module_EvComm &");
  961. printf ("[UnconditionalCharge - S_TERMINATING]\n");
  962. //無阻塞偵測 keybaord 結束
  963. system(STTY_DEF TTY_PATH);
  964. }
  965. sleep(3);
  966. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_COMPLETE;
  967. return;
  968. }
  969. break;
  970. case S_COMPLETE:
  971. {
  972. if(PreviousSystemStatus != _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  973. {
  974. PreviousSystemStatus = _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus;
  975. printf ("[UnconditionalCharge - S_COMPLETE]\n");
  976. }
  977. sleep(3);
  978. return;
  979. }
  980. break;
  981. }
  982. char word[128];
  983. char newString[7][10];
  984. int i,j,ctr;
  985. memset(word, 0x00, sizeof(word));
  986. get_char(word);
  987. if (strlen(word) == 0)
  988. {
  989. continue;
  990. }
  991. j=0; ctr=0;
  992. strcpy(newString[1], "-1");
  993. strcpy(newString[2], "-1");
  994. for (i = 0; i <= (strlen(word)); i++)
  995. {
  996. if (word[i] == ' ' || word[i] == '\0' || word[i] == 10)
  997. {
  998. newString[ctr][j] = '\0';
  999. ctr++;
  1000. j = 0;
  1001. }
  1002. else
  1003. {
  1004. newString[ctr][j] = word[i];
  1005. j++;
  1006. }
  1007. }
  1008. if(strcmp(newString[0], "chg") == 0)
  1009. {
  1010. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  1011. continue;
  1012. if (strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  1013. continue;
  1014. float _vol = atof(newString[1]);
  1015. float _cur = atof(newString[2]);
  1016. if (_cur <= 0 || _cur <= 0)
  1017. continue;
  1018. printf("vol = %f, cur = %f \n", _vol, _cur);
  1019. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetVoltage = _vol;
  1020. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->EvBatterytargetCurrent = _cur;
  1021. }
  1022. else if (strcmp(newString[0], "c") == 0)
  1023. {
  1024. printf("stop \n\r");
  1025. ShmSysConfigAndInfo->SysInfo.StartToChargingFlag = 0x00;
  1026. _chargingData[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_TERMINATING;
  1027. }
  1028. usleep(100000);
  1029. }
  1030. }
  1031. void RunUnconditionalCharge(char *v1, char *v2, char *v3, char *v4)
  1032. {
  1033. float _Voltage[2], _Current[2];
  1034. _Voltage[0] = atof(v1);
  1035. _Current[0] = atof(v2);
  1036. _Voltage[1] = atof(v3);
  1037. _Current[1] = atof(v4);
  1038. unsigned char PreviousSystemStatus[2] = {0xff, 0xff};
  1039. if(!FindChargingInfoData(0, &_chargingData[0]))
  1040. {
  1041. printf ("FindChargingInfoData 0 error\n");
  1042. return;
  1043. }
  1044. if(!FindChargingInfoData(1, &_chargingData[0]))
  1045. {
  1046. printf ("FindChargingInfoData 1 error\n");
  1047. return;
  1048. }
  1049. printf ("Gun 1: ReqVoltage = %f, ReqCurrent = %f\n", _Voltage[0], _Current[0]);
  1050. printf ("Gun 2: ReqVoltage = %f, ReqCurrent = %f\n", _Voltage[1], _Current[1]);
  1051. if(_Voltage[0] > 1000 || _Voltage[0] < 50 || _Voltage[1] > 1000 || _Voltage[1] < 50)
  1052. {
  1053. printf ("Input Voltage over range\n");
  1054. return;
  1055. }
  1056. //kill ev task
  1057. system("killall Module_EvComm");
  1058. while(true)
  1059. {
  1060. if(_chargingData[0]->SystemStatus == S_IDLE && _chargingData[1]->SystemStatus == S_IDLE)
  1061. {
  1062. _chargingData[0]->SystemStatus = S_REASSIGN_CHECK;
  1063. _chargingData[1]->SystemStatus = S_REASSIGN_CHECK;
  1064. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_AVER;
  1065. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  1066. }
  1067. if(_chargingData[0]->SystemStatus == S_COMPLETE && _chargingData[1]->SystemStatus == S_COMPLETE)
  1068. {
  1069. system(STTY_DEF TTY_PATH);
  1070. sleep(5);
  1071. return;
  1072. }
  1073. for(int i = 0; i < 2; i++)
  1074. {
  1075. switch(_chargingData[i]->SystemStatus)
  1076. {
  1077. case S_IDLE:
  1078. {
  1079. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1080. {
  1081. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1082. printf ("[UnconditionalCharge (%d) - S_IDLE]\n", i);
  1083. }
  1084. }
  1085. break;
  1086. case S_PREPARNING:
  1087. {
  1088. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1089. {
  1090. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1091. printf ("[UnconditionalCharge (%d) - S_PREPARNIN]\n", i);
  1092. printf ("wait find module\n");
  1093. }
  1094. //清除 main timeout 機制
  1095. _chargingData[i]->TimeoutFlag = 0;
  1096. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  1097. _chargingData[i]->Type = 9;
  1098. }
  1099. break;
  1100. case S_PREPARING_FOR_EV:
  1101. {
  1102. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1103. {
  1104. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1105. printf ("[UnconditionalCharge (%d) - S_PREPARING_FOR_EV]\n", i);
  1106. printf ("ReqVoltage = %f, ReqCurrent = %f \n", _Voltage[i] * 10,_Current[i] * 10);
  1107. }
  1108. //清除 main timeout 機制
  1109. _chargingData[i]->TimeoutFlag = 0;
  1110. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  1111. _chargingData[i]->Type = 9;
  1112. //充電電壓電流
  1113. _chargingData[i]->EvBatterySoc = 50;
  1114. _chargingData[i]->EvBatterytargetVoltage = 500;
  1115. _chargingData[i]->EvBatterytargetCurrent = 2;
  1116. _chargingData[i]->AvailableChargingCurrent = 1000;
  1117. printf ("Precharge Done = %f \n", _chargingData[i]->PresentChargingVoltage);
  1118. _chargingData[i]->SystemStatus = S_PREPARING_FOR_EVSE;
  1119. }
  1120. break;
  1121. case S_PREPARING_FOR_EVSE:
  1122. {
  1123. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1124. {
  1125. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1126. printf ("[UnconditionalCharge (%d) - S_PREPARING_FOR_EVSE]\n", i);
  1127. }
  1128. //清除 main timeout 機制
  1129. _chargingData[i]->TimeoutFlag = 0;
  1130. //不論是什麼 type 的槍都固意設成 Chademo 不跑 Prechage step
  1131. _chargingData[i]->Type = 9;
  1132. //充電電壓電流
  1133. _chargingData[i]->EvBatterySoc = 50;
  1134. _chargingData[i]->EvBatterytargetVoltage = 500;
  1135. _chargingData[i]->EvBatterytargetCurrent = 2;
  1136. _chargingData[i]->AvailableChargingCurrent = 1000;
  1137. printf ("Wait K1K2 = %f \n", _chargingData[i]->PresentChargingVoltage);
  1138. sleep(5);
  1139. //EV done
  1140. _chargingData[i]->SystemStatus = S_CHARGING;
  1141. }
  1142. break;
  1143. case S_CHARGING:
  1144. {
  1145. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1146. {
  1147. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1148. //充電電壓電流
  1149. _chargingData[i]->EvBatterySoc = 50;
  1150. _chargingData[i]->EvBatterytargetVoltage = _Voltage[i];
  1151. _chargingData[i]->EvBatterytargetCurrent = _Current[i];
  1152. _chargingData[i]->AvailableChargingCurrent = 1000;
  1153. printf ("[UnconditionalCharge (%d) - S_CHARGING]\n", i);
  1154. }
  1155. }
  1156. break;
  1157. case S_TERMINATING:
  1158. {
  1159. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1160. {
  1161. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1162. system("/root/Module_EvComm &");
  1163. printf ("[UnconditionalCharge (%d) - S_TERMINATING]\n", i);
  1164. }
  1165. sleep(3);
  1166. _chargingData[i]->SystemStatus = S_COMPLETE;
  1167. }
  1168. break;
  1169. case S_COMPLETE:
  1170. {
  1171. if(PreviousSystemStatus[i] != _chargingData[i]->SystemStatus)
  1172. {
  1173. PreviousSystemStatus[i] = _chargingData[i]->SystemStatus;
  1174. printf ("[UnconditionalCharge (%d) - S_COMPLETE]\n", i);
  1175. }
  1176. }
  1177. break;
  1178. }
  1179. }
  1180. char word[128];
  1181. char newString[7][10];
  1182. int i,j,ctr;
  1183. memset(word, 0x00, sizeof(word));
  1184. get_char(word);
  1185. if (strlen(word) == 0)
  1186. {
  1187. continue;
  1188. }
  1189. j=0; ctr=0;
  1190. strcpy(newString[1], "-1");
  1191. strcpy(newString[2], "-1");
  1192. for (i = 0; i <= (strlen(word)); i++)
  1193. {
  1194. if (word[i] == ' ' || word[i] == '\0' || word[i] == 10)
  1195. {
  1196. newString[ctr][j] = '\0';
  1197. ctr++;
  1198. j = 0;
  1199. }
  1200. else
  1201. {
  1202. newString[ctr][j] = word[i];
  1203. j++;
  1204. }
  1205. }
  1206. if(strcmp(newString[0], "chg") == 0)
  1207. {
  1208. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  1209. continue;
  1210. if (strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  1211. continue;
  1212. if (strcmp(newString[3], "-1") == 0 || strcmp(newString[3], "") == 0)
  1213. continue;
  1214. int _gun = atoi(newString[1]);
  1215. float _vol = atof(newString[2]);
  1216. float _cur = atof(newString[3]);
  1217. if(_gun >= 2 || _gun < 0)
  1218. continue;
  1219. if (_cur <= 0 || _cur <= 0)
  1220. continue;
  1221. printf("gun %d: vol = %f, cur = %f \n", _gun + 1, _vol, _cur);
  1222. _chargingData[_gun]->EvBatterytargetVoltage = _vol;
  1223. _chargingData[_gun]->EvBatterytargetCurrent = _cur;
  1224. }
  1225. else if (strcmp(newString[0], "c") == 0)
  1226. {
  1227. printf("stop \n\r");
  1228. _chargingData[0]->SystemStatus = S_TERMINATING;
  1229. _chargingData[1]->SystemStatus = S_TERMINATING;
  1230. }
  1231. usleep(100000);
  1232. }
  1233. }
  1234. void SetWiringInfo(char *v1, char *v2)
  1235. {
  1236. int dispenser = atoi(v1);
  1237. int connector = atoi(v2);
  1238. if(dispenser > 0 && dispenser <= GENERAL_GUN_QUANTITY && connector >= 0 && connector <= GENERAL_GUN_QUANTITY)
  1239. {
  1240. if(ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence == (dispenser - 1))
  1241. {
  1242. printf("\r\n");
  1243. printf("Set Dispenser %d, Connector Quantity = %d\r\n", dispenser, connector);
  1244. ShmSysConfigAndInfo->SysConfig.WiringInfo.WiringSetting[dispenser - 1] = connector;
  1245. ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence = dispenser;
  1246. ShmSysConfigAndInfo->SysConfig.WiringInfo.MaxConnectorQuantity += connector;
  1247. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.FlashConfigChanged = true;
  1248. ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity = ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence;
  1249. ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity = ShmSysConfigAndInfo->SysConfig.WiringInfo.MaxConnectorQuantity;
  1250. }
  1251. else if(ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence > (dispenser - 1))
  1252. {
  1253. printf("\r\n");
  1254. printf("Set Dispenser %d, Connector Quantity = %d\r\n", dispenser, connector);
  1255. ShmSysConfigAndInfo->SysConfig.WiringInfo.WiringSetting[dispenser - 1] = connector;
  1256. int quantity = 0;
  1257. for(int i = 0; i < ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence; i++)
  1258. {
  1259. quantity += ShmSysConfigAndInfo->SysConfig.WiringInfo.WiringSetting[i];
  1260. }
  1261. ShmSysConfigAndInfo->SysConfig.WiringInfo.MaxConnectorQuantity = quantity;
  1262. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.FlashConfigChanged = true;
  1263. ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity = ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence;
  1264. ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity = ShmSysConfigAndInfo->SysConfig.WiringInfo.MaxConnectorQuantity;
  1265. }
  1266. }
  1267. }
  1268. void ShowWiringInfo(void)
  1269. {
  1270. printf("\r\n");
  1271. printf("********** Wiring Info **********\r\n");
  1272. printf("Dispenser = %d, Connector = %d\r\n",
  1273. ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence,
  1274. ShmSysConfigAndInfo->SysConfig.WiringInfo.MaxConnectorQuantity);
  1275. if(ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence > 0)
  1276. {
  1277. for(int i = 0; i < ShmSysConfigAndInfo->SysConfig.WiringInfo.DispenserSequence; i++)
  1278. {
  1279. printf("Dispenser[%d] <=> %d\r\n", i, ShmSysConfigAndInfo->SysConfig.WiringInfo.WiringSetting[i]);
  1280. }
  1281. }
  1282. printf("\r\n");
  1283. }
  1284. void CleanWiringInfo(void)
  1285. {
  1286. printf("\r\n");
  1287. printf("******* Clean Wiring Info *******\r\n");
  1288. memset((char *)&ShmSysConfigAndInfo->SysConfig.WiringInfo, 0x00, sizeof(WiringInfoData));
  1289. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.FlashConfigChanged = true;
  1290. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.CleanWiringInfo = true;
  1291. printf("\r\n");
  1292. }
  1293. void SetSystemSoftRest(void)
  1294. {
  1295. printf("********* Set Soft Reset ********\r\n");
  1296. ShmChargerInfo->Control.SysCtrl.bits.NeedSoftReset = true;
  1297. }
  1298. void SetSystemHardReboot(void)
  1299. {
  1300. printf("******** Set Hard Reboot ********\r\n");
  1301. ShmChargerInfo->Control.SysCtrl.bits.NeedHardReset = true;
  1302. }
  1303. void SetGroupRole(byte group, byte role)
  1304. {
  1305. if(group < GENERAL_GUN_QUANTITY)
  1306. {
  1307. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != role)
  1308. {
  1309. //printf("\r\nSet Group %d Role = %d", group, role);
  1310. }
  1311. ShmChargerInfo->PsuGrouping.GroupCollection[group].Role = role;
  1312. }
  1313. }
  1314. void SetGroupToIdle(byte group)
  1315. {
  1316. if(group < GENERAL_GUN_QUANTITY)
  1317. {
  1318. SetGroupRole(group, _GROLE_IDLE);
  1319. ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Quantity = 0;
  1320. memset(ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Member, 0x00, ARRAY_SIZE(ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Member));
  1321. ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup = 0;
  1322. //printf("\r\n Reset Group %02X To Idle", group);
  1323. }
  1324. }
  1325. void SetGroupToMaster(byte group)
  1326. {
  1327. if(group < GENERAL_GUN_QUANTITY)
  1328. {
  1329. SetGroupRole(group, _GROLE_MASTER);
  1330. ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup = group + 1;
  1331. //printf("\r\n Set Group %02X As Master", group);
  1332. }
  1333. }
  1334. void SetGroupToSlave(byte group, byte target)
  1335. {
  1336. if(group < GENERAL_GUN_QUANTITY && target < GENERAL_GUN_QUANTITY)
  1337. {
  1338. SetGroupRole(group, _GROLE_SLAVE);
  1339. ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup = target + 1;
  1340. //printf("\r\n Set Group %02X As Slave", group);
  1341. }
  1342. }
  1343. // group: group index, target: target index
  1344. // add group to target's member
  1345. void AddGroupCollection(byte group, byte target)
  1346. {
  1347. int ParallelConfig = 0;
  1348. if(group < GENERAL_GUN_QUANTITY && target < GENERAL_GUN_QUANTITY)
  1349. {
  1350. if(ShmChargerInfo->PsuGrouping.GroupCollection[target].Role != _GROLE_MASTER)
  1351. {
  1352. return;
  1353. }
  1354. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_IDLE &&
  1355. ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_WAIT_IDLE &&
  1356. ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_PRECHARGE_READY)
  1357. {
  1358. return;
  1359. }
  1360. SetGroupToSlave(group, target);
  1361. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity++] = group;
  1362. ParallelConfig = ShmChargerInfo->PsuGrouping.GroupCollection[target].ParallelConfig[group];
  1363. if(ParallelConfig != 0)
  1364. {
  1365. ShmPsuGrouping->ParallelRelayConfig.CtrlValue |= (1 << (ParallelConfig - 1));
  1366. }
  1367. //printf("\r\n Add Group %02X To Gun %d (Quantity %d), Set Parallel Relay %d On", group, target + 1, ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity, ParallelConfig);
  1368. }
  1369. }
  1370. // group: group index, target: target index
  1371. // remove group out of target's member
  1372. void RemoveGroupCollection(byte group, byte target)
  1373. {
  1374. int location = 0, slave = 0;
  1375. bool find = false;
  1376. int ParallelConfig = 0;
  1377. if(group < GENERAL_GUN_QUANTITY && target < GENERAL_GUN_QUANTITY)
  1378. {
  1379. for(int i = 0; i < ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity; i++)
  1380. {
  1381. if(group == ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[i])
  1382. {
  1383. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[i] = 0;
  1384. location = i;
  1385. find = true;
  1386. break;
  1387. }
  1388. }
  1389. if(find)
  1390. {
  1391. for(int i = location + 1; i < ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity; i++)
  1392. {
  1393. slave = ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[i];
  1394. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[i] = 0;
  1395. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[i - 1] = slave;
  1396. }
  1397. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity--;
  1398. SetGroupToIdle(group);
  1399. ParallelConfig = ShmChargerInfo->PsuGrouping.GroupCollection[target].ParallelConfig[group];
  1400. if(ParallelConfig != 0)
  1401. {
  1402. ShmPsuGrouping->ParallelRelayConfig.CtrlValue &= ~(1 << (ParallelConfig - 1));
  1403. }
  1404. //printf("\r\n Remove Group %02X From Gun %d (Quantity %d), Clean Parallel Relay %d Off", group, target + 1, ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity, ParallelConfig);
  1405. }
  1406. }
  1407. }
  1408. // Gun(Status)(Ro)(Q) Master Member OutputVol OutputCur AvaiPower AvaiCur StabCur K1K2 ParaRelay
  1409. // 1 (00) 00 3 00 [00] [00] [00] 0000 V 0000 A 0000 kW 0000 A 0000 A 00 XX
  1410. void ShowGroupingInfo(void)
  1411. {
  1412. byte target = 0;
  1413. printf("\r\n Gun(Status)(Ro)(Q) Master Member OutputVol OutputCur AvaiPower AvaiCur StabCur K1K2 ParaRelay");
  1414. for(int i = 0; i < 4; i++)
  1415. {
  1416. target = ShmPsuGrouping->Layout[i];
  1417. printf("\r\n %d (%2d) %2d %d %02X ",
  1418. target + 1, _chargingData[target]->SystemStatus, ShmChargerInfo->PsuGrouping.GroupCollection[target].Role,
  1419. ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity, ShmChargerInfo->PsuGrouping.GroupCollection[target].TargetGroup);
  1420. for(int j = 0; j < 3; j++)
  1421. {
  1422. if(ShmChargerInfo->PsuGrouping.GroupCollection[target].Role == 1 && j < ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity)
  1423. {
  1424. printf("[%02X] ", ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Member[j]);
  1425. }
  1426. else
  1427. {
  1428. printf(" ");
  1429. }
  1430. }
  1431. printf(" %4d V %4d A %4d kW %4d A %4d A ",
  1432. (int)_chargingData[target]->PresentChargingVoltage, (int)_chargingData[target]->PresentChargingCurrent,
  1433. (int)(_chargingData[target]->AvailableChargingPower / 10), (int)(_chargingData[target]->AvailableChargingCurrent / 10),
  1434. (int)(_chargingData[target]->DeratingChargingCurrent / 10));
  1435. printf("%02X %02X",ShmPsuGrouping->OutputRelayConfig[target].CtrlValue, ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  1436. }
  1437. printf("\r\n\r\nSystem Capability Current = %4d.%01d A, Power = %3d.%01d kW",
  1438. (ShmPsuData->SystemAvailableCurrent / 10), (ShmPsuData->SystemAvailableCurrent % 10),
  1439. (ShmPsuData->SystemAvailablePower / 10), (ShmPsuData->SystemAvailablePower % 10));
  1440. printf("\r\n\r\n");
  1441. }
  1442. void PsuGroupSwitchToIdle(byte group)
  1443. {
  1444. int master = 0, quantity = 0, location = 0, total = 0;
  1445. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_SLAVE)
  1446. {
  1447. return;
  1448. }
  1449. master = ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup - 1;
  1450. quantity = ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Quantity;
  1451. //printf("\r\n Search Group %02X From Gun %d", group, master + 1);
  1452. for(int i = 0; i < quantity; i++)
  1453. {
  1454. if(total == 0)
  1455. {
  1456. if(group == ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[i])
  1457. {
  1458. location = i;
  1459. total++;
  1460. //printf("\r\n Find Group %02X At Member Index = %d", group, location);
  1461. }
  1462. }
  1463. else
  1464. {
  1465. // find other group in the same direction
  1466. if(ShmPsuGrouping->Location[ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[location]] < ShmPsuGrouping->Location[master])
  1467. {
  1468. if(ShmPsuGrouping->Location[ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[i]] < ShmPsuGrouping->Location[master])
  1469. {
  1470. total++;
  1471. //printf("\r\n Find Other Group %02X In The Same Direction", ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[i]);
  1472. }
  1473. }
  1474. if(ShmPsuGrouping->Location[ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[location]] > ShmPsuGrouping->Location[master])
  1475. {
  1476. if(ShmPsuGrouping->Location[ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[i]] > ShmPsuGrouping->Location[master])
  1477. {
  1478. total++;
  1479. //printf("\r\n Find Other Group %02X In The Same Direction", ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member[i]);
  1480. }
  1481. }
  1482. }
  1483. }
  1484. if(total > 0)
  1485. {
  1486. unsigned char collection[GENERAL_GUN_QUANTITY];
  1487. //printf("\r\n There are %d Group Need To Switch Idle:", total);
  1488. memcpy(collection, ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member, ARRAY_SIZE(ShmChargerInfo->PsuGrouping.GroupCollection[master].Partner.Member));
  1489. for(int i = 0; i < total; i++)
  1490. {
  1491. //printf(" %02X", collection[i + location]);
  1492. }
  1493. for(int i = 0; i < total; i++)
  1494. {
  1495. RemoveGroupCollection(collection[i + location], master);
  1496. }
  1497. }
  1498. }
  1499. void FindPsuGroupPartner(byte master, byte quantity, PsuGroupPartner *tPartner)
  1500. {
  1501. int slave = 0, location = 0;
  1502. PsuGroupPartner partner;
  1503. memset(&partner, 0x00, sizeof(PsuGroupPartner));
  1504. // search from left
  1505. location = ShmChargerInfo->PsuGrouping.GroupCollection[master].Location - 1;
  1506. for(int i = location; i >= 0; i--)
  1507. {
  1508. if(partner.Quantity >= quantity)
  1509. {
  1510. break;
  1511. }
  1512. slave = ShmPsuGrouping->Layout[i];
  1513. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1514. {
  1515. //printf("\r\n Find Group %02X From Left", slave);
  1516. partner.Member[partner.Quantity++] = slave;
  1517. }
  1518. else
  1519. {
  1520. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && master == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1521. {
  1522. continue;
  1523. }
  1524. break;
  1525. }
  1526. }
  1527. // search from right
  1528. location = ShmChargerInfo->PsuGrouping.GroupCollection[master].Location + 1;
  1529. for(int i = location; i < 4; i++)
  1530. {
  1531. if(partner.Quantity >= quantity)
  1532. {
  1533. break;
  1534. }
  1535. slave = ShmPsuGrouping->Layout[i];
  1536. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1537. {
  1538. //printf("\r\n Find Group %02X From Right", slave);
  1539. partner.Member[partner.Quantity++] = slave;
  1540. }
  1541. else
  1542. {
  1543. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && master == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1544. {
  1545. continue;
  1546. }
  1547. break;
  1548. }
  1549. }
  1550. memcpy(tPartner, &partner, sizeof(PsuGroupPartner));
  1551. }
  1552. int GetPsuGroupAvailable(byte group)
  1553. {
  1554. //int slave = 0, location = 0, available = 0;
  1555. PsuGroupPartner partner;
  1556. FindPsuGroupPartner(group, MAX_GROUP_QUANTITY, &partner);
  1557. //printf("\r\n Gun %d Available Quantity = %d", group + 1, partner.Quantity);
  1558. return partner.Quantity;
  1559. #if 0
  1560. // search from left
  1561. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location - 1;
  1562. for(int i = location; i >= 0; i--)
  1563. {
  1564. slave = ShmPsuGrouping->Layout[i];
  1565. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1566. {
  1567. available++;
  1568. }
  1569. else
  1570. {
  1571. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && group == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1572. {
  1573. continue;
  1574. }
  1575. break;
  1576. }
  1577. }
  1578. // search from right
  1579. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location + 1;
  1580. for(int i = location; i < 4; i++)
  1581. {
  1582. slave = ShmPsuGrouping->Layout[i];
  1583. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1584. {
  1585. available++;
  1586. }
  1587. else
  1588. {
  1589. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && group == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1590. {
  1591. continue;
  1592. }
  1593. break;
  1594. }
  1595. }
  1596. return available;
  1597. #endif
  1598. }
  1599. void PsuGroupShareCheck(byte group)
  1600. {
  1601. int slave = 0, target = 0, location = 0, share = 0, total = 0;
  1602. total = GetPsuGroupAvailable(group) + 1;
  1603. //printf("\r\n Gun %d Total Group = %d", group + 1, total);
  1604. // search from left
  1605. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location - 1;
  1606. for(int i = location; i >= 0; i--)
  1607. {
  1608. slave = ShmPsuGrouping->Layout[i];
  1609. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE)
  1610. {
  1611. target = ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1;
  1612. if((ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity + 1) > total)
  1613. {
  1614. share = (ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity + 1 - total) / 2;
  1615. }
  1616. //printf("\r\n Find Group %02X Have %d Resource Can Shared %d From Left", target, ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity, share);
  1617. break;
  1618. }
  1619. else
  1620. {
  1621. break;
  1622. }
  1623. }
  1624. if(share == 0)
  1625. {
  1626. // search from right
  1627. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location + 1;
  1628. for(int i = location; i < 4; i++)
  1629. {
  1630. slave = ShmPsuGrouping->Layout[i];
  1631. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE)
  1632. {
  1633. target = ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1;
  1634. if((ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity + 1) > total)
  1635. {
  1636. share = (ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity + 1 - total) / 2;
  1637. }
  1638. //printf("\r\n Find Group %02X Have %d Resource Can Shared %d From Left", target, ShmChargerInfo->PsuGrouping.GroupCollection[target].Partner.Quantity, share);
  1639. break;
  1640. }
  1641. else
  1642. {
  1643. break;
  1644. }
  1645. }
  1646. }
  1647. if(share > 0)
  1648. {
  1649. //printf("\r\n Grab %02X", slave);
  1650. PsuGroupSwitchToIdle(slave);
  1651. }
  1652. else
  1653. {
  1654. //printf("\r\n No Need To Grab");
  1655. }
  1656. }
  1657. void SimplePsuGroupStartCharging(byte group)
  1658. {
  1659. //int slave = 0, location = 0;
  1660. int available = 0;
  1661. PsuGroupPartner partner;
  1662. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role == _GROLE_SLAVE)
  1663. {
  1664. return;
  1665. }
  1666. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_IDLE && ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_MASTER)
  1667. {
  1668. return;
  1669. }
  1670. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role == _GROLE_IDLE)
  1671. {
  1672. SetGroupToMaster(group);
  1673. PsuGroupShareCheck(group);
  1674. }
  1675. else
  1676. {
  1677. available = GetPsuGroupAvailable(group);
  1678. //printf("\r\nGun %d is already master, there are %d available group", group + 1, available);
  1679. if(available == 0)
  1680. {
  1681. return;
  1682. }
  1683. }
  1684. FindPsuGroupPartner(group, MAX_GROUP_QUANTITY, &partner);
  1685. for(int i = 0; i < partner.Quantity; i++)
  1686. {
  1687. AddGroupCollection(partner.Member[i], group);
  1688. }
  1689. ShmPsuGrouping->OutputRelayConfig[group].bits.Output_N = true;
  1690. ShmPsuGrouping->OutputRelayConfig[group].bits.Output_P = true;
  1691. #if 0
  1692. // search from left
  1693. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location - 1;
  1694. for(int i = location; i >= 0; i--)
  1695. {
  1696. slave = ShmPsuGrouping->Layout[i];
  1697. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1698. {
  1699. //printf("\r\n Find %02X From Left", slave);
  1700. AddGroupCollection(slave, group);
  1701. }
  1702. else
  1703. {
  1704. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && group == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1705. {
  1706. continue;
  1707. }
  1708. break;
  1709. }
  1710. }
  1711. // search from right
  1712. location = ShmChargerInfo->PsuGrouping.GroupCollection[group].Location + 1;
  1713. for(int i = location; i < 4; i++)
  1714. {
  1715. slave = ShmPsuGrouping->Layout[i];
  1716. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_IDLE)
  1717. {
  1718. //printf("\r\n Find %02X From Right", slave);
  1719. AddGroupCollection(slave, group);
  1720. }
  1721. else
  1722. {
  1723. if(ShmChargerInfo->PsuGrouping.GroupCollection[slave].Role == _GROLE_SLAVE && group == (ShmChargerInfo->PsuGrouping.GroupCollection[slave].TargetGroup - 1))
  1724. {
  1725. continue;
  1726. }
  1727. break;
  1728. }
  1729. }
  1730. #endif
  1731. }
  1732. void PsuGroupStopCharging(byte group)
  1733. {
  1734. int total = 0;
  1735. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role != _GROLE_MASTER)
  1736. {
  1737. return;
  1738. }
  1739. total = ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Quantity;
  1740. if(total > 0)
  1741. {
  1742. unsigned char collection[GENERAL_GUN_QUANTITY];
  1743. //printf("\r\n There are %d Group Need To Stop:", ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Quantity);
  1744. memcpy(collection, ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Member, ARRAY_SIZE(ShmChargerInfo->PsuGrouping.GroupCollection[group].Partner.Member));
  1745. for(int i = 0; i < total; i++)
  1746. {
  1747. //printf(" %02X", collection[i]);
  1748. }
  1749. for(int i = 0; i < total; i++)
  1750. {
  1751. RemoveGroupCollection(collection[i], group);
  1752. }
  1753. }
  1754. SetGroupToIdle(group);
  1755. ShmPsuGrouping->OutputRelayConfig[group].bits.Output_N = false;
  1756. ShmPsuGrouping->OutputRelayConfig[group].bits.Output_P = false;
  1757. }
  1758. void RunSimplePsuGrouping(char *v1, char *v2)
  1759. {
  1760. int group = 0, charging = 0;
  1761. group = atoi(v1);
  1762. charging = atoi(v2);
  1763. group -= 1;
  1764. if(group >= 0 && group < 4)
  1765. {
  1766. if(charging > 0)
  1767. {
  1768. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role == _GROLE_SLAVE)
  1769. {
  1770. //printf("\r\nGroup %02X Is In Use, Need To Stop Charging", group);
  1771. PsuGroupSwitchToIdle(group);
  1772. }
  1773. SimplePsuGroupStartCharging(group);
  1774. }
  1775. if(charging == 0)
  1776. {
  1777. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role == _GROLE_MASTER)
  1778. {
  1779. PsuGroupStopCharging(group);
  1780. }
  1781. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].Role == _GROLE_SLAVE)
  1782. {
  1783. PsuGroupSwitchToIdle(group);
  1784. }
  1785. }
  1786. ShowGroupingInfo();
  1787. }
  1788. }
  1789. void ShowCabinetInfo(void)
  1790. {
  1791. int ipAddress = 0;
  1792. printf("\r\nPower Cabinet Charging Mode = %d, ReAssignedFlag = %d, Psu Work Step = %d",
  1793. ShmSysConfigAndInfo->SysInfo.MainChargingMode, ShmSysConfigAndInfo->SysInfo.ReAssignedFlag, ShmPsuData->Work_Step);
  1794. printf("\r\n Dispenser: %d / %d, Connector: %d / %d",
  1795. ShmSysConfigAndInfo->SysInfo.DispenserInfo.PresentDispenserQuantity,
  1796. ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity,
  1797. ShmSysConfigAndInfo->SysInfo.DispenserInfo.PresentConnectorQuantity,
  1798. ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity);
  1799. printf("\r\n");
  1800. for(int i = 0; i < GENERAL_GUN_QUANTITY; i++)
  1801. {
  1802. ipAddress = ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[i].IpAddress;
  1803. printf("\r\n Dispenser Connection[%d] Status: %d, DispenserIndex: %d, IP: %d.%d.%d.%d", i,
  1804. ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[i].Status,
  1805. ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[i].DispenserIndex,
  1806. ((ipAddress >> 0) & 0xFF), ((ipAddress >> 8) & 0xFF), ((ipAddress >> 16) & 0xFF), ((ipAddress >> 24) & 0xFF));
  1807. }
  1808. printf("\r\n");
  1809. for(int i = 0; i < GENERAL_GUN_QUANTITY; i++)
  1810. {
  1811. printf("\r\n Connector[%d] Index: %2X, Status = %2d , %s", i, _chargingData[i]->Index, _chargingData[i]->SystemStatus,
  1812. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].Enable ? "Enable" : "Disable");
  1813. }
  1814. for(int i = 0; i < ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity; i++)
  1815. {
  1816. printf("\r\n Dispenser[%d] Status: %d", i, ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus);
  1817. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus != _DS_None &&
  1818. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus != _DS_Timeout)
  1819. {
  1820. ipAddress = 0;
  1821. for(int j = 0; j < GENERAL_GUN_QUANTITY; j++)
  1822. {
  1823. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[j].Status == _CNS_DispenserMatched &&
  1824. i == ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[j].DispenserIndex)
  1825. {
  1826. ipAddress = ShmSysConfigAndInfo->SysInfo.DispenserInfo.ConnectionInfo[j].IpAddress;
  1827. }
  1828. }
  1829. printf(", ModelName: %s, IP: %d.%d.%d.%d", ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ModelName,
  1830. ((ipAddress >> 0) & 0xFF), ((ipAddress >> 8) & 0xFF), ((ipAddress >> 16) & 0xFF), ((ipAddress >> 24) & 0xFF));
  1831. for(int j = 0; j < ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ConnectorQuantity; j++)
  1832. {
  1833. unsigned char gun = ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ConnectorID[j];
  1834. printf("\r\n - Connector[%d] Gun %d, %s", j, gun, _chargingData[gun - 1]->ConnectorPlugIn ? "Plugged" : "Unplugged");
  1835. }
  1836. }
  1837. else
  1838. {
  1839. printf(", No Information");
  1840. }
  1841. }
  1842. printf("\r\n\r\n");
  1843. }
  1844. void SetTestControl(char *v1, char *v2)
  1845. {
  1846. int testItem = 0;
  1847. int testItemLen = 3;
  1848. int enable = 0;
  1849. char strTest[32][32] = {"tbl", "tfsb", "chgsm"};
  1850. char strItem[32][32] = {"Balance", "Fast Standby Time", "Charging Simulation"};
  1851. enable = atoi(v2);
  1852. if(enable < 0)
  1853. {
  1854. return;
  1855. }
  1856. for(int i = 0; i < testItemLen; i++)
  1857. {
  1858. if(strcmp((char *)&strTest[i][0], v1) == 0)
  1859. {
  1860. testItem = i + 1;
  1861. break;
  1862. }
  1863. }
  1864. if(testItem != 0)
  1865. {
  1866. if(enable)
  1867. {
  1868. ShmChargerInfo->Control.TestCtrl.CtrlValue |= (1 << (testItem - 1));
  1869. }
  1870. else
  1871. {
  1872. ShmChargerInfo->Control.TestCtrl.CtrlValue &= ~(1 << (testItem - 1));
  1873. }
  1874. printf("%s %s Test Item, Test Control Value = %08X\n",
  1875. enable ? "Enable" : "Disable", strItem[testItem - 1], ShmChargerInfo->Control.TestCtrl.CtrlValue);
  1876. }
  1877. else
  1878. {
  1879. printf("Test Item %s Not Found\n", v1);
  1880. for(int i = 0; i < testItemLen; i++)
  1881. {
  1882. printf(" [%s] -> %s Test\n", strTest[i], strItem[i]);
  1883. }
  1884. }
  1885. printf("\r\n");
  1886. }
  1887. // Gun Role Master K1K2 GTVoltage GTCurrent StableCurrent OutputLoading GunLoading
  1888. // 1 00 00 0 0000 V 000.0 A 0000 A XXX.XX XXX.XX
  1889. void ShowGroupingDemand(void)
  1890. {
  1891. byte target = 0;
  1892. unsigned char k1k2 = 0;
  1893. printf("\r\n Gun Role Master K1K2 GTVoltage GTCurrent StableCurrent OutputLoading GunLoading");
  1894. for(int i = 0; i < 4; i++)
  1895. {
  1896. target = ShmPsuGrouping->Layout[i];
  1897. if(ShmChargerInfo->PsuGrouping.GroupCollection[target].TargetGroup != 0)
  1898. {
  1899. k1k2 = _chargingData[ShmChargerInfo->PsuGrouping.GroupCollection[target].TargetGroup - 1]->RelayK1K2Status;
  1900. }
  1901. else
  1902. {
  1903. k1k2 = _chargingData[target]->RelayK1K2Status;
  1904. }
  1905. printf("\r\n %d %2d %02X %d %4d V %3d.%d A %4d A %3d.%02d",
  1906. target + 1, ShmChargerInfo->PsuGrouping.GroupCollection[target].Role, ShmChargerInfo->PsuGrouping.GroupCollection[target].TargetGroup, k1k2,
  1907. (ShmPsuGrouping->GroupOutput[target].GTargetVoltage / 10),
  1908. (ShmPsuGrouping->GroupOutput[target].GTargetCurrent / 10),
  1909. (ShmPsuGrouping->GroupOutput[target].GTargetCurrent % 10),
  1910. (int)(_chargingData[target]->AvailableChargingCurrent / 10),
  1911. (ShmPsuGrouping->GroupOutput[target].OutputLoading / 100),
  1912. (ShmPsuGrouping->GroupOutput[target].OutputLoading % 100));
  1913. if(ShmChargerInfo->PsuGrouping.GroupCollection[target].TargetGroup == target + 1)
  1914. {
  1915. printf(" %3d.%02d", (ShmChargerInfo->PsuGrouping.GroupCollection[target].GunLoading / 100), (ShmChargerInfo->PsuGrouping.GroupCollection[target].GunLoading % 100));
  1916. }
  1917. }
  1918. printf("\r\n\r\n");
  1919. }
  1920. // v1: gun
  1921. // v2: voltage
  1922. // v3: current
  1923. void SetGunStartCharging(char *v1, char *v2, char *v3)
  1924. {
  1925. int gun = 0;
  1926. float _voltage = 0, _current = 0;
  1927. gun = atoi(v1);
  1928. _voltage = atof(v2);
  1929. _current = atof(v3);
  1930. if(gun <= 0 || gun > GENERAL_GUN_QUANTITY || _voltage < 0 || _voltage > 1000 || _current < 0 || _current > 1200)
  1931. {
  1932. printf("\r\nGun Start Charging Input parameter %s, %s, %s over range", v1, v2, v3);
  1933. printf("\r\n\r\n");
  1934. return;
  1935. }
  1936. /*
  1937. if(_chargingData[gun - 1]->SystemStatus == S_IDLE)
  1938. {
  1939. printf("\r\nSet Gun %d Start Charging > Voltage: %4d, Current: %d", gun, (int)_voltage, (int)_current);
  1940. ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.EnableForceCharging = true;
  1941. ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.StartForceCharging = true;
  1942. ShmChargerInfo->Control.FCharging[gun - 1].FTargetVoltage = _voltage * 10;
  1943. ShmChargerInfo->Control.FCharging[gun - 1].FTargetCurrent = _current * 10;
  1944. }
  1945. else if(ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].Role == _GROLE_MASTER)
  1946. {
  1947. if(ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.EnableForceCharging)
  1948. {
  1949. printf("\r\nSet Gun %d > Voltage: %4d, Current: %d", gun, (int)_voltage, (int)_current);
  1950. ShmChargerInfo->Control.FCharging[gun - 1].FTargetVoltage = _voltage * 10;
  1951. ShmChargerInfo->Control.FCharging[gun - 1].FTargetCurrent = _current * 10;
  1952. }
  1953. else
  1954. {
  1955. printf("\r\nGun %d Force Charging Is Disable", gun);
  1956. }
  1957. }
  1958. else
  1959. {
  1960. printf("\r\nGun %d SystemStatus(%d) Is Not Available", gun, _chargingData[gun - 1]->SystemStatus);
  1961. }
  1962. printf("\r\n\r\n");
  1963. */
  1964. bool wait = true;
  1965. int time = 0;
  1966. struct timespec _Wait_time;
  1967. unsigned char PreviousSystemStatus = 0xFF;
  1968. unsigned short _targetVoltage = 0, _targetCurrent = 0;
  1969. while(wait)
  1970. {
  1971. switch(_chargingData[gun - 1]->SystemStatus)
  1972. {
  1973. case S_IDLE:
  1974. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  1975. {
  1976. printf("\r\nGun %d S_IDLE", gun);
  1977. printf("\r\nSet Gun %d Start Charging > Voltage: %4d, Current: %d", gun, (int)_voltage, (int)_current);
  1978. ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.EnableForceCharging = true;
  1979. ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.StartForceCharging = true;
  1980. ShmChargerInfo->Control.FCharging[gun - 1].FTargetVoltage = _voltage * 10;
  1981. ShmChargerInfo->Control.FCharging[gun - 1].FTargetCurrent = _current * 10;
  1982. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  1983. }
  1984. break;
  1985. case S_REASSIGN_CHECK:
  1986. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  1987. {
  1988. printf("\r\nGun %d S_REASSIGN_CHECK, Wait For Request Charging", gun);
  1989. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  1990. }
  1991. break;
  1992. case S_REASSIGN:
  1993. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  1994. {
  1995. printf("\r\nGun %d S_REASSIGN, Wait For Grouping", gun);
  1996. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  1997. }
  1998. break;
  1999. case S_PREPARNING:
  2000. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2001. {
  2002. printf("\r\nGun %d S_PREPARNING", gun);
  2003. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2004. }
  2005. break;
  2006. case S_PREPARING_FOR_EV:
  2007. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2008. {
  2009. printf("\r\nGun %d S_PREPARING_FOR_EV", gun);
  2010. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2011. }
  2012. break;
  2013. case S_PREPARING_FOR_EVSE:
  2014. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2015. {
  2016. printf("\r\nGun %d S_PREPARING_FOR_EVSE, Wait For EVSE", gun);
  2017. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2018. }
  2019. if(_targetVoltage != (int)_chargingData[gun - 1]->EvBatterytargetVoltage ||
  2020. _targetCurrent != (int)_chargingData[gun - 1]->EvBatterytargetCurrent)
  2021. {
  2022. _targetVoltage = (int)_chargingData[gun - 1]->EvBatterytargetVoltage;
  2023. _targetCurrent = (int)_chargingData[gun - 1]->EvBatterytargetCurrent;
  2024. printf("\r\nGun %d Set Voltage: %4d, Current: %d", gun, _targetVoltage, _targetCurrent);
  2025. }
  2026. break;
  2027. case S_CHARGING:
  2028. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2029. {
  2030. printf("\r\nGun %d S_CHARGING", gun);
  2031. if(PreviousSystemStatus == 0xFF)
  2032. {
  2033. _targetVoltage = (int)_chargingData[gun - 1]->EvBatterytargetVoltage;
  2034. _targetCurrent = (int)_chargingData[gun - 1]->EvBatterytargetCurrent;
  2035. printf("\r\nGun %d Voltage: %4d, Current: %d", gun, _targetVoltage, _targetCurrent);
  2036. if(ShmChargerInfo->Control.FCharging[gun - 1].FCtrl.bits.EnableForceCharging)
  2037. {
  2038. printf("\r\nSet Gun %d Force Charging > Voltage: %4d, Current: %d", gun, (int)_voltage, (int)_current);
  2039. ShmChargerInfo->Control.FCharging[gun - 1].FTargetVoltage = _voltage * 10;
  2040. ShmChargerInfo->Control.FCharging[gun - 1].FTargetCurrent = _current * 10;
  2041. }
  2042. }
  2043. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2044. GetClockTime(&_Wait_time);
  2045. }
  2046. if(_targetVoltage != (int)_chargingData[gun - 1]->EvBatterytargetVoltage ||
  2047. _targetCurrent != (int)_chargingData[gun - 1]->EvBatterytargetCurrent)
  2048. {
  2049. _targetVoltage = (int)_chargingData[gun - 1]->EvBatterytargetVoltage;
  2050. _targetCurrent = (int)_chargingData[gun - 1]->EvBatterytargetCurrent;
  2051. printf("\r\nGun %d Set Voltage: %4d, Current: %d", gun, _targetVoltage, _targetCurrent);
  2052. }
  2053. time = GetTimeoutValue(_Wait_time) / uSEC_VAL;
  2054. if(time >= 3)
  2055. {
  2056. wait = false;
  2057. printf("\r\nDone");
  2058. }
  2059. break;
  2060. case S_TERMINATING:
  2061. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2062. {
  2063. printf("\r\nGun %d S_TERMINATING", gun);
  2064. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2065. }
  2066. wait = false;
  2067. break;
  2068. case S_COMPLETE:
  2069. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2070. {
  2071. printf("\r\nGun %d S_COMPLETE", gun);
  2072. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2073. }
  2074. wait = false;
  2075. break;
  2076. case S_ALARM:
  2077. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2078. {
  2079. printf("\r\nGun %d S_ALARM", gun);
  2080. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2081. }
  2082. wait = false;
  2083. break;
  2084. default:
  2085. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2086. {
  2087. printf("\r\nGun SystemStatus %d Unknown(%d)", gun, _chargingData[gun - 1]->SystemStatus);
  2088. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2089. }
  2090. printf("\r\nGun %d SystemStatus(%d) Is Not Available", gun, _chargingData[gun - 1]->SystemStatus);
  2091. wait = false;
  2092. break;
  2093. }
  2094. char word[128];
  2095. char newString[7][10];
  2096. int i,j,ctr;
  2097. memset(word, 0x00, sizeof(word));
  2098. get_char(word);
  2099. if (strlen(word) == 0)
  2100. {
  2101. continue;
  2102. }
  2103. j=0; ctr=0;
  2104. strcpy(newString[1], "-1");
  2105. strcpy(newString[2], "-1");
  2106. for (i = 0; i <= (strlen(word)); i++)
  2107. {
  2108. if (word[i] == ' ' || word[i] == '\0' || word[i] == 10)
  2109. {
  2110. newString[ctr][j] = '\0';
  2111. ctr++;
  2112. j = 0;
  2113. }
  2114. else
  2115. {
  2116. newString[ctr][j] = word[i];
  2117. j++;
  2118. }
  2119. }
  2120. if(strcmp(newString[0], "c") == 0)
  2121. {
  2122. printf("\r\nStop");
  2123. wait = false;
  2124. }
  2125. usleep(100000);
  2126. }
  2127. printf("\r\n\r\n");
  2128. }
  2129. // v1: gun
  2130. void SetGunStopCharging(char *v1)
  2131. {
  2132. int gun = 0;
  2133. gun = atoi(v1);
  2134. if(gun <= 0 || gun > GENERAL_GUN_QUANTITY)
  2135. {
  2136. printf("\r\nGun Stop Charging Input parameter %s over range", v1);
  2137. printf("\r\n\r\n");
  2138. return;
  2139. }
  2140. /*
  2141. if(_chargingData[gun - 1]->SystemStatus >= S_REASSIGN_CHECK && _chargingData[gun - 1]->SystemStatus <= S_CHARGING)
  2142. {
  2143. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2144. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2145. }
  2146. else if(ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].Role == _GROLE_SLAVE)
  2147. {
  2148. printf("\r\nSet Group [%02X] Stop", gun - 1);
  2149. ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].GroupCtrl.bits.SlavePowerOffRequest = true;
  2150. }
  2151. else
  2152. {
  2153. printf("\r\nGun %d SystemStatus(%d) Is Not Available", gun, _chargingData[gun - 1]->SystemStatus);
  2154. }
  2155. printf("\r\n\r\n");
  2156. */
  2157. bool wait = true;
  2158. int time = 0;
  2159. struct timespec _Wait_time;
  2160. unsigned char PreviousSystemStatus = 0xFF;
  2161. while(wait)
  2162. {
  2163. switch(_chargingData[gun - 1]->SystemStatus)
  2164. {
  2165. case S_IDLE:
  2166. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2167. {
  2168. printf("\r\nGun %d S_IDLE", gun);
  2169. if(PreviousSystemStatus == 0xFF)
  2170. {
  2171. if(ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].Role == _GROLE_SLAVE)
  2172. {
  2173. printf("\r\nSet Group [%02X] Stop", gun - 1);
  2174. ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].GroupCtrl.bits.SlavePowerOffRequest = true;
  2175. }
  2176. }
  2177. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2178. GetClockTime(&_Wait_time);
  2179. }
  2180. time = GetTimeoutValue(_Wait_time) / uSEC_VAL;
  2181. if(time >= 3)
  2182. {
  2183. wait = false;
  2184. printf("\r\nDone");
  2185. }
  2186. break;
  2187. case S_REASSIGN_CHECK:
  2188. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2189. {
  2190. printf("\r\nGun %d S_REASSIGN_CHECK, Wait For Request Charging", gun);
  2191. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2192. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2193. {
  2194. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2195. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2196. }
  2197. }
  2198. break;
  2199. case S_REASSIGN:
  2200. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2201. {
  2202. printf("\r\nGun %d S_REASSIGN, Wait For Grouping", gun);
  2203. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2204. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2205. {
  2206. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2207. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2208. }
  2209. }
  2210. break;
  2211. case S_PREPARNING:
  2212. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2213. {
  2214. printf("\r\nGun %d S_PREPARNING", gun);
  2215. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2216. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2217. {
  2218. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2219. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2220. }
  2221. }
  2222. break;
  2223. case S_PREPARING_FOR_EV:
  2224. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2225. {
  2226. printf("\r\nGun %d S_PREPARING_FOR_EV", gun);
  2227. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2228. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2229. {
  2230. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2231. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2232. }
  2233. }
  2234. break;
  2235. case S_PREPARING_FOR_EVSE:
  2236. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2237. {
  2238. printf("\r\nGun %d S_PREPARING_FOR_EVSE, Wait For EVSE", gun);
  2239. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2240. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2241. {
  2242. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2243. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2244. }
  2245. }
  2246. break;
  2247. case S_CHARGING:
  2248. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2249. {
  2250. printf("\r\nGun %d S_CHARGING", gun);
  2251. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2252. if(!_chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop)
  2253. {
  2254. _chargingData[gun - 1]->ChargingStopFlag.bits.ManualStop = true;
  2255. printf("\r\nSet Gun %d Stop Charging(ManualStop)", gun);
  2256. }
  2257. }
  2258. break;
  2259. case S_TERMINATING:
  2260. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2261. {
  2262. printf("\r\nGun %d S_TERMINATING", gun);
  2263. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2264. }
  2265. break;
  2266. case S_COMPLETE:
  2267. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2268. {
  2269. printf("\r\nGun %d S_COMPLETE", gun);
  2270. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2271. }
  2272. break;
  2273. case S_ALARM:
  2274. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2275. {
  2276. printf("\r\nGun %d S_ALARM", gun);
  2277. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2278. }
  2279. break;
  2280. default:
  2281. if(PreviousSystemStatus != _chargingData[gun - 1]->SystemStatus)
  2282. {
  2283. printf("\r\nGun SystemStatus %d Unknown(%d)", gun, _chargingData[gun - 1]->SystemStatus);
  2284. PreviousSystemStatus = _chargingData[gun - 1]->SystemStatus;
  2285. }
  2286. printf("\r\nGun %d SystemStatus(%d) Is Not Available", gun, _chargingData[gun - 1]->SystemStatus);
  2287. wait = false;
  2288. break;
  2289. }
  2290. char word[128];
  2291. char newString[7][10];
  2292. int i,j,ctr;
  2293. memset(word, 0x00, sizeof(word));
  2294. get_char(word);
  2295. if (strlen(word) == 0)
  2296. {
  2297. continue;
  2298. }
  2299. j=0; ctr=0;
  2300. strcpy(newString[1], "-1");
  2301. strcpy(newString[2], "-1");
  2302. for (i = 0; i <= (strlen(word)); i++)
  2303. {
  2304. if (word[i] == ' ' || word[i] == '\0' || word[i] == 10)
  2305. {
  2306. newString[ctr][j] = '\0';
  2307. ctr++;
  2308. j = 0;
  2309. }
  2310. else
  2311. {
  2312. newString[ctr][j] = word[i];
  2313. j++;
  2314. }
  2315. }
  2316. if(strcmp(newString[0], "c") == 0)
  2317. {
  2318. printf("\r\nStop");
  2319. wait = false;
  2320. }
  2321. usleep(100000);
  2322. }
  2323. printf("\r\n\r\n");
  2324. }
  2325. void SetGunExtend(char *v1)
  2326. {
  2327. int gun = 0;
  2328. gun = atoi(v1);
  2329. if(_chargingData[gun - 1]->SystemStatus == S_CHARGING && ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].Role == _GROLE_MASTER)
  2330. {
  2331. printf("\r\nSet Group [%02X] Extend Capability", gun - 1);
  2332. ShmChargerInfo->PsuGrouping.GroupCollection[gun - 1].GroupCtrl.bits.MorePowerRequest = true;
  2333. }
  2334. else
  2335. {
  2336. printf("\r\nGun %d Extend Capability Is Not Available, SystemStatus(%d)", gun, _chargingData[gun - 1]->SystemStatus);
  2337. }
  2338. printf("\r\n\r\n");
  2339. }
  2340. // Gun TargetV TargetC GTargetV GTargetC OutputV OutputC G_Psu_V G_Psu_C Psu 0_V Psu 0_C Psu 1_V Psu 1_C Psu 2_V Psu 2_C ...
  2341. // X XXXX.X V XXX.X A XXXX.X V XXX.X A XXXX.X V XXX.X A XXXX.X V XXX.X A XXXX.X V XXX.X A XXXX.X V XXX.X A XXXX.X V XXX.X A
  2342. void ShowGunOutput(void)
  2343. {
  2344. byte target = 0;
  2345. unsigned short voltage = 0, current = 0;
  2346. printf("\r\n Gun TargetV TargetC GTargetV GTargetC OutputV OutputC G_Psu_V G_Psu_C Psu 0_V Psu 0_C Psu 1_V Psu 1_C Psu 2_V Psu 2_C ...");
  2347. for(int i = 0; i < CONNECTOR_QUANTITY; i++)
  2348. {
  2349. target = ShmPsuGrouping->Layout[i];
  2350. // "\r\n %d %4d.%d V %3d.%d A %4d.%d V %3d.%d A %4d.%d V %3d.%d A %4d.%d V %3d.%d A %4d.%d V %3d.%d A %4d.%d V %3d.%d A"
  2351. voltage = (unsigned short)(_chargingData[target]->EvBatterytargetVoltage * 10);
  2352. current = (unsigned short)(_chargingData[target]->EvBatterytargetCurrent * 10);
  2353. printf("\r\n %d %4d.%d V %3d.%d A", target + 1, (voltage / 10), (voltage % 10), (current / 10), (current % 10));
  2354. voltage = ShmPsuGrouping->GroupOutput[target].GTargetVoltage;
  2355. current = ShmPsuGrouping->GroupOutput[target].GTargetCurrent;
  2356. printf(" %4d.%d V %3d.%d A", (voltage / 10), (voltage % 10), (current / 10), (current % 10));
  2357. voltage = (unsigned short)(_chargingData[target]->PresentChargingVoltage * 10);
  2358. current = (unsigned short)(_chargingData[target]->PresentChargingCurrent * 10);
  2359. printf(" %4d.%d V %3d.%d A", (voltage / 10), (voltage % 10), (current / 10), (current % 10));
  2360. voltage = ShmPsuData->PsuGroup[target].GroupPresentOutputVoltage;
  2361. current = ShmPsuData->PsuGroup[target].GroupPresentOutputCurrent;
  2362. printf(" %4d.%d V %3d.%d A", (voltage / 10), (voltage % 10), (current / 10), (current % 10));
  2363. /*
  2364. for(int j = 0; j < ShmPsuData->PsuGroup[target].GroupPresentPsuQuantity; j++)
  2365. {
  2366. printf(" %4d.%d V %3d.%d A", (voltage / 10), (voltage % 10), (current / 10), (current % 10));
  2367. }
  2368. */
  2369. }
  2370. printf("\r\n\r\n");
  2371. }
  2372. void SetGpio(char *v1, char *v2)
  2373. {
  2374. int testItem = 0;
  2375. int testItemLen = 1;
  2376. int ioOutput = 0;
  2377. char strTest[32][32] = {"4g"};
  2378. char strItem[32][32] = {"4G Reset"};
  2379. ioOutput = atoi(v2);
  2380. if(ioOutput < 0)
  2381. {
  2382. return;
  2383. }
  2384. for(int i = 0; i < testItemLen; i++)
  2385. {
  2386. if(strcmp((char *)&strTest[i][0], v1) == 0)
  2387. {
  2388. testItem = i + 1;
  2389. break;
  2390. }
  2391. }
  2392. if(testItem != 0)
  2393. {
  2394. if(ioOutput)
  2395. {
  2396. system("echo 1 > /sys/class/gpio/gpio104/value");
  2397. }
  2398. else
  2399. {
  2400. system("echo 0 > /sys/class/gpio/gpio104/value");
  2401. }
  2402. printf("Set %s %s\n",
  2403. strItem[testItem - 1], ioOutput > 0 ? "High" : "Low");
  2404. }
  2405. else
  2406. {
  2407. printf("Gpio Item %s Not Found\n", v1);
  2408. }
  2409. printf("\r\n");
  2410. }
  2411. void ShowStatus(void)
  2412. {
  2413. char *str_cabinet_role[] = {STR_CABINET_ROLE_NONE, STR_CABINET_ROLE_MASTER, STR_CABINET_ROLE_SLAVE};
  2414. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  2415. {
  2416. printf("\r\nGun %d Status = %d, IsAvailable = %d, GunEnable = %d",
  2417. i + 1,
  2418. _chargingData[i]->SystemStatus,
  2419. _chargingData[i]->IsAvailable,
  2420. ShmChargerInfo->Control.GunAvailable[i]);
  2421. printf("\r\nAlarmCode");
  2422. printf("\r\n Connector = %6s, EvConn = %6s, Remote = %6s, Vendor = %6s",
  2423. strncmp((char *)_chargingData[i]->ConnectorAlarmCode, "", 6) != 0 ?
  2424. (char *)_chargingData[i]->ConnectorAlarmCode : "No Err",
  2425. strncmp((char *)_chargingData[i]->EvConnAlarmCode, "", 6) != 0 ?
  2426. (char *)_chargingData[i]->ConnectorAlarmCode : "No Err",
  2427. strncmp((char *)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemotenAlarmCode, "", 6) != 0 ?
  2428. (char *)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemotenAlarmCode : "No Err",
  2429. strncmp((char *)ShmOCPP16Data->StatusNotification[i].VendorErrorCode, "", 6) != 0 ?
  2430. (char *)ShmOCPP16Data->StatusNotification[i].VendorErrorCode : "No Err");
  2431. }
  2432. printf("\r\n");
  2433. printf("\r\nPower Cabinet Role: %s, Switch Value: %d",
  2434. ShmChargerInfo->Control.CabinetSwitch <= _CROLE_SLAVE ? str_cabinet_role[ShmChargerInfo->Control.CabinetSwitch] : "Unknown",
  2435. ShmChargerInfo->Control.CabinetSwitch);
  2436. printf("\r\nStatus Code Len = %d", ShmSysConfigAndInfo->SysWarningInfo.WarningCount);
  2437. if(ShmSysConfigAndInfo->SysWarningInfo.WarningCount > 0)
  2438. {
  2439. printf("\r\n WarningCode:");
  2440. for(int i = 0; i < ShmSysConfigAndInfo->SysWarningInfo.WarningCount; i++)
  2441. {
  2442. printf(" %s", (char *)&ShmSysConfigAndInfo->SysWarningInfo.WarningCode[i][0]);
  2443. }
  2444. }
  2445. printf("\r\n\r\n");
  2446. }
  2447. void ShowWhiteCardList(void)
  2448. {
  2449. printf("\r\nWhite Card List");
  2450. for(int i = 0; i < 10; i++)
  2451. {
  2452. printf("\r\n White Card [%2d]: %s", i + 1, (char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[i]);
  2453. }
  2454. printf("\r\n\r\n");
  2455. }
  2456. void WriteWhiteCard(char *v1, char *v2)
  2457. {
  2458. int cardIndex = 0;
  2459. cardIndex = atoi(v1);
  2460. if(cardIndex < 1 || cardIndex > 10)
  2461. {
  2462. printf("\r\n White Card Index Fail\r\n\r\n");
  2463. return;
  2464. }
  2465. if(strlen(v2) == 0 || strlen(v2) > 31)
  2466. {
  2467. printf("\r\n White Card Fail\r\n\r\n");
  2468. return;
  2469. }
  2470. printf("\r\n Str Len = %d = %s", strlen(v2), v2);
  2471. printf("\r\n Set White Card Index %d = %s", cardIndex, v2);
  2472. memcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[cardIndex - 1][0], v2, strlen(v2));
  2473. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.FlashConfigChanged = true;
  2474. printf("\r\n\r\n");
  2475. }
  2476. void EraseWhiteCard(char *v1)
  2477. {
  2478. int cardIndex = 0;
  2479. cardIndex = atoi(v1);
  2480. if(cardIndex < 1 || cardIndex > 10)
  2481. {
  2482. printf("\r\n White Card Index Fail\r\n\r\n");
  2483. return;
  2484. }
  2485. printf("\r\n Erase White Card Index = %d", cardIndex);
  2486. memset((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[cardIndex - 1][0], 0x00, 32);
  2487. ShmSysConfigAndInfo->SysInfo.CabinetSetting.bits.FlashConfigChanged = true;
  2488. printf("\r\n\r\n");
  2489. }
  2490. void ShowChargerLimit(void)
  2491. {
  2492. int limitPower = -1;
  2493. char *str_gun_type[] = {STR_GUN_TYPE_CHADEMO, STR_GUN_TYPE_CCS, STR_GUN_TYPE_GBT};
  2494. unsigned char inUsingCnt = 0;
  2495. printf("\r\nCharger Limit");
  2496. printf("\r\n System Psu Cnt: %2d", ShmPsuData->SystemPresentPsuQuantity);
  2497. printf("\r\n Charger Max ChargingProfile Power: %d kW", ShmSysConfigAndInfo->SysInfo.MaxChargingProfilePower == -1 ?
  2498. (int)ShmSysConfigAndInfo->SysInfo.MaxChargingProfilePower : (int)ShmSysConfigAndInfo->SysInfo.MaxChargingProfilePower / 1000);
  2499. printf("\r\n Max Total Current: %d A, Max Total Power: %d kW, Total Energy: %d kW, Total Duration %d",
  2500. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent, ShmSysConfigAndInfo->SysConfig.MaxChargingPower,
  2501. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy, ShmSysConfigAndInfo->SysConfig.MaxChargingDuration);
  2502. printf("\r\n\r\n Gun Enable Type Psu Phy_Vol Phy_Cur Config_Ocpp_MaxOcpp_Pow Config_Ocpp_MaxOcpp_Cur");
  2503. for(int i = 0; i < GENERAL_GUN_QUANTITY; i++)
  2504. {
  2505. inUsingCnt = 0;
  2506. for(int j = 0; j < GENERAL_GUN_QUANTITY; j++)
  2507. {
  2508. if(ShmChargerInfo->PsuGrouping.GroupCollection[j].Role == _GROLE_MASTER)
  2509. {
  2510. inUsingCnt += ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity;
  2511. }
  2512. }
  2513. // Gun Enable Type Psu Phy_Vol Phy_Cur Config_Ocpp_MaxOcpp_Pow Config_Ocpp_MaxOcpp_Cur
  2514. // 1 0 CHAdeMO 00 0000 V 0000 A 0000 / 0000 / 0000 kW 0000 / 0000 A
  2515. // Gun 1 Enable, Type: CCS, Psu Cnt: 00, Max Physical Vol: 0000 V, Cur: 0000 A, Max Config Pow: 0000 kW, Cur: 0000 A
  2516. printf("\r\n %d %d ", i + 1, ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].Enable);
  2517. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].Enable)
  2518. {
  2519. printf(" %7s %2d",
  2520. _chargingData[i]->Type <= _Type_GB ? str_gun_type[_chargingData[i]->Type] : "???",
  2521. ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity);
  2522. printf(" %4d V %4d A",
  2523. (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalVoltage / 10),
  2524. (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalCurrent / 10));
  2525. if(ShmSysConfigAndInfo->SysInfo.MaxChargingProfilePower != -1)
  2526. {
  2527. limitPower = (int)ShmSysConfigAndInfo->SysInfo.MaxChargingProfilePower;
  2528. if(inUsingCnt > 0)
  2529. {
  2530. limitPower = (limitPower * ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity) / inUsingCnt;
  2531. }
  2532. }
  2533. else
  2534. {
  2535. limitPower = -1;
  2536. }
  2537. printf(" %4d / %4d / %4d kW",
  2538. (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].MaxTotalChargingPower / 10),
  2539. _chargingData[i]->ChargingProfilePower == -1 ? (int)_chargingData[i]->ChargingProfilePower : ((int)_chargingData[i]->ChargingProfilePower / 1000),
  2540. limitPower == -1 ? limitPower : (limitPower / 1000));
  2541. printf(" %4d / %4d A",
  2542. ((int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].MaxTotalChargingCurrent / 10),
  2543. _chargingData[i]->ChargingProfileCurrent == -1 ? (int)_chargingData[i]->ChargingProfileCurrent : ((int)_chargingData[i]->ChargingProfileCurrent / 10));
  2544. }
  2545. }
  2546. printf("\r\n\r\n");
  2547. }
  2548. void SetGunCommand(char *v1, char *v2, char *v3)
  2549. {
  2550. int cmdItem = 0;
  2551. int cmdItemLen = 2;
  2552. int gunID = 0;
  2553. int enable = 0;
  2554. char strGunCmd[32][32] = {"enable", "operative"};
  2555. char strDescription[32][32] = {"Available", "Operative"};
  2556. gunID = atoi(v2);
  2557. enable = atoi(v3);
  2558. if(gunID <= 0 || gunID > CONNECTOR_QUANTITY || enable < 0)
  2559. {
  2560. return;
  2561. }
  2562. for(int i = 0; i < cmdItemLen; i++)
  2563. {
  2564. if(strcmp((char *)&strGunCmd[i][0], v1) == 0)
  2565. {
  2566. cmdItem = i + 1;
  2567. break;
  2568. }
  2569. }
  2570. if(cmdItem != 0)
  2571. {
  2572. switch(cmdItem)
  2573. {
  2574. case 1:
  2575. ShmChargerInfo->Control.GunAvailable[gunID - 1] = enable > 0 ? YES : NO;
  2576. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[gunID - 1].Parameter.bits.AvailabilityRequest = true;
  2577. break;
  2578. case 2:
  2579. _chargingData[gunID - 1]->IsAvailable = enable > 0 ? YES : NO;
  2580. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[gunID - 1].Parameter.bits.AvailabilityRequest = true;
  2581. break;
  2582. }
  2583. printf("Gun cmd [%s] [%s]\n", strDescription[cmdItem - 1], enable ? "Enable" : "Disable");
  2584. }
  2585. else
  2586. {
  2587. printf("Gun cmd %s not found\n", v1);
  2588. for(int i = 0; i < cmdItemLen; i++)
  2589. {
  2590. printf(" [%s] -> %s Test\n", strGunCmd[i], strDescription[i]);
  2591. }
  2592. }
  2593. printf("\r\n");
  2594. }
  2595. int main(void)
  2596. {
  2597. if(InitShareMemory() == FAIL)
  2598. {
  2599. printf ("InitShareMemory = FAIL \n");
  2600. if(ShmStatusCodeData != NULL)
  2601. {
  2602. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  2603. }
  2604. sleep(5);
  2605. return 0;
  2606. }
  2607. for(int i = 0; i < CONNECTOR_QUANTITY; i++)
  2608. {
  2609. if (!FindChargingInfoData(i, &_chargingData[0]))
  2610. {
  2611. return 0;
  2612. }
  2613. }
  2614. /*
  2615. memset(&ShmChargerInfo->PsuGrouping.GroupCollection[0], 0x00, sizeof(PsuGroupCollectionData));
  2616. memset(&ShmChargerInfo->PsuGrouping.GroupCollection[1], 0x00, sizeof(PsuGroupCollectionData));
  2617. memset(&ShmChargerInfo->PsuGrouping.GroupCollection[2], 0x00, sizeof(PsuGroupCollectionData));
  2618. memset(&ShmChargerInfo->PsuGrouping.GroupCollection[3], 0x00, sizeof(PsuGroupCollectionData));
  2619. ShmChargerInfo->PsuGrouping.GroupCollection[0].Index = 0;
  2620. ShmChargerInfo->PsuGrouping.GroupCollection[1].Index = 1;
  2621. ShmChargerInfo->PsuGrouping.GroupCollection[2].Index = 2;
  2622. ShmChargerInfo->PsuGrouping.GroupCollection[3].Index = 3;
  2623. ShmChargerInfo->PsuGrouping.GroupCollection[0].Location = 0;
  2624. ShmChargerInfo->PsuGrouping.GroupCollection[1].Location = 3;
  2625. ShmChargerInfo->PsuGrouping.GroupCollection[2].Location = 1;
  2626. ShmChargerInfo->PsuGrouping.GroupCollection[3].Location = 2;
  2627. */
  2628. for(;;)
  2629. {
  2630. char word[128];
  2631. char newString[7][32];
  2632. int i,j,ctr;
  2633. fgets(word, sizeof(word), stdin);
  2634. j=0; ctr=0;
  2635. strcpy(newString[1], "-1");
  2636. strcpy(newString[2], "-1");
  2637. for (i = 0; i <= (strlen(word)); i++)
  2638. {
  2639. if (word[i] == ' ' || word[i] == '\0' || word[i] == 10)
  2640. {
  2641. newString[ctr][j] = '\0';
  2642. ctr++;
  2643. j = 0;
  2644. }
  2645. else
  2646. {
  2647. newString[ctr][j] = word[i];
  2648. j++;
  2649. }
  2650. }
  2651. if(strcmp(newString[0], "state") == 0)
  2652. {
  2653. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2654. continue;
  2655. // 槍狀態
  2656. RunStatusProc(newString[1], newString[2]);
  2657. }
  2658. else if(strcmp(newString[0], "card") == 0)
  2659. {
  2660. // 刷卡狀態
  2661. RunCardProc(newString[1], newString[2]);
  2662. }
  2663. else if(strcmp(newString[0], "gun") == 0)
  2664. {
  2665. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2666. continue;
  2667. // 插槍狀態
  2668. RunGunPlugitProc(newString[1], newString[2]);
  2669. }
  2670. else if(strcmp(newString[0], "lock") == 0)
  2671. {
  2672. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2673. continue;
  2674. // 插槍狀態
  2675. GetGunLockStatusProc(newString[1], newString[2]);
  2676. }
  2677. else if(strcmp(newString[0], "sysid") == 0)
  2678. {
  2679. // 測試 sys id
  2680. SetSystemIDProc();
  2681. }
  2682. else if(strcmp(newString[0], "self") == 0)
  2683. {
  2684. // CSU 自我檢測狀態
  2685. RunSelfProc(newString[1]);
  2686. }
  2687. else if(strcmp(newString[0], "ver") == 0)
  2688. {
  2689. //if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2690. // continue;
  2691. // 取 FW 版號
  2692. //GetFwVerProc(newString[1]);
  2693. ShowFwVer();
  2694. }
  2695. else if (strcmp(newString[0], "update") == 0)
  2696. {
  2697. // 更新
  2698. FwUpdateFlagProc(newString[1]);
  2699. }
  2700. else if (strcmp(newString[0], "ac") == 0)
  2701. {
  2702. // AC contactor 狀態
  2703. CheckAcStatus(newString[1]);
  2704. }
  2705. else if (strcmp(newString[0], "cable") == 0)
  2706. {
  2707. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2708. continue;
  2709. // cable check pass
  2710. SetCableChkStatus(newString[1], newString[2]);
  2711. }
  2712. else if (strcmp(newString[0], "pow") == 0)
  2713. {
  2714. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2715. continue;
  2716. // cable check pass
  2717. SetPowerValue(newString[1], newString[2]);
  2718. }
  2719. else if (strcmp(newString[0], "model") == 0)
  2720. {
  2721. GetSystemInfo();
  2722. }
  2723. else if(strcmp(newString[0], "select") == 0)
  2724. {
  2725. // 取得 / 設定 當前選的槍號
  2726. GetGunSelectedNum(newString[1]);
  2727. }
  2728. else if(strcmp(newString[0], "change") == 0)
  2729. {
  2730. // 模擬按鈕改變選槍
  2731. ChangeGunNum();
  2732. }
  2733. else if(strcmp(newString[0], "fan") == 0)
  2734. {
  2735. // 設定風扇速度
  2736. SetFanSpeed(newString[1]);
  2737. }
  2738. else if(strcmp(newString[0], "speed") == 0)
  2739. {
  2740. // 取得風扇速度
  2741. GetFanSpeed();
  2742. }
  2743. else if(strcmp(newString[0], "debug") == 0)
  2744. {
  2745. // 設定 debug mode
  2746. SetDebugMode(newString[1]);
  2747. }
  2748. else if (strcmp(newString[0], "gfd") == 0)
  2749. {
  2750. // 設定盲沖使用 GFD 功能
  2751. SetGFDMode(newString[1]);
  2752. }
  2753. else if(strcmp(newString[0], "temp") == 0)
  2754. {
  2755. // 取得溫度
  2756. GetTemperature(newString[1]);
  2757. }
  2758. else if(strcmp(newString[0], "acin") == 0)
  2759. {
  2760. // 取得三向輸入電壓
  2761. GetAcInputVol();
  2762. }
  2763. else if(strcmp(newString[0], "psu") == 0)
  2764. {
  2765. //如果連一個參數都沒有 (此命令不理會) 加上判斷第二參數
  2766. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2767. {
  2768. printf ("PSU : Param fail..Please retry again......\n");
  2769. continue;
  2770. }
  2771. // 取得 PSU 資訊
  2772. GetPsuInformation(newString[1], newString[2], newString[3]);
  2773. }
  2774. else if (strcmp(newString[0], "cap") == 0)
  2775. {
  2776. GetConnectorCapInfo(newString[1]);
  2777. }
  2778. else if(strcmp(newString[0], "error") == 0)
  2779. {
  2780. CreateOneError(newString[1]);
  2781. }
  2782. else if (strcmp(newString[0], "auth") == 0)
  2783. {
  2784. GetAuthorizeFlag(newString[1]);
  2785. }
  2786. else if (strcmp(newString[0], "id") == 0)
  2787. {
  2788. GetOrClearId(newString[1]);
  2789. }
  2790. #if 0
  2791. else if(strcmp(newString[0], "strchg") == 0)
  2792. {
  2793. //如果連一個參數都沒有 (此命令不理會) 加上判斷第二參數
  2794. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2795. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  2796. {
  2797. printf ("Input cmd fail ------ strchg [vol 150-1000] [cru 2-100]\n");
  2798. continue;
  2799. }
  2800. // 槍狀態
  2801. RunUnconditionalChargeIndex1(newString[1], newString[2], newString[3]);
  2802. }
  2803. else if(strcmp(newString[0], "str2chg") == 0)
  2804. {
  2805. //如果連一個參數都沒有 (此命令不理會) 加上判斷第二參數
  2806. if (strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2807. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0 ||
  2808. strcmp(newString[3], "-1") == 0 || strcmp(newString[3], "") == 0 ||
  2809. strcmp(newString[4], "-1") == 0 || strcmp(newString[4], "") == 0)
  2810. {
  2811. printf ("Input cmd fail ------ strchg [vol 150-1000] [cru 2-100]\n");
  2812. continue;
  2813. }
  2814. // 槍狀態
  2815. RunUnconditionalCharge(newString[1], newString[2], newString[3], newString[4]);
  2816. }
  2817. #endif
  2818. else if(strcmp(newString[0], "wiring") == 0)
  2819. {
  2820. if(strcmp(newString[1], "-1") != 0 && strcmp(newString[1], "") != 0 &&
  2821. strcmp(newString[2], "-1") != 0 && strcmp(newString[2], "") != 0)
  2822. {
  2823. SetWiringInfo(newString[1], newString[2]);
  2824. }
  2825. ShowWiringInfo();
  2826. }
  2827. else if(strcmp(newString[0], "cwiring") == 0)
  2828. {
  2829. CleanWiringInfo();
  2830. }
  2831. else if(strcmp(newString[0], "reset") == 0)
  2832. {
  2833. SetSystemSoftRest();
  2834. }
  2835. else if(strcmp(newString[0], "reboot") == 0)
  2836. {
  2837. SetSystemHardReboot();
  2838. }
  2839. else if(strcmp(newString[0], "sgroup") == 0)
  2840. {
  2841. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2842. {
  2843. ShowGroupingInfo();
  2844. continue;
  2845. }
  2846. RunSimplePsuGrouping(newString[1], newString[2]);
  2847. }
  2848. else if(strcmp(newString[0], "cabinet") == 0)
  2849. {
  2850. ShowCabinetInfo();
  2851. }
  2852. else if(strcmp(newString[0], "tctl") == 0)
  2853. {
  2854. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2855. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  2856. {
  2857. printf("Test Control Value = %08X\n",ShmChargerInfo->Control.TestCtrl.CtrlValue);
  2858. printf ("Input cmd fail ------ tctl [tcmd] [value]\n\n");
  2859. continue;
  2860. }
  2861. SetTestControl(newString[1], newString[2]);
  2862. }
  2863. else if(strcmp(newString[0], "group") == 0)
  2864. {
  2865. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2866. {
  2867. ShowGroupingInfo();
  2868. continue;
  2869. }
  2870. }
  2871. else if(strcmp(newString[0], "gdmd") == 0)
  2872. {
  2873. ShowGroupingDemand();
  2874. }
  2875. else if(strcmp(newString[0], "gunchg") == 0)
  2876. {
  2877. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2878. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0 ||
  2879. strcmp(newString[3], "-1") == 0 || strcmp(newString[3], "") == 0)
  2880. {
  2881. printf ("Input cmd fail ------ gunchg [gun 1-4] [voltage 0-1000] [current 0-100]\n\n");
  2882. continue;
  2883. }
  2884. SetGunStartCharging(newString[1], newString[2], newString[3]);
  2885. }
  2886. else if(strcmp(newString[0], "gunstp") == 0)
  2887. {
  2888. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2889. {
  2890. printf ("Input cmd fail ------ gunstp [gun 1-4]\n\n");
  2891. continue;
  2892. }
  2893. SetGunStopCharging(newString[1]);
  2894. }
  2895. else if(strcmp(newString[0], "gunext") == 0)
  2896. {
  2897. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2898. {
  2899. printf ("Input cmd fail ------ gunext [gun 1-4]\n\n");
  2900. continue;
  2901. }
  2902. SetGunExtend(newString[1]);
  2903. }
  2904. else if(strcmp(newString[0], "output") == 0)
  2905. {
  2906. ShowGunOutput();
  2907. }
  2908. else if(strcmp(newString[0], "gio") == 0)
  2909. {
  2910. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2911. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  2912. {
  2913. printf ("Input cmd fail ------ gio [io] [on-off 0-1]\n\n");
  2914. continue;
  2915. }
  2916. SetGpio(newString[1], newString[2]);
  2917. }
  2918. else if(strcmp(newString[0], "status") == 0)
  2919. {
  2920. ShowStatus();
  2921. }
  2922. else if(strcmp(newString[0], "whiteR") == 0)
  2923. {
  2924. ShowWhiteCardList();
  2925. }
  2926. else if(strcmp(newString[0], "whiteW") == 0)
  2927. {
  2928. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2929. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0)
  2930. {
  2931. printf ("Input cmd fail ------ whiteW [index 1-10] [card id]\n\n");
  2932. continue;
  2933. }
  2934. WriteWhiteCard(newString[1], newString[2]);
  2935. }
  2936. else if(strcmp(newString[0], "whiteE") == 0)
  2937. {
  2938. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0)
  2939. {
  2940. printf ("Input cmd fail ------ whiteE [index 1-10]\n\n");
  2941. continue;
  2942. }
  2943. EraseWhiteCard(newString[1]);
  2944. }
  2945. else if(strcmp(newString[0], "limit") == 0)
  2946. {
  2947. ShowChargerLimit();
  2948. }
  2949. else if(strcmp(newString[0], "pcmd") == 0)
  2950. {
  2951. }
  2952. else if(strcmp(newString[0], "gcmd") == 0)
  2953. {
  2954. if(strcmp(newString[1], "-1") == 0 || strcmp(newString[1], "") == 0 ||
  2955. strcmp(newString[2], "-1") == 0 || strcmp(newString[2], "") == 0 ||
  2956. strcmp(newString[3], "-1") == 0 || strcmp(newString[3], "") == 0)
  2957. {
  2958. printf ("Input cmd fail ------ gcmd [cmd] [gun] [value]\n\n");
  2959. continue;
  2960. }
  2961. SetGunCommand(newString[1], newString[2], newString[3]);
  2962. }
  2963. else
  2964. printf ("%s\n", msg);
  2965. usleep(100000);
  2966. }
  2967. return 0;
  2968. }