ReadCmdline.c 121 KB

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