main.c 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557
  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <sys/time.h>
  4. #include <sys/timeb.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/mman.h>
  11. #include <linux/wireless.h>
  12. #include <arpa/inet.h>
  13. #include <netinet/in.h>
  14. #include <unistd.h>
  15. #include <stdarg.h>
  16. #include <stdio.h> /*標準輸入輸出定義*/
  17. #include <stdlib.h> /*標準函數庫定義*/
  18. #include <unistd.h> /*Unix 標準函數定義*/
  19. #include <fcntl.h> /*檔控制定義*/
  20. #include <termios.h> /*PPSIX 終端控制定義*/
  21. #include <errno.h> /*錯誤號定義*/
  22. #include <errno.h>
  23. #include <string.h>
  24. #include <stdint.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "../../define.h"
  30. #include "Config.h"
  31. #include <stdbool.h>
  32. #include <dirent.h>
  33. #include "timeout.h"
  34. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  35. #define PASS 1
  36. #define FAIL -1
  37. #define BUFFER_SIZE 128
  38. #define YES 1
  39. #define NO 0
  40. #define NORMAL 0
  41. #define ABNORMAL 1
  42. #define EQUAL 0
  43. #define BTN_RELEASE 0
  44. #define BTN_PRESS 1
  45. #define MAX_BUF 64
  46. #define MtdBlockSize 0x600000
  47. #define SYSFS_GPIO_DIR "/sys/class/gpio"
  48. #define UPGRADE_FAN 0x02
  49. #define UPGRADE_RB 0x03
  50. #define UPGRADE_PRI 0x04
  51. #define UPGRADE_AC 0x05
  52. #define SYSTEM_MIN_VOL 150
  53. #define NO_DEFINE 255
  54. #define DEFAULT_AC_INDEX 2
  55. char *valid_Internet[2] = {"8.8.8.8", "180.76.76.76"};
  56. unsigned char mask_table[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
  57. int whileLoopTime = 10000; // 10 ms
  58. int wtdFd = -1;
  59. bool IsAuthorizingMode();
  60. void ClearAuthorizedFlag();
  61. bool isDetectPlugin();
  62. void ClearDetectPluginFlag();
  63. int mystrcmp(unsigned char *p1, unsigned char *p2);
  64. unsigned char DetectBitValue(unsigned char _byte, unsigned char _bit);
  65. void SetBitValue(unsigned char *_byte, unsigned char _bit, unsigned char value);
  66. void ChargingTerminalProcess(byte gunIndex);
  67. void ChkPrimaryStatus();
  68. void StartSystemTimeoutDet(unsigned char flag);
  69. void StopSystemTimeoutDet();
  70. void StartGunInfoTimeoutDet(unsigned char gunIndex, unsigned char flag);
  71. void StopGunInfoTimeoutDet(unsigned char gunIndex);
  72. int StoreLogMsg_1(const char *fmt, ...);
  73. unsigned long GetTimeoutValue(struct timeval _sour_time);
  74. void gpio_set_value(unsigned int gpio, unsigned int value);
  75. void PRINTF_FUNC(char *string, ...);
  76. void ChangeGunSelectByIndex(byte sel);
  77. void RecordAlarmCode(byte gunIndex, char *code);
  78. void RecordWarningCode(byte gunIndex, char *code);
  79. void ReleaseWarningCodeByString(byte gunIndex, char *code);
  80. void ReleaseAlarmCode(byte gunIndex);
  81. #define DEBUG_INFO_MSG(format, args...) StoreLogMsg_1("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  82. #define DEBUG_WARN_MSG(format, args...) StoreLogMsg_1("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  83. #define DEBUG_ERROR_MSG(format, args...) StoreLogMsg_1("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  84. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  85. struct StatusCodeData *ShmStatusCodeData;
  86. struct PsuData *ShmPsuData;
  87. struct CHAdeMOData *ShmCHAdeMOData;
  88. struct GBTData *ShmGBTData;
  89. struct CcsData *ShmCcsData;
  90. struct PrimaryMcuData *ShmPrimaryMcuData;
  91. struct FanModuleData *ShmFanModuleData;
  92. struct RelayModuleData *ShmRelayModuleData;
  93. struct OCPP16Data *ShmOCPP16Data;
  94. struct ChargingInfoData *chargingInfo[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  95. struct ChargingInfoData *ac_chargingInfo[AC_QUANTITY];
  96. struct timeb startChargingTime[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  97. struct timeb endChargingTime[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  98. // for initial index to check EV board type is correct
  99. byte _gunIndex = 0;
  100. byte _acgunIndex = 0;
  101. byte _chademoIndex = 0;
  102. byte _ccsIndex = 0;
  103. byte _gb_Index = 0;
  104. byte _ac_Index = 0;
  105. byte bd0_1_status = 0;
  106. byte bd0_2_status = 0;
  107. byte bd1_1_status = 0;
  108. byte bd1_2_status = 0;
  109. bool isCardScan = false;
  110. bool isModelNameMatch = true;
  111. int rfidFd = -1;
  112. char* rfidPortName = "/dev/ttyS2";
  113. char* fwVersion = "D0.13.00.0000.00";
  114. //================================================
  115. // initial can-bus
  116. //================================================
  117. int InitCanBus()
  118. {
  119. int s0,nbytes;
  120. struct timeval tv;
  121. struct ifreq ifr0;
  122. struct sockaddr_can addr0;
  123. system("/sbin/ip link set can0 down");
  124. system("/sbin/ip link set can0 type can bitrate 500000 restart-ms 100");
  125. system("/sbin/ip link set can0 up");
  126. s0 = socket(PF_CAN, SOCK_RAW, CAN_RAW);
  127. tv.tv_sec = 0;
  128. tv.tv_usec = 10000;
  129. if (setsockopt(s0, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct timeval)) < 0)
  130. {
  131. #ifdef SystemLogMessage
  132. DEBUG_ERROR_MSG("Set SO_RCVTIMEO NG");
  133. #endif
  134. }
  135. nbytes=40960;
  136. if (setsockopt(s0, SOL_SOCKET, SO_RCVBUF, &nbytes, sizeof(int)) < 0)
  137. {
  138. #ifdef SystemLogMessage
  139. DEBUG_ERROR_MSG("Set SO_RCVBUF NG");
  140. #endif
  141. }
  142. nbytes=40960;
  143. if (setsockopt(s0, SOL_SOCKET, SO_SNDBUF, &nbytes, sizeof(int)) < 0)
  144. {
  145. #ifdef SystemLogMessage
  146. DEBUG_ERROR_MSG("Set SO_SNDBUF NG");
  147. #endif
  148. }
  149. strcpy(ifr0.ifr_name, "can0" );
  150. ioctl(s0, SIOCGIFINDEX, &ifr0); /* ifr.ifr_ifindex gets filled with that device's index */
  151. addr0.can_family = AF_CAN;
  152. addr0.can_ifindex = ifr0.ifr_ifindex;
  153. bind(s0, (struct sockaddr *)&addr0, sizeof(addr0));
  154. return s0;
  155. }
  156. //================================================
  157. // initial uart port
  158. //================================================
  159. char *_priPortName = "/dev/ttyS1";
  160. char *_485PortName = "/dev/ttyS5";
  161. int InitComPort(byte target)
  162. {
  163. int fd;
  164. struct termios tios;
  165. if(target == UPGRADE_PRI)
  166. fd = open(_priPortName, O_RDWR);
  167. else if (target == UPGRADE_FAN || target == UPGRADE_RB || target == UPGRADE_AC)
  168. fd = open(_485PortName, O_RDWR);
  169. if(fd<=0)
  170. {
  171. #ifdef SystemLogMessage
  172. DEBUG_ERROR_MSG("open 407 Communication port NG \n");
  173. #endif
  174. return -1;
  175. }
  176. ioctl (fd, TCGETS, &tios);
  177. tios.c_cflag = B115200| CS8 | CLOCAL | CREAD;
  178. tios.c_lflag = 0;
  179. tios.c_iflag = 0;
  180. tios.c_oflag = 0;
  181. tios.c_cc[VMIN]=0;
  182. tios.c_cc[VTIME]=(unsigned char)1;
  183. tios.c_lflag=0;
  184. tcflush(fd, TCIFLUSH);
  185. ioctl (fd, TCSETS, &tios);
  186. return fd;
  187. }
  188. //=================================
  189. // Common routine
  190. //=================================
  191. int InitWatchDog()
  192. {
  193. int fd;
  194. system("/usr/bin/fuser -k /dev/watchdog");
  195. sleep(1);
  196. system("echo V > /dev/watchdog");
  197. sleep(1);
  198. fd=open("/dev/watchdog", O_RDWR);
  199. if(fd<=0)
  200. {
  201. DEBUG_ERROR_MSG("System watch dog initial fail.\r\n");
  202. }
  203. return fd;
  204. }
  205. int StoreLogMsg_1(const char *fmt, ...)
  206. {
  207. char Buf[4096+256];
  208. char buffer[4096];
  209. time_t CurrentTime;
  210. struct tm *tm;
  211. va_list args;
  212. va_start(args, fmt);
  213. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  214. va_end(args);
  215. memset(Buf,0,sizeof(Buf));
  216. CurrentTime = time(NULL);
  217. tm=localtime(&CurrentTime);
  218. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  219. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  220. buffer,
  221. tm->tm_year+1900,tm->tm_mon+1);
  222. system(Buf);
  223. return rc;
  224. }
  225. unsigned long GetTimeoutValue(struct timeval _sour_time)
  226. {
  227. struct timeval _end_time;
  228. gettimeofday(&_end_time, NULL);
  229. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  230. }
  231. int mystrcmp(unsigned char *p1, unsigned char *p2)
  232. {
  233. while(*p1==*p2)
  234. {
  235. if(*p1=='\0' || *p2=='\0')
  236. break;
  237. p1++;
  238. p2++;
  239. }
  240. if(*p1=='\0' && *p2=='\0')
  241. return(PASS);
  242. else
  243. return(FAIL);
  244. }
  245. int DiffTimeb(struct timeb ST, struct timeb ET)
  246. {
  247. //return milli-second
  248. unsigned int StartTime,StopTime;
  249. StartTime=(unsigned int)ST.time;
  250. StopTime=(unsigned int)ET.time;
  251. return (StopTime-StartTime);
  252. }
  253. bool CheckTimeOut(struct timeb ST)
  254. {
  255. struct timeb ET;
  256. unsigned int StartTime, StopTime;
  257. ftime(&ET);
  258. StartTime = (unsigned int) ST.time;
  259. StopTime = (unsigned int) ET.time;
  260. return (StopTime > StartTime)? YES : NO;
  261. }
  262. void setChargerMode(byte gun_index, byte mode)
  263. {
  264. chargingInfo[gun_index]->SystemStatus = mode;
  265. }
  266. void PRINTF_FUNC(char *string, ...)
  267. {
  268. va_list args;
  269. char buffer[4096];
  270. va_start(args, string);
  271. vsnprintf(buffer, sizeof(buffer), string, args);
  272. va_end(args);
  273. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == YES)
  274. printf("%s \n", buffer);
  275. else
  276. DEBUG_INFO_MSG("%s \n", buffer);
  277. }
  278. //==========================================
  279. // Check interface status
  280. //==========================================
  281. int isInterfaceUp(const char *interface)
  282. {
  283. int result = FAIL;
  284. FILE *fp;
  285. char cmd[256];
  286. char buf[512];
  287. strcpy(cmd, "ifconfig");
  288. fp = popen(cmd, "r");
  289. if(fp != NULL)
  290. {
  291. while(fgets(buf, sizeof(buf), fp) != NULL)
  292. {
  293. if(strstr(buf, interface) > 0)
  294. {
  295. result = PASS;
  296. }
  297. }
  298. }
  299. pclose(fp);
  300. return result;
  301. }
  302. //=================================
  303. // Create all share memory
  304. //=================================
  305. int CreateShareMemory()
  306. {
  307. int MeterSMId;
  308. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), IPC_CREAT | 0777)) < 0)
  309. {
  310. #ifdef SystemLogMessage
  311. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmSysConfigAndInfo NG \n");
  312. #endif
  313. return 0;
  314. }
  315. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  316. {
  317. #ifdef SystemLogMessage
  318. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmSysConfigAndInfo NG \n");
  319. #endif
  320. return 0;
  321. }
  322. memset(ShmSysConfigAndInfo, 0, sizeof(struct SysConfigAndInfo));
  323. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), IPC_CREAT | 0777)) < 0)
  324. {
  325. #ifdef SystemLogMessage
  326. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmStatusCodeData NG \n");
  327. #endif
  328. return 0;
  329. }
  330. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  331. {
  332. #ifdef SystemLogMessage
  333. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmStatusCodeData NG \n");
  334. #endif
  335. return 0;
  336. }
  337. memset(ShmStatusCodeData, 0, sizeof(struct StatusCodeData));
  338. //creat ShmPsuData
  339. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), IPC_CREAT | 0777)) < 0)
  340. {
  341. #ifdef SystemLogMessage
  342. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmPsuData NG \n");
  343. #endif
  344. return 0;
  345. }
  346. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  347. {
  348. #ifdef SystemLogMessage
  349. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmPsuData NG \n");
  350. #endif
  351. return 0;
  352. }
  353. memset(ShmPsuData, 0, sizeof(struct PsuData));
  354. if(CHAdeMO_QUANTITY > 0)
  355. {
  356. if ((MeterSMId = shmget(ShmCHAdeMOCommKey, sizeof(struct CHAdeMOData), IPC_CREAT | 0777)) < 0)
  357. {
  358. #ifdef SystemLogMessage
  359. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmCHAdeMOData NG \n");
  360. #endif
  361. return 0;
  362. }
  363. else if ((ShmCHAdeMOData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  364. {
  365. #ifdef SystemLogMessage
  366. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmCHAdeMOData NG \n");
  367. #endif
  368. return 0;
  369. }
  370. memset(ShmCHAdeMOData, 0, sizeof(struct CHAdeMOData));
  371. }
  372. if(GB_QUANTITY > 0)
  373. {
  374. if ((MeterSMId = shmget(ShmGBTCommKey, sizeof(struct GBTData), IPC_CREAT | 0777)) < 0)
  375. {
  376. #ifdef SystemLogMessage
  377. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmGBTData NG \n");
  378. #endif
  379. return 0;
  380. }
  381. else if ((ShmGBTData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  382. {
  383. #ifdef SystemLogMessage
  384. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmGBTData NG \n");
  385. #endif
  386. return 0;
  387. }
  388. memset(ShmGBTData, 0, sizeof(struct GBTData));
  389. }
  390. //creat ShmCcsData
  391. if(CCS_QUANTITY > 0)
  392. {
  393. if ((MeterSMId = shmget(ShmCcsCommKey, sizeof(struct CcsData), IPC_CREAT | 0777)) < 0)
  394. {
  395. #ifdef SystemLogMessage
  396. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmCcsData NG \n");
  397. #endif
  398. return 0;
  399. }
  400. else if ((ShmCcsData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  401. {
  402. #ifdef SystemLogMessage
  403. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmCcsData NG \n");
  404. #endif
  405. return 0;
  406. }
  407. memset(ShmCcsData, 0, sizeof(struct CcsData));
  408. }
  409. //creat ShmPrimaryMcuData
  410. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), IPC_CREAT | 0777)) < 0)
  411. {
  412. #ifdef SystemLogMessage
  413. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmPrimaryMcuData NG \n");
  414. #endif
  415. return 0;
  416. }
  417. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  418. {
  419. #ifdef SystemLogMessage
  420. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmPrimaryMcuData NG \n");
  421. #endif
  422. return 0;
  423. }
  424. memset(ShmPrimaryMcuData, 0, sizeof(struct PrimaryMcuData));
  425. //creat ShmFanModuleData
  426. if ((MeterSMId = shmget(ShmFanBdKey, sizeof(struct FanModuleData), IPC_CREAT | 0777)) < 0)
  427. {
  428. #ifdef SystemLogMessage
  429. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmFanModuleData NG \n");
  430. #endif
  431. return 0;
  432. }
  433. else if ((ShmFanModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  434. {
  435. #ifdef SystemLogMessage
  436. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmFanModuleData NG \n");
  437. #endif
  438. return 0;
  439. }
  440. memset(ShmFanModuleData, 0, sizeof(struct FanModuleData));
  441. //creat ShmRelayModuleData
  442. if ((MeterSMId = shmget(ShmRelayBdKey, sizeof(struct RelayModuleData), IPC_CREAT | 0777)) < 0)
  443. {
  444. #ifdef SystemLogMessage
  445. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmRelayModuleData NG \n");
  446. #endif
  447. return 0;
  448. }
  449. else if ((ShmRelayModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  450. {
  451. #ifdef SystemLogMessage
  452. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmRelayModuleData NG \n");
  453. #endif
  454. return 0;
  455. }
  456. memset(ShmRelayModuleData, 0, sizeof(struct RelayModuleData));
  457. //creat ShmOCPP16Data
  458. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), IPC_CREAT | 0777)) < 0)
  459. {
  460. #ifdef SystemLogMessage
  461. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmget ShmOCPP16Data NG \n");
  462. #endif
  463. return 0;
  464. }
  465. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  466. {
  467. #ifdef SystemLogMessage
  468. DEBUG_ERROR_MSG("[main]CreatShareMemory:shmat ShmOCPP16Data NG \n");
  469. #endif
  470. return 0;
  471. }
  472. // memset(ShmOCPP16Data,0,sizeof(struct OCPP16Data));
  473. return 1;
  474. }
  475. //=================================
  476. // LCM Page
  477. //=================================
  478. void ChangeLcmByIndex(byte page_index)
  479. {
  480. if (ShmSysConfigAndInfo->SysWarningInfo.Level != 2 ||
  481. page_index == _LCM_COMPLETE || page_index == _LCM_FIX)
  482. {
  483. ShmSysConfigAndInfo->SysInfo.PageIndex = page_index;
  484. }
  485. }
  486. //======================================================
  487. // Peripheral initial
  488. //======================================================
  489. void InitGPIO()
  490. {
  491. /*****************0~3, 4 bank, bank x 32+ num*********************/
  492. /***************************************************************/
  493. /*************** GPIO 0 ***************************************/
  494. /***************************************************************/
  495. /* GPMC_AD8 => GPIO0_22 *//*ID BD1_1*/
  496. system("echo 22 > /sys/class/gpio/export");
  497. system("echo \"in\" > /sys/class/gpio/gpio22/direction");
  498. /* GPMC_AD9 => GPIO0_23 *//*ID BD1_2*/
  499. system("echo 23 > /sys/class/gpio/export");
  500. system("echo \"in\" > /sys/class/gpio/gpio23/direction");
  501. /* GPMC_AD10 => GPIO0_26 *//*IO BD1_1*/
  502. system("echo 26 > /sys/class/gpio/export");
  503. system("echo \"out\" > /sys/class/gpio/gpio26/direction");
  504. system("echo 1 > /sys/class/gpio/gpio26/value");
  505. /* GPMC_AD11 => GPIO0_27 *//*IO BD1_2*/
  506. system("echo 27 > /sys/class/gpio/export");
  507. system("echo \"in\" > /sys/class/gpio/gpio27/direction");
  508. /* RMII1_REF_CLK => GPIO0_29 *//*USB 0 OCP detection*/
  509. system("echo 29 > /sys/class/gpio/export");
  510. system("echo \"in\" > /sys/class/gpio/gpio29/direction");
  511. /*XDMA_EVENT_INTR0 => GPIO0_19 *//*AM_RFID_RST*/
  512. system("echo 19 > /sys/class/gpio/export");
  513. system("echo \"out\" > /sys/class/gpio/gpio19/direction");
  514. system("echo 1 > /sys/class/gpio/gpio19/value");
  515. /*XDMA_EVENT_INTR1 => GPIO0_20 *//*AM_RFID_ICC*/
  516. system("echo 20 > /sys/class/gpio/export");
  517. system("echo \"in\" > /sys/class/gpio/gpio20/direction");
  518. /***************************************************************/
  519. /*************** GPIO 1 ***************************************/
  520. /***************************************************************/
  521. /* GPMC_AD12 => GPIO1_12 *//*ID BD2_1*/
  522. system("echo 44 > /sys/class/gpio/export");
  523. system("echo \"in\" > /sys/class/gpio/gpio44/direction");
  524. /* GPMC_AD13 => GPIO1_13 *//*ID BD2_2*/
  525. system("echo 45 > /sys/class/gpio/export");
  526. system("echo \"in\" > /sys/class/gpio/gpio45/direction");
  527. /* GPMC_AD14 => GPIO1_14 *//*IO BD2_1*/
  528. system("echo 46 > /sys/class/gpio/export");
  529. system("echo \"out\" > /sys/class/gpio/gpio46/direction");
  530. system("echo 0 > /sys/class/gpio/gpio46/value");
  531. /* GPMC_AD15 => GPIO1_15 *//*IO BD2_2*/
  532. system("echo 47 > /sys/class/gpio/export");
  533. system("echo \"in\" > /sys/class/gpio/gpio47/direction");
  534. /***************************************************************/
  535. /*************** GPIO 2 ***************************************/
  536. /***************************************************************/
  537. /*LCD_AC_BIAS_EN => GPIO2_25*//*RS-485 for module DE control*/
  538. system("echo 89 > /sys/class/gpio/export");
  539. system("echo \"out\" > /sys/class/gpio/gpio89/direction");
  540. system("echo 1 > /sys/class/gpio/gpio89/value");
  541. /*LCD_HSYNC => GPIO2_23*//*RS-485 for module RE control*/
  542. system("echo 87 > /sys/class/gpio/export");
  543. system("echo \"out\" > /sys/class/gpio/gpio87/direction");
  544. system("echo 0 > /sys/class/gpio/gpio87/value");
  545. /*LCD_PCLK => GPIO2_24*//*CCS communication board 1 proximity*/
  546. system("echo 88 > /sys/class/gpio/export");
  547. system("echo \"in\" > /sys/class/gpio/gpio88/direction");
  548. /*LCD_VSYNC => GPIO2_22*//*CCS communication board 2 proximity*/
  549. system("echo 86 > /sys/class/gpio/export");
  550. system("echo \"in\" > /sys/class/gpio/gpio86/direction");
  551. /***************************************************************/
  552. /*************** GPIO 3 ***************************************/
  553. /***************************************************************/
  554. /*MCASP0_FSX => GPIO3_15*//*Emergency Stop button detect*/
  555. system("echo 111 > /sys/class/gpio/export");
  556. system("echo \"in\" > /sys/class/gpio/gpio111/direction");
  557. /*MCASP0_ACLKR => GPIO3_18*//*USB1 OCP detect*/
  558. system("echo 114 > /sys/class/gpio/export");
  559. system("echo \"in\" > /sys/class/gpio/gpio114/direction");
  560. /*MCASP0_AHCLKR => GPIO3_17*//*Emergency IO for AM3352 and STM32F407*/
  561. system("echo 113 > /sys/class/gpio/export");
  562. system("echo \"in\" > /sys/class/gpio/gpio113/direction");
  563. /*MCASP0_ACLKX => GPIO3_14*//*Ethernet PHY reset*/
  564. system("echo 110 > /sys/class/gpio/export");
  565. system("echo \"out\" > /sys/class/gpio/gpio110/direction");
  566. system("echo 0 > /sys/class/gpio/gpio110/value");
  567. /* MCASP0_FSR => GPIO3_19 *//*SMR Enable control_1 for Pskill_1*/
  568. system("echo 115 > /sys/class/gpio/export");
  569. system("echo \"out\" > /sys/class/gpio/gpio115/direction");
  570. system("echo 0 > /sys/class/gpio/gpio115/value");
  571. /* MCASP0_AXR0 => GPIO3_16 *//*CSU board function OK indicator.*/
  572. system("echo 112 > /sys/class/gpio/export");
  573. system("echo \"out\" > /sys/class/gpio/gpio112/direction");
  574. system("echo 1 > /sys/class/gpio/gpio112/value");
  575. /* MCASP0_AXR1 => GPIO3_20 *//*SMR Enable control_2 for Pskill_2*/
  576. system("echo 116 > /sys/class/gpio/export");
  577. system("echo \"out\" > /sys/class/gpio/gpio116/direction");
  578. system("echo 0 > /sys/class/gpio/gpio116/value");
  579. #ifdef SystemLogMessage
  580. DEBUG_INFO_MSG("[main]InitGPIO: Initial GPIO OK");
  581. #endif
  582. }
  583. int LoadSysConfigAndInfo(struct SysConfigData *ptr)
  584. {
  585. int fd,wrd;
  586. unsigned char *buf;
  587. unsigned int ChkSum,ChkSumOrg;
  588. if((buf=malloc(MtdBlockSize))==NULL)
  589. {
  590. DEBUG_ERROR_MSG("malloc buffer NG,rebooting..\r\n");
  591. if(ShmStatusCodeData!=NULL)
  592. {
  593. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  594. }
  595. sleep(5);
  596. system("reboot -f");
  597. sleep(5);
  598. system("reboot -f");
  599. }
  600. memset(buf, 0, MtdBlockSize);
  601. //================================================
  602. // Load configuration from mtdblock10
  603. //================================================
  604. fd = open("/dev/mtdblock10", O_RDWR);
  605. if (fd < 0)
  606. {
  607. free(buf);
  608. DEBUG_ERROR_MSG("open mtdblock10 NG,rebooting..\r\n");
  609. if(ShmStatusCodeData!=NULL)
  610. {
  611. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  612. }
  613. sleep(5);
  614. system("reboot -f");
  615. sleep(5);
  616. system("reboot -f");
  617. }
  618. wrd=read(fd, buf, MtdBlockSize);
  619. close(fd);
  620. if(wrd<MtdBlockSize)
  621. {
  622. free(buf);
  623. DEBUG_ERROR_MSG("read SysConfigData data NG,rebooting..\r\n");
  624. if(ShmStatusCodeData!=NULL)
  625. {
  626. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  627. }
  628. sleep(5);
  629. system("reboot -f");
  630. sleep(5);
  631. system("reboot -f");
  632. }
  633. ChkSum=0;
  634. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  635. {
  636. ChkSum+=buf[wrd];
  637. }
  638. memcpy(&ChkSumOrg,buf+(0x00600000-4),sizeof(ChkSumOrg));
  639. //================================================
  640. // Load configuration from mtdblock11
  641. //================================================
  642. if(ChkSum!=ChkSumOrg)
  643. {
  644. DEBUG_ERROR_MSG("Primary SysConfigData checksum NG, read backup\r\n");
  645. fd = open("/dev/mtdblock11", O_RDWR);
  646. if (fd < 0)
  647. {
  648. free(buf);
  649. DEBUG_ERROR_MSG("open mtdblock11 (backup) NG,rebooting..\r\n");
  650. if(ShmStatusCodeData!=NULL)
  651. {
  652. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  653. }
  654. sleep(5);
  655. system("reboot -f");
  656. sleep(5);
  657. system("reboot -f");
  658. }
  659. memset(buf, 0, MtdBlockSize);
  660. wrd=read(fd, buf,MtdBlockSize);
  661. close(fd);
  662. if(wrd<MtdBlockSize)
  663. {
  664. free(buf);
  665. DEBUG_ERROR_MSG("read backup SysConfigData data NG,rebooting..\r\n");
  666. if(ShmStatusCodeData!=NULL)
  667. {
  668. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  669. }
  670. sleep(5);
  671. system("reboot -f");
  672. sleep(5);
  673. system("reboot -f");
  674. }
  675. ChkSum=0;
  676. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  677. {
  678. ChkSum+=buf[wrd];
  679. }
  680. memcpy(&ChkSumOrg,buf+(0x00600000-4),sizeof(ChkSumOrg));
  681. //================================================
  682. // Load configuration from mtdblock12 (Factory default)
  683. //================================================
  684. if(ChkSum!=ChkSumOrg)
  685. {
  686. DEBUG_ERROR_MSG("backup SysConfigData checksum NG, read Factory default\r\n");
  687. fd = open("/dev/mtdblock12", O_RDWR);
  688. if (fd < 0)
  689. {
  690. free(buf);
  691. DEBUG_ERROR_MSG("open mtdblock12 (Factory default) NG,rebooting..\r\n");
  692. if(ShmStatusCodeData!=NULL)
  693. {
  694. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  695. }
  696. sleep(5);
  697. system("reboot -f");
  698. sleep(5);
  699. system("reboot -f");
  700. }
  701. memset(buf, 0, MtdBlockSize);
  702. wrd=read(fd, buf,MtdBlockSize);
  703. close(fd);
  704. if(wrd<MtdBlockSize)
  705. {
  706. free(buf);
  707. DEBUG_ERROR_MSG("read factory default SysConfigData data NG,rebooting..\r\n");
  708. if(ShmStatusCodeData!=NULL)
  709. {
  710. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  711. }
  712. sleep(5);
  713. system("reboot -f");
  714. sleep(5);
  715. system("reboot -f");
  716. }
  717. ChkSum=0;
  718. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  719. {
  720. ChkSum+=buf[wrd];
  721. }
  722. memcpy(&ChkSumOrg,buf+(0x00600000-4),sizeof(ChkSumOrg));
  723. if(ChkSum!=ChkSumOrg)
  724. {
  725. DEBUG_ERROR_MSG("factory default SysConfigData checksum NG, restore factory default\r\n");
  726. free(buf);
  727. system("cd /root;./FactoryConfig -m");
  728. system("sync");
  729. sleep(5);
  730. system("reboot -f");
  731. sleep(5);
  732. system("reboot -f");
  733. return FAIL;
  734. }
  735. }
  736. }
  737. //load OK
  738. memcpy((struct SysConfigData *)ptr,buf,sizeof(struct SysConfigData));
  739. free(buf);
  740. DEBUG_INFO_MSG("Load SysConfigData OK\r\n");
  741. return PASS;
  742. }
  743. int isReachableInternet()
  744. {
  745. int result = FAIL;
  746. FILE *fp;
  747. char cmd[256];
  748. char buf[512];
  749. for(int idx=0;idx<ARRAY_SIZE(valid_Internet);idx++)
  750. {
  751. strcpy(cmd, "ping -c 1 -w 3 ");
  752. strcat(cmd, valid_Internet[idx]);
  753. fp = popen(cmd, "r");
  754. if(fp != NULL)
  755. {
  756. while(fgets(buf, sizeof(buf), fp) != NULL)
  757. {
  758. if(strstr(buf, "transmitted") > 0)
  759. {
  760. if(strstr(buf,"100%") != NULL)
  761. {
  762. //NULL
  763. }
  764. else
  765. {
  766. result = PASS;
  767. }
  768. }
  769. }
  770. }
  771. pclose(fp);
  772. }
  773. return result;
  774. }
  775. void InitEthernet()
  776. {
  777. char tmpbuf[256];
  778. // /sbin/ifconfig eth0 192.168.1.10 netmask 255.255.255.0 down
  779. system("echo 1 > /sys/class/gpio/gpio110/value");//reset PHY
  780. sleep(2);
  781. //Init Eth0 for internet
  782. memset(tmpbuf,0,256);
  783. sprintf(tmpbuf,"/sbin/ifconfig eth0 %s netmask %s up",
  784. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,
  785. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  786. system(tmpbuf);
  787. memset(tmpbuf,0,256);
  788. sprintf(tmpbuf,"route add default gw %s eth0 ",
  789. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
  790. system(tmpbuf);
  791. //Init Eth1 for administrator tool
  792. memset(tmpbuf,0,256);
  793. sprintf(tmpbuf,"/sbin/ifconfig eth1 %s netmask %s up",
  794. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,
  795. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
  796. system(tmpbuf);
  797. //Run DHCP client if enabled
  798. system("killall udhcpc");
  799. system("rm -rf /etc/resolv.conf");
  800. system("echo nameserver 8.8.8.8 > /etc/resolv.conf"); //Google DNS server
  801. system("echo nameserver 180.76.76.76 > /etc/resolv.conf"); //Baidu DNS server
  802. if(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient == 0)
  803. system("/sbin/udhcpc -i eth0 -s /root/dhcp_script/eth0.script > /dev/null &");
  804. //Upgrade system id to /etc/hostname
  805. sprintf(tmpbuf, "echo %s > /etc/hostname", ShmSysConfigAndInfo->SysConfig.SystemId);
  806. system(tmpbuf);
  807. pid_t pid = fork();
  808. uint8_t cnt_pingDNS_Fail;
  809. if(pid == 0)
  810. {
  811. for(;;)
  812. {
  813. if(isReachableInternet() == PASS)
  814. {
  815. ShmSysConfigAndInfo->SysInfo.InternetConn = YES;
  816. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet= NO;
  817. cnt_pingDNS_Fail = 0;
  818. }
  819. else
  820. {
  821. if(++cnt_pingDNS_Fail > 3)
  822. {
  823. ShmSysConfigAndInfo->SysInfo.InternetConn = NO;
  824. //ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet= YES;
  825. }
  826. }
  827. sleep(5);
  828. }
  829. }
  830. #ifdef SystemLogMessage
  831. DEBUG_INFO_MSG("[main]InitEthernet: Initial Ethernet OK");
  832. #endif
  833. }
  834. int InitialRfidPort()
  835. {
  836. int uartO2 = open(rfidPortName, O_RDWR);
  837. struct termios tios;
  838. if (uartO2 != FAIL)
  839. {
  840. ioctl (uartO2, TCGETS, &tios);
  841. tios.c_cflag = B19200 | CS8 | CLOCAL | CREAD;
  842. tios.c_lflag = 0;
  843. tios.c_iflag = 0;
  844. tios.c_oflag = 0;
  845. tios.c_cc[VMIN] = 0;
  846. tios.c_cc[VTIME] = (unsigned char) 1;
  847. tios.c_lflag = 0;
  848. tcflush(uartO2, TCIFLUSH);
  849. ioctl(uartO2, TCSETS, &tios);
  850. }
  851. if (uartO2 < 0)
  852. {
  853. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RfidModuleCommFail = 1;
  854. }
  855. return uartO2;
  856. }
  857. void GetMacAddress()
  858. {
  859. for (byte index = 0; index < 2; index++)
  860. {
  861. int fd;
  862. struct ifreq ifr;
  863. char tarEth[5];
  864. char Mac[18];
  865. sprintf(tarEth,"eth%d",index);
  866. fd = socket(AF_INET, SOCK_DGRAM, 0);
  867. ifr.ifr_addr.sa_family = AF_INET;
  868. strncpy(ifr.ifr_name, tarEth, IFNAMSIZ - 1);
  869. ioctl(fd, SIOCGIFHWADDR, &ifr);
  870. close(fd);
  871. sprintf(Mac, "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
  872. ifr.ifr_hwaddr.sa_data[0], ifr.ifr_hwaddr.sa_data[1], ifr.ifr_hwaddr.sa_data[2],
  873. ifr.ifr_hwaddr.sa_data[3], ifr.ifr_hwaddr.sa_data[4], ifr.ifr_hwaddr.sa_data[5]);
  874. if (index == 0)
  875. strcpy((char *) ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress, Mac);
  876. else
  877. strcpy((char *) ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress, Mac);
  878. }
  879. }
  880. void GetFirmwareVersion()
  881. {
  882. // Get CSU root file system version
  883. sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, fwVersion);
  884. byte count = 0, chademo = 0, ccs = 0, gb = 0;
  885. for(uint8_t idx=0;idx<3;idx++)
  886. {
  887. if (ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == 'J')
  888. {
  889. chademo++;
  890. count++;
  891. }
  892. else if (ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == 'G')
  893. {
  894. gb++;
  895. count++;
  896. }
  897. else if (ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == 'U' ||
  898. ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == 'E')
  899. {
  900. ccs++;
  901. count++;
  902. }
  903. }
  904. if (count == 1)
  905. {
  906. if (chademo > 0)
  907. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '1';
  908. else if (ccs > 0)
  909. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '2';
  910. else if (gb > 0)
  911. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '3';
  912. }
  913. else
  914. {
  915. if (chademo > 0 && ccs > 0)
  916. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '4';
  917. else if (chademo > 0 && gb > 0)
  918. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '5';
  919. else if (ccs > 0 && gb > 0)
  920. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[7] = '6';
  921. }
  922. // Get network option from model name
  923. switch(ShmSysConfigAndInfo->SysConfig.ModelName[10])
  924. {
  925. case 'B':
  926. case 'U':
  927. //Blue tooth
  928. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '3';
  929. break;
  930. case 'W':
  931. // WIFI
  932. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '1';
  933. break;
  934. case 'T':
  935. // 3G/4G
  936. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '2';
  937. break;
  938. default:
  939. // LAN
  940. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '0';
  941. break;
  942. }
  943. // Get rating power from model name
  944. memcpy(&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[10], &ShmSysConfigAndInfo->SysConfig.ModelName[4], 0x03);
  945. // Get IEC or UL
  946. char _buf[3] = {0};
  947. memcpy(_buf, &ShmSysConfigAndInfo->SysConfig.ModelName[2], 2);
  948. if (strcmp(_buf, "YE") == EQUAL)
  949. ShmSysConfigAndInfo->SysInfo.ChargerType = _CHARGER_TYPE_IEC;
  950. else if (strcmp(_buf, "WU") == EQUAL)
  951. ShmSysConfigAndInfo->SysInfo.ChargerType = _CHARGER_TYPE_UL;
  952. }
  953. void InitialShareMemoryInfo()
  954. {
  955. FILE *fp;
  956. char cmd[512];
  957. char buf[512];
  958. sprintf((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn, "Internet");
  959. sprintf((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId, " ");
  960. sprintf((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd, " ");
  961. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration = 0;
  962. ShmSysConfigAndInfo->SysInfo.InputVoltageR = 0;
  963. ShmSysConfigAndInfo->SysInfo.InputVoltageS = 0;
  964. ShmSysConfigAndInfo->SysInfo.InputVoltageT = 0;
  965. ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed = 0;
  966. ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed = 0;
  967. ShmSysConfigAndInfo->SysInfo.AuxPower5V = 0;
  968. ShmSysConfigAndInfo->SysInfo.AuxPower12V = 0;
  969. ShmSysConfigAndInfo->SysInfo.AuxPower24V = 0;
  970. ShmSysConfigAndInfo->SysInfo.AuxPower48V = 0;
  971. sprintf((char *)ShmSysConfigAndInfo->SysInfo.CsuHwRev, "REV:5.0");
  972. memcpy(ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, ShmSysConfigAndInfo->SysConfig.CsuBootLoadFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.CsuBootLoadFwRev));
  973. sprintf(cmd, "/bin/uname -r");
  974. fp = popen(cmd, "r");
  975. if(fp == NULL)
  976. sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "Unknown version");
  977. else
  978. {
  979. while(fgets(buf, sizeof(buf), fp) != NULL)
  980. {
  981. strcpy((char*)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, buf);
  982. }
  983. }
  984. // 雙槍 CCS + Chademo
  985. GetFirmwareVersion();
  986. sprintf((char *) ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, " ");
  987. sprintf((char *) ShmSysConfigAndInfo->SysInfo.LcmHwRev, " ");
  988. sprintf((char *) ShmSysConfigAndInfo->SysInfo.LcmFwRev, " ");
  989. sprintf((char *) ShmSysConfigAndInfo->SysInfo.PsuHwRev, " ");
  990. sprintf((char *) ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, " ");
  991. sprintf((char *) ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, " ");
  992. sprintf((char *) ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, " ");
  993. sprintf((char *) ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, " ");
  994. sprintf((char *) ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, " ");
  995. sprintf((char *) ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, " ");
  996. sprintf((char *) ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, " ");
  997. sprintf((char *) ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, " ");
  998. sprintf((char *) ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, " ");
  999. ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp = 0;
  1000. ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp = 0;
  1001. ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp = 0;
  1002. ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp = 0;
  1003. ShmSysConfigAndInfo->SysInfo.InternetConn = 0;
  1004. ShmSysConfigAndInfo->SysInfo.OcppConnStatus = 0;
  1005. ShmSysConfigAndInfo->SysInfo.OrderCharging = FAIL;
  1006. strcpy((char *) ShmSysConfigAndInfo->SysConfig.UserId, "");
  1007. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RelayboardStestFail = NO;
  1008. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FanboardStestFail = NO;
  1009. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PrimaryStestFail = NO;
  1010. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoboardStestFail = NO;
  1011. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CCSboardStestFail = NO;
  1012. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.AcContactStestFail = NO;
  1013. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuModuleStestFail = NO;
  1014. memset(ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, 0, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.FanModuleFwRev));
  1015. memset(ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, 0, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev));
  1016. ShmPrimaryMcuData->SelfTest_Comp = NO;
  1017. ShmRelayModuleData->SelfTest_Comp = NO;
  1018. ShmFanModuleData->SelfTest_Comp = NO;
  1019. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  1020. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  1021. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  1022. ShmFanModuleData->TestFanSpeed = 0;
  1023. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ModelNameNoneMatchStestFail = NO;
  1024. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuNoResource = NO;
  1025. char EvsePower[2];
  1026. EvsePower[2] = '\0';
  1027. unsigned short buf_pow = 0;
  1028. if (strlen((char *) ShmSysConfigAndInfo->SysConfig.ModelName) >= 6)
  1029. {
  1030. strncpy(EvsePower, (char *)(ShmSysConfigAndInfo->SysConfig.ModelName + 4), 2);
  1031. if (strcmp(EvsePower, "15") == EQUAL)
  1032. buf_pow = 150;
  1033. else if (strcmp(EvsePower, "30") == EQUAL)
  1034. buf_pow = 30;
  1035. else if (strcmp(EvsePower, "60") == EQUAL)
  1036. buf_pow = 60;
  1037. else if (strcmp(EvsePower, "18") == EQUAL)
  1038. buf_pow = 180;
  1039. else if (strcmp(EvsePower, "36") == EQUAL)
  1040. buf_pow = 360;
  1041. ShmSysConfigAndInfo->SysConfig.RatingCurrent = (buf_pow / 30) * 100;
  1042. if(ShmSysConfigAndInfo->SysConfig.MaxChargingPower == 0 ||
  1043. ShmSysConfigAndInfo->SysConfig.MaxChargingPower > buf_pow)
  1044. {
  1045. ShmSysConfigAndInfo->SysConfig.MaxChargingPower = buf_pow;
  1046. }
  1047. }
  1048. ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag = NO;
  1049. ShmSysConfigAndInfo->SysConfig.AlwaysGfdFlag = NO;
  1050. }
  1051. int Initialization()
  1052. {
  1053. // 初始化卡號驗證的 Flag
  1054. ClearAuthorizedFlag();
  1055. // 初始化插槍驗證的 Flag
  1056. ClearDetectPluginFlag();
  1057. // UART 2 for Rfid
  1058. rfidFd = InitialRfidPort();
  1059. int pinOut[2] = { 115, 116 };
  1060. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  1061. {
  1062. if (chargingInfo[count]->Type == _Type_Chademo)
  1063. {
  1064. gpio_set_value(pinOut[count], 0x01);
  1065. ShmCHAdeMOData->evse[chargingInfo[count]->type_index].SelfTest_Comp = NO;
  1066. }
  1067. else if (chargingInfo[count]->Type == _Type_GB)
  1068. {
  1069. gpio_set_value(pinOut[count], 0x01);
  1070. ShmGBTData->evse[chargingInfo[count]->type_index].SelfTest_Comp = NO;
  1071. }
  1072. else if (chargingInfo[count]->Type == _Type_CCS_2)
  1073. {
  1074. if (ShmCcsData->CommProtocol == 0x01)
  1075. {
  1076. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount == 1)
  1077. gpio_set_value(pinOut[1], 0x00);
  1078. else
  1079. gpio_set_value(pinOut[count], 0x00);
  1080. ShmCcsData->V2GMessage_DIN70121[chargingInfo[count]->type_index].SelfTest_Comp = NO;
  1081. }
  1082. }
  1083. strcpy((char *)ShmOCPP16Data->StatusNotification[count].ErrorCode, "NoError");
  1084. }
  1085. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.AcConnectorCount; count++)
  1086. {
  1087. if (ac_chargingInfo[count]->Type == _Type_AC)
  1088. {
  1089. ac_chargingInfo[count]->SelfTest_Comp = NO;
  1090. }
  1091. }
  1092. PRINTF_FUNC("Initialization OK \n");
  1093. return PASS;
  1094. }
  1095. bool InitialSystemDefaultConfig()
  1096. {
  1097. bool result = true;
  1098. LoadSysConfigAndInfo(&ShmSysConfigAndInfo->SysConfig);
  1099. InitGPIO();
  1100. InitEthernet();
  1101. GetMacAddress();
  1102. // system("echo 1 > /sys/class/gpio/gpio110/value"); //reset PHY
  1103. // sleep(3);
  1104. // system("/sbin/ifconfig eth0 192.168.1.10 netmask 255.255.255.0 down");
  1105. // sleep(1);
  1106. // system("/sbin/ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up");
  1107. return result;
  1108. }
  1109. void DisplaySelfTestFailReason()
  1110. {
  1111. // RB、FB、407、EV 小板中有些板子無回應
  1112. if (ShmRelayModuleData->SelfTest_Comp == NO)
  1113. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RelayboardStestFail = YES; }
  1114. if (ShmFanModuleData->SelfTest_Comp == NO)
  1115. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FanboardStestFail = YES; }
  1116. if (ShmPrimaryMcuData->SelfTest_Comp == NO)
  1117. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PrimaryStestFail = YES; }
  1118. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  1119. {
  1120. if (chargingInfo[index]->Type == _Type_Chademo)
  1121. {
  1122. if (ShmCHAdeMOData->evse[chargingInfo[index]->type_index].SelfTest_Comp == NO)
  1123. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoboardStestFail = YES; }
  1124. }
  1125. else if (chargingInfo[index]->Type == _Type_GB)
  1126. {
  1127. if (ShmGBTData->evse[chargingInfo[index]->type_index].SelfTest_Comp == NO)
  1128. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbtboardStestFail = YES; }
  1129. }
  1130. else if (chargingInfo[index]->Type == _Type_CCS_2)
  1131. {
  1132. if (ShmCcsData->CommProtocol == 0x01)
  1133. {
  1134. if (ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].SelfTest_Comp == NO)
  1135. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CCSboardStestFail = YES; }
  1136. }
  1137. }
  1138. }
  1139. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.AcConnectorCount; index++)
  1140. {
  1141. // 先借 GBT 顯示
  1142. if (ac_chargingInfo[index]->SelfTest_Comp == NO)
  1143. { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.AcConnectorStestFail = YES; }
  1144. }
  1145. if (ShmSysConfigAndInfo->SysInfo.AcContactorStatus == NO)
  1146. {
  1147. // AC Contact 未搭上
  1148. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.AcContactStestFail = YES;
  1149. }
  1150. else if (ShmPsuData->SystemAvailablePower <= 0 && ShmPsuData->SystemAvailableCurrent <= 0)
  1151. {
  1152. // PSU 通訊問題
  1153. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuModuleStestFail = YES;
  1154. }
  1155. }
  1156. void SelfTestRun()
  1157. {
  1158. bool evInitFlag = false;
  1159. StartSystemTimeoutDet(Timeout_SelftestChk);
  1160. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_VERSION;
  1161. while (ShmSysConfigAndInfo->SysInfo.SelfTestSeq != _STEST_COMPLETE)
  1162. {
  1163. ChkPrimaryStatus();
  1164. if (ShmSysConfigAndInfo->SysWarningInfo.Level == 2)
  1165. {
  1166. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_FAIL;
  1167. return;
  1168. }
  1169. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount > 0)
  1170. {
  1171. if (ShmPsuData->Work_Step == _NO_WORKING ||
  1172. ShmSysConfigAndInfo->SysInfo.SelfTestSeq == _STEST_FAIL)
  1173. {
  1174. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_FAIL;
  1175. return;
  1176. }
  1177. switch(ShmSysConfigAndInfo->SysInfo.SelfTestSeq)
  1178. {
  1179. case _STEST_VERSION:
  1180. {
  1181. if (strlen((char *)ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev) != 0 ||
  1182. ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev[0] != '\0')
  1183. {
  1184. //PRINTF_FUNC("RB pass \n");
  1185. ShmRelayModuleData->SelfTest_Comp = YES;
  1186. }
  1187. if (strlen((char *)ShmSysConfigAndInfo->SysInfo.FanModuleFwRev) != 0 ||
  1188. ShmSysConfigAndInfo->SysInfo.FanModuleFwRev[0] != '\0')
  1189. {
  1190. //PRINTF_FUNC("Fan pass \n");
  1191. ShmFanModuleData->SelfTest_Comp = YES;
  1192. }
  1193. if (strlen((char *)ShmPrimaryMcuData->version) != 0 ||
  1194. ShmPrimaryMcuData->version[0] != '\0')
  1195. {
  1196. //PRINTF_FUNC("407 pass \n");
  1197. ShmPrimaryMcuData->SelfTest_Comp = YES;
  1198. }
  1199. // EV 小板
  1200. if (!evInitFlag)
  1201. {
  1202. evInitFlag = YES;
  1203. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  1204. {
  1205. if (chargingInfo[index]->Type == _Type_Chademo)
  1206. {
  1207. if (strlen((char *)ShmCHAdeMOData->evse[chargingInfo[index]->type_index].version) != 0 ||
  1208. ShmCHAdeMOData->evse[chargingInfo[index]->type_index].version[0] != '\0')
  1209. {
  1210. //PRINTF_FUNC("chademo pass \n");
  1211. ShmCHAdeMOData->evse[chargingInfo[index]->type_index].SelfTest_Comp = YES;
  1212. }
  1213. else
  1214. {
  1215. //PRINTF_FUNC("chademo fw lose...... %s \n", ShmCHAdeMOData->evse[chargingInfo[index]->type_index].version);
  1216. evInitFlag = NO;
  1217. }
  1218. }
  1219. else if (chargingInfo[index]->Type == _Type_GB)
  1220. {
  1221. if (strlen((char *)ShmGBTData->evse[chargingInfo[index]->type_index].version) != 0 ||
  1222. ShmGBTData->evse[chargingInfo[index]->type_index].version[0] != '\0')
  1223. {
  1224. //PRINTF_FUNC("GBT pass \n");
  1225. ShmGBTData->evse[chargingInfo[index]->type_index].SelfTest_Comp = YES;
  1226. }
  1227. else
  1228. {
  1229. //PRINTF_FUNC("GBT fw lose...... %s \n", ShmCHAdeMOData->evse[chargingInfo[index]->type_index].version);
  1230. evInitFlag = NO;
  1231. }
  1232. }
  1233. else if (chargingInfo[index]->Type == _Type_CCS_2)
  1234. {
  1235. if (ShmCcsData->CommProtocol == 0x01)
  1236. {
  1237. if (strlen((char *)ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].version) != 0 ||
  1238. ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].version[0] != '\0')
  1239. {
  1240. //PRINTF_FUNC("ccs fw = %s \n", ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].version);
  1241. ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].SelfTest_Comp = YES;
  1242. }
  1243. else
  1244. {
  1245. //PRINTF_FUNC("ccs fw lose...... %s \n", ShmCcsData->V2GMessage_DIN70121[chargingInfo[index]->type_index].version);
  1246. evInitFlag = NO;
  1247. }
  1248. }
  1249. }
  1250. }
  1251. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.AcConnectorCount; index++)
  1252. {
  1253. if (ac_chargingInfo[index]->Type == _Type_AC)
  1254. {
  1255. if (strlen((char *)ac_chargingInfo[index]->version) != 0 ||
  1256. ac_chargingInfo[index]->version[0] != '\0')
  1257. {
  1258. ac_chargingInfo[index]->SelfTest_Comp = YES;
  1259. }
  1260. else
  1261. {
  1262. evInitFlag = NO;
  1263. }
  1264. }
  1265. }
  1266. }
  1267. if (ShmFanModuleData->SelfTest_Comp &&
  1268. ShmRelayModuleData->SelfTest_Comp &&
  1269. ShmPrimaryMcuData->SelfTest_Comp &&
  1270. evInitFlag)
  1271. {
  1272. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_AC_CONTACTOR;
  1273. }
  1274. }
  1275. break;
  1276. case _STEST_AC_CONTACTOR:
  1277. {
  1278. //ShmPsuData->Work_Step = _TEST_COMPLETE;
  1279. // 因為 30KW 以下沒有 Relay feedback 功能,所以暫時先直接跳過
  1280. if (ShmSysConfigAndInfo->SysInfo.AcContactorStatus == YES)
  1281. {
  1282. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_PSU_DETECT;
  1283. PRINTF_FUNC("Communication board pass. \n");
  1284. }
  1285. }
  1286. break;
  1287. case _STEST_PSU_DETECT:
  1288. {
  1289. if (ShmPsuData->Work_Step >= GET_SYS_CAP)
  1290. {
  1291. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_PSU_CAP;
  1292. }
  1293. }
  1294. break;
  1295. case _STEST_PSU_CAP:
  1296. {
  1297. // 此測試是要確認當前總輸出能力
  1298. // 如果沒有 PSU 模組請 bypass
  1299. if (ShmPsuData->Work_Step == BOOTING_COMPLETE)
  1300. {
  1301. sleep(1);
  1302. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_COMPLETE;
  1303. ShmSysConfigAndInfo->SysInfo.BootingStatus = BOOT_COMPLETE;
  1304. }
  1305. }
  1306. break;
  1307. }
  1308. }
  1309. else
  1310. break;
  1311. usleep(100000);
  1312. }
  1313. }
  1314. int SpawnTask()
  1315. {
  1316. sleep(2);
  1317. system("/root/Module_EventLogging &");
  1318. system("/root/Module_PrimaryComm &");
  1319. system("/root/Module_EvComm &");
  1320. system("/root/Module_LcmControl &");
  1321. system("/root/Module_InternalComm &");
  1322. system("/root/Module_PsuComm &");
  1323. system("/root/Module_ProduceUtils &");
  1324. if(strcmp((char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, "") != EQUAL &&
  1325. strcmp((char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId, "") != EQUAL)
  1326. {
  1327. system("/root/OcppBackend &");
  1328. }
  1329. if(ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T')
  1330. {
  1331. system("/root/Module_4g &");
  1332. }
  1333. else if(ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W')
  1334. {
  1335. system("/root/Module_Wifi &");
  1336. }
  1337. return PASS;
  1338. }
  1339. int StoreUsrConfigData(struct SysConfigData *UsrData)
  1340. {
  1341. int result = PASS;
  1342. int fd,wrd;
  1343. unsigned int i,Chk;
  1344. unsigned char *ptr, *BufTmp;
  1345. Chk=0;
  1346. ptr=(unsigned char *)UsrData;
  1347. if((BufTmp = malloc(MtdBlockSize)) != NULL)
  1348. {
  1349. memset(BufTmp, 0, MtdBlockSize);
  1350. memcpy(BufTmp, ptr, sizeof(struct SysConfigData));
  1351. for(i=0; i<MtdBlockSize-4; i++)
  1352. Chk+=*(ptr+i);
  1353. memcpy(BufTmp + MtdBlockSize-4, &Chk, 4);
  1354. fd = open("/dev/mtdblock10", O_RDWR);
  1355. if (fd > 0)
  1356. {
  1357. wrd=write(fd, BufTmp, MtdBlockSize);
  1358. close(fd);
  1359. if(wrd >= MtdBlockSize)
  1360. {
  1361. fd = open("/dev/mtdblock11", O_RDWR);
  1362. if (fd > 0)
  1363. {
  1364. wrd=write(fd, BufTmp, MtdBlockSize);
  1365. close(fd);
  1366. if(wrd < MtdBlockSize)
  1367. {
  1368. DEBUG_ERROR_MSG("write /dev/mtdblock11(backup) NG\r\n");
  1369. result = FAIL;
  1370. }
  1371. }
  1372. else
  1373. {
  1374. DEBUG_ERROR_MSG("open /dev/mtdblock11(backup) NG\r\n");
  1375. result = FAIL;
  1376. }
  1377. }
  1378. else
  1379. {
  1380. DEBUG_ERROR_MSG("write /dev/mtdblock10 NG\r\n");
  1381. result = FAIL;
  1382. }
  1383. }
  1384. else
  1385. {
  1386. DEBUG_ERROR_MSG("open /dev/mtdblock10 NG\r\n");
  1387. result = FAIL;
  1388. }
  1389. }
  1390. else
  1391. {
  1392. DEBUG_ERROR_MSG("alloc BlockSize NG\r\n");
  1393. result = FAIL;
  1394. }
  1395. if(BufTmp != NULL)
  1396. free(BufTmp);
  1397. return result;
  1398. }
  1399. //===============================================
  1400. // Common Detect Chk - Stop Charging ?
  1401. //===============================================
  1402. bool isEvBoardStopChargeFlag(byte gunIndex)
  1403. {
  1404. return chargingInfo[gunIndex]->StopChargeFlag;
  1405. }
  1406. //===============================================
  1407. // 掃描插槍狀況
  1408. //===============================================
  1409. void ClearDetectPluginFlag()
  1410. {
  1411. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = NO;
  1412. }
  1413. void DetectPluginStart()
  1414. {
  1415. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = YES;
  1416. }
  1417. bool isDetectPlugin()
  1418. {
  1419. if(ShmSysConfigAndInfo->SysInfo.WaitForPlugit == YES)
  1420. return YES;
  1421. return NO;
  1422. }
  1423. //===============================================
  1424. // Common Detect Chk - Chademo
  1425. //===============================================
  1426. bool isEvGunLocked_chademo(byte gunIndex)
  1427. {
  1428. return (DetectBitValue(chargingInfo[gunIndex]->GunLocked , 0) == 0)? NO : YES;
  1429. }
  1430. bool isEvContactorWelding_chademo(byte gunIndex)
  1431. {
  1432. return DetectBitValue(ShmCHAdeMOData->ev[chargingInfo[gunIndex]->type_index].EvDetection, 3);
  1433. }
  1434. bool isEvStopReq_chademo(byte gunIndex)
  1435. {
  1436. return DetectBitValue(ShmCHAdeMOData->ev[chargingInfo[gunIndex]->type_index].EvDetection, 4);
  1437. }
  1438. bool isEvStopCharging_chademo(byte gunIndex)
  1439. {
  1440. if (isEvGunLocked_chademo(gunIndex) == NO)
  1441. {
  1442. // 無鎖槍 = 停止
  1443. PRINTF_FUNC("gun locked none (%d) \n", gunIndex);
  1444. return YES;
  1445. }
  1446. return NO;
  1447. }
  1448. byte isPrechargeStatus_chademo(byte gunIndex)
  1449. {
  1450. byte result = 0x00;
  1451. result = ShmCHAdeMOData->ev[chargingInfo[gunIndex]->type_index].PresentMsgFlowStatus;
  1452. return result;
  1453. }
  1454. //===============================================
  1455. // Common Detect Chk - GB
  1456. //===============================================
  1457. bool isEvGunLocked_gb(byte gunIndex)
  1458. {
  1459. return (DetectBitValue(chargingInfo[gunIndex]->GunLocked , 0) == 0)? NO : YES;
  1460. }
  1461. bool isEvStopCharging_gb(byte gunIndex)
  1462. {
  1463. if (isEvGunLocked_gb(gunIndex) == NO)
  1464. {
  1465. // 無鎖槍 = 停止
  1466. PRINTF_FUNC("gun locked none. \n");
  1467. return YES;
  1468. }
  1469. return NO;
  1470. }
  1471. byte isPrechargeStatus_gb(byte gunIndex)
  1472. {
  1473. byte result = 0x00;
  1474. result = ShmGBTData->ev[chargingInfo[gunIndex]->type_index].PresentMsgFlowStatus;
  1475. return result;
  1476. }
  1477. //===============================================
  1478. // Common Detect Chk - CCS
  1479. //===============================================
  1480. bool isEvGunLocked_ccs(byte gunIndex)
  1481. {
  1482. return (DetectBitValue(chargingInfo[gunIndex]->GunLocked , 0) == 0)? NO : YES;
  1483. }
  1484. byte isPrechargeStatus_ccs(byte gunIndex)
  1485. {
  1486. byte result = 0x00;
  1487. if (ShmCcsData->CommProtocol == 0x01)
  1488. {
  1489. result = ShmCcsData->V2GMessage_DIN70121[chargingInfo[gunIndex]->type_index].PresentMsgFlowStatus;
  1490. }
  1491. return result;
  1492. }
  1493. bool isEvStopCharging_ccs(byte gunIndex)
  1494. {
  1495. if (isEvGunLocked_ccs(gunIndex) == NO)
  1496. {
  1497. // 無鎖槍 = 停止
  1498. PRINTF_FUNC("gun locked none. \n");
  1499. return YES;
  1500. }
  1501. return NO;
  1502. }
  1503. //===============================================
  1504. // Callback
  1505. //===============================================
  1506. void DisplayChargingInfo()
  1507. {
  1508. PRINTF_FUNC("*********** DisplayChargingInfo *********** \n");
  1509. if (ShmSysConfigAndInfo->SysConfig.AcConnectorCount > 0 &&
  1510. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == NO_DEFINE &&
  1511. ac_chargingInfo[0]->SystemStatus >= S_PREPARNING && ac_chargingInfo[0]->SystemStatus <= S_COMPLETE)
  1512. {
  1513. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  1514. }
  1515. else
  1516. {
  1517. for (byte i = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount - 1; i >= 0; i--)
  1518. {
  1519. if (chargingInfo[i]->SystemStatus != S_IDLE)
  1520. {
  1521. ChangeGunSelectByIndex(i);
  1522. break;
  1523. }
  1524. }
  1525. }
  1526. usleep(50000);
  1527. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  1528. }
  1529. void _AutoReturnTimeout()
  1530. {
  1531. PRINTF_FUNC("*********** _AutoReturnTimeout *********** \n");
  1532. if (ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_WAIT_FOR_PLUG)
  1533. {
  1534. ClearDetectPluginFlag();
  1535. }
  1536. else if (ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_AUTHORIZ_COMP)
  1537. {
  1538. DetectPluginStart();
  1539. }
  1540. usleep(50000);
  1541. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  1542. }
  1543. void _SelfTestTimeout()
  1544. {
  1545. if (ShmSysConfigAndInfo->SysInfo.BootingStatus != BOOT_COMPLETE)
  1546. {
  1547. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  1548. {
  1549. setChargerMode(gun_index, MODE_ALARM);
  1550. }
  1551. }
  1552. ShmPsuData->Work_Step = _NO_WORKING;
  1553. ShmSysConfigAndInfo->SysInfo.SelfTestSeq = _STEST_FAIL;
  1554. PRINTF_FUNC("Self test timeout. \n");
  1555. }
  1556. void _AuthorizedTimeout()
  1557. {
  1558. if(IsAuthorizingMode())
  1559. {
  1560. PRINTF_FUNC("*********** _AuthorizedTimeout *********** \n");
  1561. isCardScan = false;
  1562. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_AUTHORIZ_FAIL;
  1563. //ChangeLcmByIndex(_LCM_AUTHORIZ_FAIL);
  1564. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  1565. ClearAuthorizedFlag();
  1566. }
  1567. }
  1568. void _DetectPlugInTimeout()
  1569. {
  1570. PRINTF_FUNC("*********** _DetectPlugInTimeout *********** \n");
  1571. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  1572. ClearDetectPluginFlag();
  1573. usleep(50000);
  1574. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  1575. }
  1576. void _DetectEvChargingEnableTimeout(byte gunIndex)
  1577. {
  1578. if (chargingInfo[gunIndex]->Type == _Type_Chademo)
  1579. {
  1580. if(!isEvGunLocked_chademo(gunIndex))
  1581. {
  1582. PRINTF_FUNC("*********** _DetectEvChargingEnableTimeout (chademo) ***********\n");
  1583. }
  1584. }
  1585. else if (chargingInfo[gunIndex]->Type == _Type_GB)
  1586. {
  1587. if(!isEvGunLocked_ccs(gunIndex))
  1588. {
  1589. PRINTF_FUNC("*********** _DetectEvChargingEnableTimeout (gb) ***********\n");
  1590. }
  1591. }
  1592. else if (chargingInfo[gunIndex]->Type == _Type_CCS_2)
  1593. {
  1594. if(!isEvGunLocked_ccs(gunIndex))
  1595. {
  1596. PRINTF_FUNC("*********** _DetectEvChargingEnableTimeout (ccs) ***********\n");
  1597. }
  1598. }
  1599. ChargingTerminalProcess(gunIndex);
  1600. _AutoReturnTimeout();
  1601. }
  1602. void _DetectEvseChargingEnableTimeout(byte gunIndex)
  1603. {
  1604. PRINTF_FUNC("*********** _DetectEvseChargingEnableTimeout (GFD timeout) ***********\n");
  1605. setChargerMode(gunIndex, MODE_IDLE);
  1606. _AutoReturnTimeout();
  1607. }
  1608. void _PrepareTimeout(byte gunIndex)
  1609. {
  1610. PRINTF_FUNC("*********** _PrepareTimeout ***********\n");
  1611. setChargerMode(gunIndex, MODE_IDLE);
  1612. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuNoResource = YES;
  1613. _AutoReturnTimeout();
  1614. }
  1615. void _CcsPrechargeTimeout(byte gunIndex)
  1616. {
  1617. PRINTF_FUNC("*********** _CcsPrechargeTimeout ***********\n");
  1618. setChargerMode(gunIndex, MODE_IDLE);
  1619. }
  1620. //===============================================
  1621. // 取得卡號與卡號驗證
  1622. //===============================================
  1623. bool canStartCharging()
  1624. {
  1625. char buf2[16] = "";
  1626. memset(buf2, 0, ARRAY_SIZE(buf2));
  1627. for (byte index = 0; index < strlen((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status); index++)
  1628. {
  1629. sprintf(buf2 + (index - 1) * 2, "%02X", ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status[index]);
  1630. }
  1631. sprintf(buf2, "%s", ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  1632. // 因為無法得知實際的長度,所以只能用搜尋的方式
  1633. if(strcmp(buf2, "Accepted") == EQUAL)
  1634. return true;
  1635. else
  1636. {
  1637. //NULL
  1638. }
  1639. return false;
  1640. }
  1641. void AuthorizingStart()
  1642. {
  1643. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = YES;
  1644. ShmSysConfigAndInfo->SysInfo.AuthorizeFlag = YES;
  1645. }
  1646. void ClearAuthorizedFlag()
  1647. {
  1648. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = NO;
  1649. ShmSysConfigAndInfo->SysInfo.AuthorizeFlag = NO;
  1650. }
  1651. bool isAuthorizedComplete()
  1652. {
  1653. if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf == NO)
  1654. return false;
  1655. return true;
  1656. }
  1657. bool IsAuthorizingMode()
  1658. {
  1659. if(ShmSysConfigAndInfo->SysInfo.AuthorizeFlag == NO)
  1660. return false;
  1661. return true;
  1662. }
  1663. //===============================================
  1664. // 紀錄 Alarm Code
  1665. //===============================================
  1666. void RecordAlarmCode(byte gunIndex, char *code)
  1667. {
  1668. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, code, 6);
  1669. if (strcmp(code, "012234") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGfdTrip = YES;
  1670. if (strcmp(code, "012235") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGfdTrip = YES;
  1671. if (strcmp(code, "012236") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip = YES;
  1672. if (strcmp(code, "012288") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsOutputUVPFail = YES;
  1673. if (strcmp(code, "012289") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoOutputUVPFail = YES;
  1674. if (strcmp(code, "012290") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbtOutputUVPFail = YES;
  1675. }
  1676. void RecordWarningCode(byte gunIndex, char *code)
  1677. {
  1678. memcpy(chargingInfo[gunIndex]->ConnectorWarningCode, code, 6);
  1679. if (strcmp(code, "012296") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGroundWarning = YES;
  1680. if (strcmp(code, "012297") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGroundfaultWarning = YES;
  1681. if (strcmp(code, "012298") == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGroundfaultWarning = YES;
  1682. }
  1683. void ReleaseAlarmCode(byte gunIndex)
  1684. {
  1685. bool isCleanCheck = false;
  1686. char code[7];
  1687. if (chargingInfo[gunIndex]->Type == _Type_Chademo)
  1688. {
  1689. if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012234", 6) == EQUAL &&
  1690. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGfdTrip == YES)
  1691. {
  1692. memcpy(code, "012234", 6);
  1693. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1694. isCleanCheck = true;
  1695. }
  1696. else if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012289", 6) == EQUAL &&
  1697. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoOutputUVPFail == YES)
  1698. {
  1699. memcpy(code, "012289", 6);
  1700. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1701. isCleanCheck = true;
  1702. }
  1703. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGroundWarning == YES)
  1704. {
  1705. ReleaseWarningCodeByString(gunIndex, "012296");
  1706. }
  1707. }
  1708. else if (chargingInfo[gunIndex]->Type == _Type_GB)
  1709. {
  1710. if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012236", 6) == EQUAL &&
  1711. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip == YES)
  1712. {
  1713. memcpy(code, "012236", 6);
  1714. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1715. isCleanCheck = true;
  1716. }
  1717. else if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012290", 6) == EQUAL &&
  1718. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbtOutputUVPFail == YES)
  1719. {
  1720. memcpy(code, "012290", 6);
  1721. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1722. isCleanCheck = true;
  1723. }
  1724. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGroundfaultWarning == YES)
  1725. {
  1726. ReleaseWarningCodeByString(gunIndex, "012298");
  1727. }
  1728. }
  1729. else if (chargingInfo[gunIndex]->Type == _Type_CCS_2)
  1730. {
  1731. if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012235", 6) == EQUAL &&
  1732. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGfdTrip == YES)
  1733. {
  1734. memcpy(code, "012235", 6);
  1735. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1736. isCleanCheck = true;
  1737. }
  1738. else if (strncmp((char *)chargingInfo[gunIndex]->ConnectorAlarmCode, "012288", 6) == EQUAL &&
  1739. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsOutputUVPFail == YES)
  1740. {
  1741. memcpy(code, "012288", 6);
  1742. memcpy(chargingInfo[gunIndex]->ConnectorAlarmCode, "", 6);
  1743. isCleanCheck = true;
  1744. }
  1745. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGroundfaultWarning == YES)
  1746. {
  1747. ReleaseWarningCodeByString(gunIndex, "012297");
  1748. }
  1749. }
  1750. if (isCleanCheck)
  1751. {
  1752. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  1753. {
  1754. if (index == gunIndex)
  1755. continue;
  1756. else
  1757. {
  1758. if (strncmp((char *)chargingInfo[index]->ConnectorAlarmCode, code, 6) != EQUAL)
  1759. {
  1760. if (strncmp(code, "012234", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGfdTrip = NO;
  1761. if (strncmp(code, "012289", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoOutputUVPFail = NO;
  1762. if (strncmp(code, "012236", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip = NO;
  1763. if (strncmp(code, "012290", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbtOutputUVPFail = NO;
  1764. if (strncmp(code, "012235", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGfdTrip = NO;
  1765. if (strncmp(code, "012288", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsOutputUVPFail = NO;
  1766. }
  1767. }
  1768. }
  1769. }
  1770. }
  1771. void ReleaseWarningCodeByString(byte gunIndex, char *code)
  1772. {
  1773. bool isCleanCheck = false;
  1774. if (strncmp((char *)chargingInfo[gunIndex]->ConnectorWarningCode, code, 6) == EQUAL &&
  1775. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGroundWarning == YES)
  1776. {
  1777. memcpy(chargingInfo[gunIndex]->ConnectorWarningCode, "", 6);
  1778. isCleanCheck = true;
  1779. }
  1780. else if (strncmp((char *)chargingInfo[gunIndex]->ConnectorWarningCode, code, 6) == EQUAL &&
  1781. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGroundfaultWarning == YES)
  1782. {
  1783. memcpy(chargingInfo[gunIndex]->ConnectorWarningCode, "", 6);
  1784. isCleanCheck = true;
  1785. }
  1786. else if (strncmp((char *)chargingInfo[gunIndex]->ConnectorWarningCode, code, 6) == EQUAL &&
  1787. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGroundfaultWarning == YES)
  1788. {
  1789. memcpy(chargingInfo[gunIndex]->ConnectorWarningCode, "", 6);
  1790. isCleanCheck = true;
  1791. }
  1792. if (isCleanCheck)
  1793. {
  1794. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  1795. {
  1796. if (index == gunIndex)
  1797. continue;
  1798. else
  1799. {
  1800. if (strncmp((char *)chargingInfo[index]->ConnectorWarningCode, code, 6) != EQUAL)
  1801. {
  1802. if (strncmp(code, "012296", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGroundWarning = NO;
  1803. if (strncmp(code, "012297", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGroundfaultWarning = NO;
  1804. if (strncmp(code, "012298", 6) == EQUAL) ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGroundfaultWarning = NO;
  1805. }
  1806. }
  1807. }
  1808. }
  1809. }
  1810. //===============================================
  1811. // EmergencyStop and Charging Stop
  1812. //===============================================
  1813. void ChargingTerminalProcess(byte gunIndex)
  1814. {
  1815. setChargerMode(gunIndex, MODE_TERMINATING);
  1816. }
  1817. void AcChargingTerminalProcess()
  1818. {
  1819. ac_chargingInfo[0]->SystemStatus = MODE_TERMINATING;
  1820. }
  1821. void StopChargingProcessByString(byte level)
  1822. {
  1823. if (level > ShmSysConfigAndInfo->SysWarningInfo.Level)
  1824. {
  1825. ShmSysConfigAndInfo->SysWarningInfo.Level = level;
  1826. }
  1827. }
  1828. void ReleaseChargingProcessByString(byte level)
  1829. {
  1830. if (level >= ShmSysConfigAndInfo->SysWarningInfo.Level)
  1831. ShmSysConfigAndInfo->SysWarningInfo.Level = 0;
  1832. }
  1833. // 一般錯誤停止充電處理函式
  1834. void BoardErrOccurByString(byte index, char *code)
  1835. {
  1836. byte level = 1;
  1837. if ((chargingInfo[index]->SystemStatus > S_IDLE && chargingInfo[index]->SystemStatus < S_TERMINATING) ||
  1838. (chargingInfo[index]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[index]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  1839. {
  1840. if (strncmp(code, "023730", 6) == EQUAL && ShmStatusCodeData->InfoCode.InfoEvents.bits.ChademoChargerGetEmergencyStop == NO)
  1841. {
  1842. ShmStatusCodeData->InfoCode.InfoEvents.bits.ChademoChargerGetEmergencyStop = YES;
  1843. }
  1844. ChargingTerminalProcess(index);
  1845. }
  1846. StopChargingProcessByString(level);
  1847. }
  1848. // 急停狀況的停止充電處理函式
  1849. void EmcOccureByString(char *code)
  1850. {
  1851. byte level = 2;
  1852. // 嚴重的急停有四種 : EMC 按鈕、Mainbreak、Dooropen、SPD Trip
  1853. // 其錯誤等級為 2
  1854. if (strncmp(code, "012251", 6) == EQUAL || strncmp(code, "012252", 6) == EQUAL ||
  1855. strncmp(code, "012237", 6) == EQUAL || strncmp(code, "012238", 6) == EQUAL)
  1856. {
  1857. for (byte gun = 0; gun < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun++)
  1858. {
  1859. if ((chargingInfo[gun]->SystemStatus > S_IDLE && chargingInfo[gun]->SystemStatus < S_TERMINATING) ||
  1860. (chargingInfo[gun]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[gun]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  1861. {
  1862. ChargingTerminalProcess(gun);
  1863. }
  1864. StopChargingProcessByString(level);
  1865. }
  1866. }
  1867. }
  1868. void ReleaseBoardErrOccurByString(byte index, char *code)
  1869. {
  1870. bool isTrigger = false;
  1871. byte level = 1;
  1872. if (strncmp(code, "023730", 6) == 0 && ShmStatusCodeData->InfoCode.InfoEvents.bits.ChademoChargerGetEmergencyStop == YES)
  1873. {
  1874. isTrigger = true;
  1875. ShmStatusCodeData->InfoCode.InfoEvents.bits.ChademoChargerGetEmergencyStop = NO;
  1876. }
  1877. if (isTrigger)
  1878. {
  1879. ReleaseChargingProcessByString(level);
  1880. }
  1881. }
  1882. void ReleaseEmsOccureByString(byte index, char *code)
  1883. {
  1884. bool isTrigger = false;
  1885. byte level = 2;
  1886. if (strncmp(code, "012251", 6) == 0 && ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip == YES)
  1887. {
  1888. isTrigger = true;
  1889. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip = NO;
  1890. }
  1891. else if (strncmp(code, "012252", 6) == 0 && ShmStatusCodeData->AlarmCode.AlarmEvents.bits.DoorOpen == YES)
  1892. {
  1893. isTrigger = true;
  1894. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.DoorOpen = NO;
  1895. }
  1896. else if (strncmp(code, "012237", 6) == 0 && ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SpdTrip == YES)
  1897. {
  1898. isTrigger = true;
  1899. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SpdTrip = NO;
  1900. }
  1901. else if (strncmp(code, "012238", 6) == 0 && ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MainPowerBreakerTrip == YES)
  1902. {
  1903. isTrigger = true;
  1904. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MainPowerBreakerTrip = NO;
  1905. }
  1906. if (isTrigger)
  1907. {
  1908. ReleaseChargingProcessByString(level);
  1909. }
  1910. }
  1911. //===============================================
  1912. // 確認硬體 (按鈕) 狀態
  1913. //===============================================
  1914. bool leftBtnPush = false;
  1915. bool rightBtnPush = false;
  1916. void ChkPrimaryStatus()
  1917. {
  1918. if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == ABNORMAL)
  1919. {
  1920. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip = YES;
  1921. EmcOccureByString("012251");
  1922. }
  1923. else
  1924. ReleaseEmsOccureByString(0, "012251");
  1925. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == ABNORMAL)
  1926. {
  1927. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MainPowerBreakerTrip = YES;
  1928. EmcOccureByString("012238");
  1929. }
  1930. else
  1931. ReleaseEmsOccureByString(0, "012238");
  1932. if (ShmPrimaryMcuData->InputDet.bits.SpdDetec == ABNORMAL)
  1933. {
  1934. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SpdTrip = YES;
  1935. EmcOccureByString("012237");
  1936. }
  1937. else
  1938. ReleaseEmsOccureByString(0, "012237");
  1939. if (ShmPrimaryMcuData->InputDet.bits.DoorOpen == ABNORMAL)
  1940. {
  1941. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.DoorOpen = YES;
  1942. EmcOccureByString("012252");
  1943. }
  1944. else
  1945. ReleaseEmsOccureByString(0, "012252");
  1946. if (ShmPrimaryMcuData->InputDet.bits.Button1 == BTN_PRESS && !leftBtnPush)
  1947. {
  1948. if(!leftBtnPush)
  1949. {
  1950. leftBtnPush = true;
  1951. PRINTF_FUNC("left btn down............................... \n");
  1952. switch(chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus)
  1953. {
  1954. case S_IDLE:
  1955. {
  1956. if(isDetectPlugin())
  1957. {
  1958. _DetectPlugInTimeout();
  1959. StopSystemTimeoutDet();
  1960. }
  1961. }
  1962. break;
  1963. case S_REASSIGN_CHECK:
  1964. case S_REASSIGN:
  1965. case S_PREPARNING:
  1966. case S_PREPARING_FOR_EV:
  1967. case S_PREPARING_FOR_EVSE:
  1968. case S_CCS_PRECHARGE_ST0:
  1969. case S_CCS_PRECHARGE_ST1:
  1970. {
  1971. // 取消充電
  1972. ChargingTerminalProcess(ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  1973. }
  1974. break;
  1975. case S_CHARGING:
  1976. {
  1977. if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE)
  1978. {
  1979. // 停止充電
  1980. ChargingTerminalProcess(ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  1981. }
  1982. }
  1983. break;
  1984. case S_COMPLETE:
  1985. {
  1986. // 回 IDLE
  1987. //PRINTF_FUNC("right btn down.................S_COMPLETE \n");
  1988. //chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus = S_IDLE;
  1989. }
  1990. break;
  1991. }
  1992. }
  1993. }
  1994. else if (ShmPrimaryMcuData->InputDet.bits.Button1 == BTN_RELEASE)
  1995. {
  1996. if(leftBtnPush)
  1997. {
  1998. leftBtnPush = false;
  1999. PRINTF_FUNC("left btn up............................... \n");
  2000. }
  2001. }
  2002. if (ShmPrimaryMcuData->InputDet.bits.Button2 == BTN_PRESS && !rightBtnPush)
  2003. {
  2004. if(!rightBtnPush)
  2005. {
  2006. rightBtnPush = true;
  2007. PRINTF_FUNC("right btn down............................... %d \n", ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  2008. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected + 1 < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount)
  2009. {
  2010. ShmSysConfigAndInfo->SysInfo.CurGunSelected++;
  2011. ChangeGunSelectByIndex(ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  2012. }
  2013. else if (ShmSysConfigAndInfo->SysConfig.AcConnectorCount > 0 &&
  2014. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == NO_DEFINE)
  2015. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  2016. else
  2017. {
  2018. ShmSysConfigAndInfo->SysInfo.CurGunSelected = 0;
  2019. ChangeGunSelectByIndex(ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  2020. }
  2021. }
  2022. }
  2023. else if (ShmPrimaryMcuData->InputDet.bits.Button2 == BTN_RELEASE)
  2024. {
  2025. if(rightBtnPush)
  2026. {
  2027. rightBtnPush = false;
  2028. PRINTF_FUNC("right btn up............................... \n");
  2029. }
  2030. }
  2031. }
  2032. //===============================================
  2033. // 確認各小板偵測的錯誤狀況
  2034. //===============================================
  2035. void CheckErrorOccurStatus(byte index)
  2036. {
  2037. // 小板
  2038. if (chargingInfo[index]->Type == _Type_Chademo)
  2039. {
  2040. if (ShmStatusCodeData->FaultCode.FaultEvents.bits.ChademoOutputRelayDrivingFault == YES)
  2041. BoardErrOccurByString(index, "011012");
  2042. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ChademoGfdTrip == YES)
  2043. BoardErrOccurByString(index, "012234");
  2044. }
  2045. else if (chargingInfo[index]->Type == _Type_GB)
  2046. {
  2047. if (ShmStatusCodeData->FaultCode.FaultEvents.bits.GbOutputRelayDrivingFault == YES)
  2048. BoardErrOccurByString(index, "011016");
  2049. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip == YES)
  2050. BoardErrOccurByString(index, "012236");
  2051. }
  2052. else if (chargingInfo[index]->Type == _Type_CCS_2)
  2053. {
  2054. if (ShmStatusCodeData->FaultCode.FaultEvents.bits.CcsOutputRelayDrivingFault == YES)
  2055. BoardErrOccurByString(index, "011014");
  2056. else if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsGfdTrip == YES)
  2057. BoardErrOccurByString(index, "012235");
  2058. }
  2059. // RB
  2060. if (ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy == YES)
  2061. {
  2062. if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputUVP == YES ||
  2063. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputUVP == YES ||
  2064. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputUVP == YES)
  2065. {
  2066. if (ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess == _EXTRA_ERR_PROCESS_NONE)
  2067. {
  2068. ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess = _EXTRA_ERR_PROCESS_INUVP;
  2069. StopChargingProcessByString(2);
  2070. }
  2071. }
  2072. else
  2073. {
  2074. if (ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess == _EXTRA_ERR_PROCESS_INUVP)
  2075. {
  2076. ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess = _EXTRA_ERR_PROCESS_NONE;
  2077. ReleaseChargingProcessByString(2);
  2078. }
  2079. }
  2080. }
  2081. if (ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputOVP == YES ||
  2082. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputOVP == YES ||
  2083. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputOVP == YES)
  2084. {
  2085. if (ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess == _EXTRA_ERR_PROCESS_NONE)
  2086. {
  2087. ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess = _EXTRA_ERR_PROCESS_INOVP;
  2088. StopChargingProcessByString(2);
  2089. }
  2090. }
  2091. else
  2092. {
  2093. if (ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess == _EXTRA_ERR_PROCESS_INOVP)
  2094. {
  2095. ShmSysConfigAndInfo->SysWarningInfo.ExtraErrProcess = _EXTRA_ERR_PROCESS_NONE;
  2096. ReleaseChargingProcessByString(2);
  2097. }
  2098. }
  2099. }
  2100. //===============================================
  2101. // 確認 GPIO 狀態
  2102. //===============================================
  2103. void gpio_set_value(unsigned int gpio, unsigned int value)
  2104. {
  2105. int fd;
  2106. char buf[MAX_BUF];
  2107. snprintf(buf, sizeof(buf), SYSFS_GPIO_DIR "/gpio%d/value", gpio);
  2108. fd = open(buf, O_WRONLY);
  2109. if (fd < 0)
  2110. {
  2111. perror("gpio/set-value");
  2112. return;
  2113. }
  2114. if (value)
  2115. write(fd, "1", 2);
  2116. else
  2117. write(fd, "0", 2);
  2118. close(fd);
  2119. }
  2120. int gpio_get_value(unsigned int gpio, unsigned int *value)
  2121. {
  2122. int fd;
  2123. char buf[MAX_BUF];
  2124. char ch;
  2125. snprintf(buf, sizeof(buf), SYSFS_GPIO_DIR "/gpio%d/value", gpio);
  2126. fd = open(buf, O_RDONLY);
  2127. if (fd < 0){
  2128. perror("gpio/get-value");
  2129. return fd;
  2130. }
  2131. read(fd, &ch, 1);
  2132. if (ch != '0') {
  2133. *value = 1;
  2134. } else {
  2135. *value = 0;
  2136. }
  2137. close(fd);
  2138. return 0;
  2139. }
  2140. void CheckGunTypeFromHw()
  2141. {
  2142. int pinIn[4] = { 22, 23, 44, 45 };
  2143. unsigned int gpioValue = 0;
  2144. for (int i = 0; i < ARRAY_SIZE(pinIn); i++)
  2145. {
  2146. gpio_get_value(pinIn[i], &gpioValue);
  2147. switch (pinIn[i])
  2148. {
  2149. case 22:
  2150. bd1_1_status = gpioValue;
  2151. break;
  2152. case 23:
  2153. bd1_2_status = gpioValue;
  2154. break;
  2155. case 44:
  2156. bd0_1_status = gpioValue;
  2157. break;
  2158. case 45:
  2159. bd0_2_status = gpioValue;
  2160. break;
  2161. }
  2162. }
  2163. }
  2164. void CheckGpioInStatus()
  2165. {
  2166. int pinIn[2] = { 27, 47 };
  2167. unsigned int gpioValue = 0;
  2168. for (int i = 0; i < ARRAY_SIZE(pinIn); i++)
  2169. {
  2170. gpio_get_value(pinIn[i], &gpioValue);
  2171. if (gpioValue == 0x01)
  2172. {
  2173. switch(pinIn[i])
  2174. {
  2175. // 小板緊急停止
  2176. case 47:
  2177. {
  2178. for(int i = 0; i < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; i++)
  2179. {
  2180. if (chargingInfo[i]->slotsIndex == 1)
  2181. {
  2182. if (chargingInfo[i]->Type == _Type_Chademo)
  2183. BoardErrOccurByString(i, "023730");
  2184. else if (chargingInfo[i]->Type == _Type_CCS_2)
  2185. BoardErrOccurByString(i, "013627");
  2186. break;
  2187. }
  2188. }
  2189. }
  2190. break;
  2191. case 27:
  2192. {
  2193. for(int i = 0; i < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; i++)
  2194. {
  2195. if (chargingInfo[i]->slotsIndex == 3)
  2196. {
  2197. if (chargingInfo[i]->Type == _Type_Chademo)
  2198. BoardErrOccurByString(i, "023730");
  2199. else if (chargingInfo[i]->Type == _Type_CCS_2)
  2200. BoardErrOccurByString(i, "013627");
  2201. break;
  2202. }
  2203. }
  2204. }
  2205. break;
  2206. }
  2207. }
  2208. else
  2209. {
  2210. switch (pinIn[i])
  2211. {
  2212. // 小板解除緊急停止
  2213. case 47:
  2214. {
  2215. for(int i = 0; i < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; i++)
  2216. {
  2217. if (chargingInfo[i]->slotsIndex == 1)
  2218. {
  2219. if (chargingInfo[i]->Type == _Type_Chademo)
  2220. ReleaseBoardErrOccurByString(i, "023730");
  2221. else if (chargingInfo[i]->Type == _Type_CCS_2)
  2222. ReleaseBoardErrOccurByString(i, "013627");
  2223. break;
  2224. }
  2225. }
  2226. }
  2227. break;
  2228. case 27:
  2229. {
  2230. for (int i = 0; i < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; i++)
  2231. {
  2232. if (chargingInfo[i]->slotsIndex == 3)
  2233. {
  2234. if (chargingInfo[i]->Type == _Type_Chademo)
  2235. ReleaseBoardErrOccurByString(i, "023730");
  2236. else if (chargingInfo[i]->Type == _Type_CCS_2)
  2237. ReleaseBoardErrOccurByString(i, "013627");
  2238. break;
  2239. }
  2240. }
  2241. }
  2242. break;
  2243. }
  2244. }
  2245. }
  2246. }
  2247. //===============================================
  2248. // Main process
  2249. //===============================================
  2250. // 檢查 Byte 中某個 Bit 的值
  2251. // _byte : 欲改變的 byte
  2252. // _bit : 該 byte 的第幾個 bit
  2253. unsigned char DetectBitValue(unsigned char _byte, unsigned char _bit)
  2254. {
  2255. return ( _byte & mask_table[_bit] ) != 0x00;
  2256. }
  2257. // 設定 Byte 中某個 Bit的值
  2258. // _byte : 欲改變的 byte
  2259. // _bit : 該 byte 的第幾個 bit
  2260. // value : 修改的值為 0 or 1
  2261. void SetBitValue(unsigned char *_byte, unsigned char _bit, unsigned char value)
  2262. {
  2263. if(value == 1)
  2264. *_byte |= (1 << _bit);
  2265. else if (value == 0)
  2266. *_byte ^= (1 << _bit);
  2267. }
  2268. void UserScanFunction()
  2269. {
  2270. bool idleReq = false;
  2271. unsigned char stopReq = 255;
  2272. // 當前非驗證的狀態
  2273. if(!IsAuthorizingMode())
  2274. {
  2275. // 先判斷現在是否可以提供刷卡
  2276. // 1. 如果當前沒有槍是閒置狀態,則無提供刷卡功能
  2277. // 2. 停止充電
  2278. if (ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_FIX)
  2279. {
  2280. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2281. return;
  2282. }
  2283. for (byte i = 0; i < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; i++)
  2284. {
  2285. if (chargingInfo[i]->SystemStatus == S_CHARGING)
  2286. {
  2287. stopReq = i;
  2288. }
  2289. if ((chargingInfo[i]->SystemStatus == S_IDLE && chargingInfo[i]->IsAvailable) == YES ||
  2290. (_acgunIndex > 0 && ac_chargingInfo[0]->SystemStatus == S_IDLE && ac_chargingInfo[0]->IsAvailable))
  2291. {
  2292. idleReq = true;
  2293. }
  2294. }
  2295. if (_acgunIndex > 0 && ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == DEFAULT_AC_INDEX &&
  2296. ac_chargingInfo[0]->SystemStatus == S_CHARGING)
  2297. {
  2298. stopReq = DEFAULT_AC_INDEX;
  2299. }
  2300. if (strlen((char *)ShmSysConfigAndInfo->SysConfig.UserId) > 0)
  2301. {
  2302. if (_acgunIndex > 0 && stopReq == DEFAULT_AC_INDEX && ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == DEFAULT_AC_INDEX)
  2303. {
  2304. char value[32];
  2305. PRINTF_FUNC("ac stop charging \n");
  2306. PRINTF_FUNC("index = %d, card number = %s, UserId = %s \n", ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc,
  2307. ac_chargingInfo[0]->StartUserId, ShmSysConfigAndInfo->SysConfig.UserId);
  2308. memcpy(value, (unsigned char *)ac_chargingInfo[0]->StartUserId,
  2309. ARRAY_SIZE(ac_chargingInfo[0]->StartUserId));
  2310. if (strcmp((char *)ShmSysConfigAndInfo->SysConfig.UserId, value) == EQUAL)
  2311. {
  2312. AcChargingTerminalProcess();
  2313. }
  2314. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2315. }
  2316. else if (stopReq < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount &&
  2317. chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus == S_CHARGING &&
  2318. (_acgunIndex <= 0 || (_acgunIndex > 0 && ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == NO_DEFINE)))
  2319. {
  2320. char value[32];
  2321. PRINTF_FUNC("stop charging \n");
  2322. PRINTF_FUNC("index = %d, card number = %s, UserId = %s \n", ShmSysConfigAndInfo->SysInfo.CurGunSelected,
  2323. chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->StartUserId, ShmSysConfigAndInfo->SysConfig.UserId);
  2324. memcpy(value, (unsigned char *)chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->StartUserId,
  2325. ARRAY_SIZE(chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->StartUserId));
  2326. if (strcmp((char *)ShmSysConfigAndInfo->SysConfig.UserId, value) == EQUAL)
  2327. {
  2328. ChargingTerminalProcess(ShmSysConfigAndInfo->SysInfo.CurGunSelected);
  2329. }
  2330. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2331. }
  2332. else if (idleReq)
  2333. {
  2334. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount > 1 &&
  2335. stopReq != 255 &&
  2336. ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
  2337. {
  2338. idleReq = false;
  2339. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2340. }
  2341. else if ((_acgunIndex > 0 && ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == DEFAULT_AC_INDEX) ||
  2342. chargingInfo[ShmSysConfigAndInfo->SysInfo.CurGunSelected]->SystemStatus == S_IDLE)
  2343. {
  2344. PRINTF_FUNC("// LCM => Authorizing \n");
  2345. // LCM => Authorizing
  2346. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_AUTHORIZING;
  2347. // 進入確認卡號狀態
  2348. AuthorizingStart();
  2349. }
  2350. else
  2351. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2352. }
  2353. else
  2354. {
  2355. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  2356. }
  2357. }
  2358. }
  2359. }
  2360. unsigned char isModeChange(unsigned char gun_index)
  2361. {
  2362. unsigned char result = NO;
  2363. if(chargingInfo[gun_index]->SystemStatus != chargingInfo[gun_index]->PreviousSystemStatus)
  2364. {
  2365. result = YES;
  2366. chargingInfo[gun_index]->PreviousSystemStatus = chargingInfo[gun_index]->SystemStatus;
  2367. }
  2368. return result;
  2369. }
  2370. void ScannerCardProcess()
  2371. {
  2372. if (!isDetectPlugin() && !isCardScan && ShmSysConfigAndInfo->SysWarningInfo.Level != 2 &&
  2373. ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_ENABLE)
  2374. {
  2375. isCardScan = true;
  2376. // 處理刷卡及驗證卡號的動作
  2377. UserScanFunction();
  2378. }
  2379. if (ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_AUTHORIZING)
  2380. {
  2381. StartSystemTimeoutDet(Timeout_Authorizing);
  2382. // 確認驗證卡號完成沒
  2383. if (isAuthorizedComplete() || ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_FREE_CHARGING)
  2384. {
  2385. StopSystemTimeoutDet();
  2386. // 判斷後台回覆狀態
  2387. if(canStartCharging() || ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_FREE_CHARGING)
  2388. {
  2389. // LCM => Authorize complete
  2390. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_AUTHORIZ_COMP;
  2391. }
  2392. else
  2393. {
  2394. // LCM => Authorize fail
  2395. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_AUTHORIZ_FAIL;
  2396. }
  2397. ClearAuthorizedFlag();
  2398. }
  2399. else if (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_LOCAL_LIST)
  2400. {
  2401. // 白名單驗證
  2402. for (int i = 0; i < 10; i++)
  2403. {
  2404. if (strcmp((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[i], "") != EQUAL)
  2405. {
  2406. if (strcmp((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[i], (char *)ShmSysConfigAndInfo->SysConfig.UserId) == EQUAL)
  2407. {
  2408. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_AUTHORIZ_COMP;
  2409. ClearAuthorizedFlag();
  2410. break;
  2411. }
  2412. }
  2413. }
  2414. }
  2415. }
  2416. else if (ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_AUTHORIZ_FAIL)
  2417. {
  2418. StartSystemTimeoutDet(Timeout_VerifyFail);
  2419. isCardScan = false;
  2420. }
  2421. else if(ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_AUTHORIZ_COMP)
  2422. {
  2423. StartSystemTimeoutDet(Timeout_VerifyComp);
  2424. }
  2425. else if(ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_WAIT_FOR_PLUG)
  2426. {
  2427. StartSystemTimeoutDet(Timeout_WaitPlug);
  2428. }
  2429. else
  2430. isCardScan = false;
  2431. }
  2432. bool AddGunInfoByConnector(byte typeValue, byte slots)
  2433. {
  2434. bool result = true;
  2435. switch (typeValue)
  2436. {
  2437. case '0': // none
  2438. break;
  2439. case '1': // IEC 62196-2 Type 1/SAE J1772 Plug
  2440. break;
  2441. case '2': // IEC 62196-2 Type 1/SAE J1772 Socket
  2442. break;
  2443. case '3': // IEC 62196-2 Type 2 Plug
  2444. case '4': // IEC 62196-2 Type 2 Socket
  2445. if (AC_QUANTITY > _ac_Index)
  2446. {
  2447. ac_chargingInfo[_acgunIndex] = &ShmSysConfigAndInfo->SysInfo.AcChargingData[_ac_Index];
  2448. // AC 固定 index
  2449. ac_chargingInfo[_acgunIndex]->Index = 1;
  2450. ac_chargingInfo[_acgunIndex]->SystemStatus = S_BOOTING;
  2451. ac_chargingInfo[_acgunIndex]->Type = _Type_AC;
  2452. ac_chargingInfo[_acgunIndex]->IsAvailable = YES;
  2453. _ac_Index++;
  2454. _acgunIndex++;
  2455. }
  2456. else
  2457. result = false;
  2458. break;
  2459. case '5': // GB/T AC Plug
  2460. break;
  2461. case '6': // GB/T AC Socket
  2462. break;
  2463. case 'J': // CHAdeMO
  2464. {
  2465. if (CHAdeMO_QUANTITY > _chademoIndex)
  2466. {
  2467. chargingInfo[_gunIndex] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[_chademoIndex];
  2468. chargingInfo[_gunIndex]->Index = _gunIndex;
  2469. chargingInfo[_gunIndex]->slotsIndex = slots;
  2470. chargingInfo[_gunIndex]->SystemStatus = S_BOOTING;
  2471. chargingInfo[_gunIndex]->Type = _Type_Chademo;
  2472. chargingInfo[_gunIndex]->type_index = _chademoIndex;
  2473. chargingInfo[_gunIndex]->IsAvailable = YES;
  2474. _chademoIndex++;
  2475. _gunIndex++;
  2476. }
  2477. else
  2478. result = false;
  2479. }
  2480. break;
  2481. case 'U': // CCS1 combo
  2482. case 'E': // CCS2 combo
  2483. {
  2484. if (CCS_QUANTITY > _ccsIndex)
  2485. {
  2486. chargingInfo[_gunIndex] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[_ccsIndex];
  2487. chargingInfo[_gunIndex]->Index = _gunIndex;
  2488. chargingInfo[_gunIndex]->slotsIndex = slots;
  2489. chargingInfo[_gunIndex]->SystemStatus = S_BOOTING;
  2490. chargingInfo[_gunIndex]->Type = _Type_CCS_2;
  2491. chargingInfo[_gunIndex]->type_index = _ccsIndex;
  2492. chargingInfo[_gunIndex]->IsAvailable = YES;
  2493. // 現階段預設為走 DIN70121
  2494. ShmCcsData->CommProtocol = 0x01;
  2495. _ccsIndex++;
  2496. _gunIndex++;
  2497. }
  2498. else
  2499. result = false;
  2500. }
  2501. break;
  2502. case 'G': // GBT DC
  2503. {
  2504. if (GB_QUANTITY > _gb_Index)
  2505. {
  2506. chargingInfo[_gunIndex] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[_gb_Index];
  2507. chargingInfo[_gunIndex]->Index = _gunIndex;
  2508. chargingInfo[_gunIndex]->slotsIndex = slots;
  2509. chargingInfo[_gunIndex]->SystemStatus = S_BOOTING;
  2510. chargingInfo[_gunIndex]->Type = _Type_GB;
  2511. chargingInfo[_gunIndex]->type_index = _gb_Index;
  2512. chargingInfo[_gunIndex]->IsAvailable = YES;
  2513. _gb_Index++;
  2514. _gunIndex++;
  2515. }
  2516. else
  2517. result = false;
  2518. }
  2519. break;
  2520. case 'D': // GBT DC x 2
  2521. break;
  2522. }
  2523. return result;
  2524. }
  2525. bool CheckConnectorTypeStatus()
  2526. {
  2527. bool result = true;
  2528. PRINTF_FUNC("bd0_1_status = %d, bd0_2_status = %d, bd1_1_status = %d, bd1_2_status = %d \n",
  2529. bd0_1_status, bd0_2_status, bd1_1_status, bd1_2_status);
  2530. if (strlen((char *) ShmSysConfigAndInfo->SysConfig.ModelName) >= 9)
  2531. {
  2532. byte slots = 1;
  2533. for (byte typeIndex = 7; typeIndex <= 9; typeIndex++)
  2534. {
  2535. if(!AddGunInfoByConnector(ShmSysConfigAndInfo->SysConfig.ModelName[typeIndex], slots))
  2536. {
  2537. return false;
  2538. }
  2539. slots++;
  2540. }
  2541. ShmSysConfigAndInfo->SysConfig.TotalConnectorCount = _gunIndex;
  2542. ShmSysConfigAndInfo->SysConfig.AcConnectorCount = _acgunIndex;
  2543. PRINTF_FUNC("DC _gunCount = %d, AC _gunCount = %d \n",
  2544. ShmSysConfigAndInfo->SysConfig.TotalConnectorCount,
  2545. ShmSysConfigAndInfo->SysConfig.AcConnectorCount);
  2546. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount == 0 &&
  2547. ShmSysConfigAndInfo->SysConfig.AcConnectorCount == 0)
  2548. result = false;
  2549. // 偵測槍屬於哪個 slot : 可知道插在板上的Slot 0 或 1 是 Chademo 還是 CCS
  2550. for (byte gunIndex = 0; gunIndex < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gunIndex++)
  2551. {
  2552. if (gunIndex == 0 && bd0_1_status == 0 && bd0_2_status == 1)
  2553. {
  2554. // 與硬體相同 type : Chademo
  2555. if (chargingInfo[gunIndex]->Type == _Type_Chademo)
  2556. {
  2557. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2558. }
  2559. }
  2560. else if (gunIndex == 0 && bd0_1_status == 1 && bd0_2_status == 0)
  2561. {
  2562. // 與硬體相同 type : CCS
  2563. if (chargingInfo[gunIndex]->Type == _Type_CCS_2)
  2564. {
  2565. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2566. }
  2567. }
  2568. else if (gunIndex == 0 && bd0_1_status == 1 && bd0_2_status == 1)
  2569. {
  2570. // 與硬體相同 type : GB
  2571. if (chargingInfo[gunIndex]->Type == _Type_GB)
  2572. {
  2573. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2574. }
  2575. }
  2576. if (gunIndex == 1 && bd1_1_status == 0 && bd1_2_status == 1)
  2577. {
  2578. // 與硬體相同 type : Chademo
  2579. if (chargingInfo[gunIndex]->Type == _Type_Chademo)
  2580. {
  2581. chargingInfo[gunIndex]->Evboard_id = 0x02;
  2582. }
  2583. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount == 1)
  2584. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2585. }
  2586. else if (gunIndex == 1 && bd1_1_status == 1 && bd1_2_status == 0)
  2587. {
  2588. // 與硬體相同 type : CCS
  2589. if (chargingInfo[gunIndex]->Type == _Type_CCS_2)
  2590. {
  2591. chargingInfo[gunIndex]->Evboard_id = 0x02;
  2592. }
  2593. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount == 1)
  2594. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2595. }
  2596. else if (gunIndex == 1 && bd1_1_status == 1 && bd1_2_status == 1)
  2597. {
  2598. // 與硬體相同 type : GB
  2599. if (chargingInfo[gunIndex]->Type == _Type_GB)
  2600. {
  2601. chargingInfo[gunIndex]->Evboard_id = 0x02;
  2602. }
  2603. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount == 1)
  2604. chargingInfo[gunIndex]->Evboard_id = 0x01;
  2605. }
  2606. PRINTF_FUNC("index = %d, Type = %d, Evboard_id = %d \n", gunIndex, chargingInfo[gunIndex]->Type, chargingInfo[gunIndex]->Evboard_id);
  2607. if (chargingInfo[gunIndex]->Evboard_id == 0x00)
  2608. result = false;
  2609. }
  2610. }
  2611. else
  2612. {
  2613. // Module Name 不正確 - 告警
  2614. result = false;
  2615. }
  2616. return result;
  2617. }
  2618. void KillTask()
  2619. {
  2620. ChangeLcmByIndex(_LCM_FIX);
  2621. system("killall Module_EventLogging");
  2622. system("killall Module_PrimaryComm");
  2623. system("killall Module_EvComm");
  2624. system("killall Module_LcmControl");
  2625. system("killall Module_InternalComm");
  2626. system("killall Module_PsuComm");
  2627. system("killall OcppBackend &");
  2628. system("killall Module_4g &");
  2629. system("killall Module_Wifi &");
  2630. }
  2631. char CheckUpdateProcess()
  2632. {
  2633. DIR *d;
  2634. struct dirent *dir;
  2635. d = opendir("/mnt/");
  2636. if (d)
  2637. {
  2638. long int MaxLen=48*1024*1024, ImageLen = 0;
  2639. while ((dir = readdir(d)) != NULL)
  2640. {
  2641. char *new_str;
  2642. new_str = malloc(strlen("/mnt/")+strlen(dir->d_name)+1);
  2643. new_str[0] = '\0';
  2644. strcat(new_str, "/mnt/");
  2645. strcat(new_str, dir->d_name);
  2646. int fd = open(new_str, O_RDONLY);
  2647. if (fd < 0)
  2648. {
  2649. return FAIL;
  2650. }
  2651. unsigned char *ptr = malloc(MaxLen); //-48 is take out the header
  2652. memset(ptr, 0xFF, MaxLen); //-48 is take out the header
  2653. //get the image length
  2654. ImageLen = read(fd, ptr, MaxLen);
  2655. if (ImageLen > 20)
  2656. {
  2657. unsigned int Type = (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19]));
  2658. PRINTF_FUNC("Typed...%x \r\n", Type);
  2659. switch (Type)
  2660. {
  2661. case 0x10000001:
  2662. case 0x10000002:
  2663. case 0x10000003:
  2664. case 0x10000004:
  2665. case 0x10000005:
  2666. {
  2667. if (Upgrade_Flash(Type, new_str, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  2668. return PASS;
  2669. else
  2670. return FAIL;
  2671. }
  2672. break;
  2673. case 0x10000007:
  2674. case 0x10000008:
  2675. case 0x10000009:
  2676. case 0x1000000A:
  2677. {
  2678. }
  2679. break;
  2680. case 0x10000006:
  2681. case 0x1000000D:
  2682. case 0x1000000E:
  2683. case 0x20000002:
  2684. {
  2685. // CSU_PRIMARY_CONTROLLER : 0x10000006
  2686. byte target = 0x00;
  2687. if (Type == 0x10000006)
  2688. target = UPGRADE_PRI;
  2689. else if (Type == 0x1000000D)
  2690. target = UPGRADE_RB;
  2691. else if (Type == 0x1000000E)
  2692. target = UPGRADE_FAN;
  2693. else if (Type == 0x20000002)
  2694. target = UPGRADE_AC;
  2695. int fd = InitComPort(target);
  2696. if (Upgrade_UART(fd, Type, target, new_str, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  2697. return PASS;
  2698. else
  2699. return FAIL;
  2700. close(fd);
  2701. }
  2702. break;
  2703. case 0x1000000B:
  2704. case 0x1000000C:
  2705. {
  2706. // CHAdeMO_BOARD : 0x1000000B, GBT : 0x1000000C
  2707. bool isPass = true;
  2708. int CanFd = InitCanBus();
  2709. if (CanFd > 0)
  2710. {
  2711. for(byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  2712. {
  2713. if (!isPass)
  2714. break;
  2715. if ((Type == 0x1000000B && chargingInfo[index]->Type == _Type_Chademo) ||
  2716. (Type == 0x1000000C && chargingInfo[index]->Type == _Type_GB))
  2717. {
  2718. if (Upgrade_CAN(CanFd, Type, chargingInfo[index]->Evboard_id, new_str, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  2719. return PASS;
  2720. else
  2721. return FAIL;
  2722. }
  2723. }
  2724. }
  2725. else
  2726. {
  2727. PRINTF_FUNC("Upgrad FD fail. \n");
  2728. isPass = false;
  2729. }
  2730. return isPass;
  2731. break;
  2732. }
  2733. }
  2734. }
  2735. free(new_str);
  2736. free(ptr);
  2737. }
  2738. }
  2739. free(dir);
  2740. closedir(d);
  2741. return FAIL;
  2742. }
  2743. void CreateRfidFork()
  2744. {
  2745. pid_t rfidRecPid;
  2746. rfidRecPid = fork();
  2747. if (rfidRecPid == 0)
  2748. {
  2749. while(true)
  2750. {
  2751. // 刷卡判斷
  2752. RFID rfid;
  2753. if (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING ||
  2754. !ShmSysConfigAndInfo->SysConfig.isRFID)
  2755. {}
  2756. else if(getRequestCardSN(rfidFd, 0, &rfid))
  2757. {
  2758. PRINTF_FUNC("Get Card..-%s- \n", ShmSysConfigAndInfo->SysConfig.UserId);
  2759. if (strlen((char *)ShmSysConfigAndInfo->SysConfig.UserId) == 0)
  2760. {
  2761. if (ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian == RFID_ENDIAN_LITTLE)
  2762. {
  2763. switch (rfid.snType)
  2764. {
  2765. case RFID_SN_TYPE_6BYTE:
  2766. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2767. "%02X%02X%02X%02X%02X%02X",
  2768. rfid.currentCard[0], rfid.currentCard[1],
  2769. rfid.currentCard[2], rfid.currentCard[3],
  2770. rfid.currentCard[4], rfid.currentCard[5]);
  2771. break;
  2772. case RFID_SN_TYPE_7BYTE:
  2773. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2774. "%02X%02X%02X%02X%02X%02X%02X",
  2775. rfid.currentCard[0], rfid.currentCard[1],
  2776. rfid.currentCard[2], rfid.currentCard[3],
  2777. rfid.currentCard[4], rfid.currentCard[5],
  2778. rfid.currentCard[6]);
  2779. break;
  2780. case RFID_SN_TYPE_10BYTE:
  2781. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2782. "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
  2783. rfid.currentCard[0], rfid.currentCard[1],
  2784. rfid.currentCard[2], rfid.currentCard[3],
  2785. rfid.currentCard[4], rfid.currentCard[5],
  2786. rfid.currentCard[6], rfid.currentCard[7],
  2787. rfid.currentCard[8], rfid.currentCard[9]);
  2788. break;
  2789. case RFID_SN_TYPE_4BYTE:
  2790. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2791. "%02X%02X%02X%02X",
  2792. rfid.currentCard[0], rfid.currentCard[1],
  2793. rfid.currentCard[2], rfid.currentCard[3]);
  2794. break;
  2795. }
  2796. }
  2797. else if (ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian == RFID_ENDIAN_BIG)
  2798. {
  2799. switch (rfid.snType)
  2800. {
  2801. case RFID_SN_TYPE_6BYTE:
  2802. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2803. "%02X%02X%02X%02X%02X%02X",
  2804. rfid.currentCard[5], rfid.currentCard[4],
  2805. rfid.currentCard[3], rfid.currentCard[2],
  2806. rfid.currentCard[1], rfid.currentCard[0]);
  2807. break;
  2808. case RFID_SN_TYPE_7BYTE:
  2809. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2810. "%02X%02X%02X%02X%02X%02X%02X",
  2811. rfid.currentCard[6], rfid.currentCard[5],
  2812. rfid.currentCard[4], rfid.currentCard[3],
  2813. rfid.currentCard[2], rfid.currentCard[1],
  2814. rfid.currentCard[0]);
  2815. break;
  2816. case RFID_SN_TYPE_10BYTE:
  2817. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2818. "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
  2819. rfid.currentCard[9], rfid.currentCard[8],
  2820. rfid.currentCard[7], rfid.currentCard[6],
  2821. rfid.currentCard[5], rfid.currentCard[4],
  2822. rfid.currentCard[3], rfid.currentCard[2],
  2823. rfid.currentCard[1], rfid.currentCard[0]);
  2824. break;
  2825. case RFID_SN_TYPE_4BYTE:
  2826. sprintf((char *) ShmSysConfigAndInfo->SysConfig.UserId,
  2827. "%02X%02X%02X%02X",
  2828. rfid.currentCard[3], rfid.currentCard[2],
  2829. rfid.currentCard[1], rfid.currentCard[0]);
  2830. break;
  2831. }
  2832. }
  2833. PRINTF_FUNC("card number = %s\n", ShmSysConfigAndInfo->SysConfig.UserId);
  2834. }
  2835. }
  2836. sleep(1);
  2837. }
  2838. }
  2839. }
  2840. void StartSystemTimeoutDet(unsigned char flag)
  2841. {
  2842. if (ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag != flag)
  2843. {
  2844. gettimeofday(&ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer, NULL);
  2845. }
  2846. ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag = flag;
  2847. }
  2848. void StopSystemTimeoutDet()
  2849. {
  2850. gettimeofday(&ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer, NULL);
  2851. ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag = Timeout_None;
  2852. }
  2853. void StartGunInfoTimeoutDet(unsigned char gunIndex, unsigned char flag)
  2854. {
  2855. if (gunIndex < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount)
  2856. {
  2857. if (chargingInfo[gunIndex]->TimeoutFlag != flag)
  2858. {
  2859. gettimeofday(&chargingInfo[gunIndex]->TimeoutTimer, NULL);
  2860. }
  2861. chargingInfo[gunIndex]->TimeoutFlag = flag;
  2862. }
  2863. }
  2864. void StopGunInfoTimeoutDet(unsigned char gunIndex)
  2865. {
  2866. if (gunIndex < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount)
  2867. {
  2868. chargingInfo[gunIndex]->TimeoutFlag = Timeout_None;
  2869. }
  2870. }
  2871. void CreateTimeoutFork()
  2872. {
  2873. pid_t timeoutPid;
  2874. timeoutPid = fork();
  2875. if (timeoutPid > 0)
  2876. {
  2877. while(true)
  2878. {
  2879. //printf("Timeout ***********SystemTimeoutFlag = %d, ********\n", ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag);
  2880. // 系統
  2881. switch(ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag)
  2882. {
  2883. case Timeout_SelftestChk:
  2884. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 40000000)
  2885. {
  2886. _SelfTestTimeout();
  2887. StopSystemTimeoutDet();
  2888. }
  2889. break;
  2890. case Timeout_Authorizing:
  2891. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 30000000)
  2892. {
  2893. _AuthorizedTimeout();
  2894. StopSystemTimeoutDet();
  2895. }
  2896. break;
  2897. case Timeout_VerifyFail:
  2898. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 3000000)
  2899. {
  2900. _AutoReturnTimeout();
  2901. StopSystemTimeoutDet();
  2902. }
  2903. break;
  2904. case Timeout_VerifyComp:
  2905. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 3000000)
  2906. {
  2907. _AutoReturnTimeout();
  2908. StopSystemTimeoutDet();
  2909. }
  2910. break;
  2911. case Timeout_WaitPlug:
  2912. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 40000000)
  2913. {
  2914. _DetectPlugInTimeout();
  2915. StopSystemTimeoutDet();
  2916. }
  2917. break;
  2918. case Timeout_ReturnToChargingGunDet:
  2919. {
  2920. if (GetTimeoutValue(ShmSysConfigAndInfo->SysInfo.SystemTimeoutTimer) >= 30000000)
  2921. {
  2922. DisplayChargingInfo();
  2923. StopSystemTimeoutDet();
  2924. }
  2925. }
  2926. break;
  2927. }
  2928. // 各槍
  2929. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  2930. {
  2931. //printf("Timeout ***********TimeoutFlag = %d, ********\n", chargingInfo[gun_index]->TimeoutFlag);
  2932. switch(chargingInfo[gun_index]->TimeoutFlag)
  2933. {
  2934. case Timeout_Preparing:
  2935. {
  2936. if (GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 30000000)
  2937. {
  2938. _PrepareTimeout(gun_index);
  2939. StopGunInfoTimeoutDet(gun_index);
  2940. }
  2941. }
  2942. break;
  2943. case Timeout_EvChargingDet:
  2944. {
  2945. if (GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 120000000)
  2946. {
  2947. _DetectEvChargingEnableTimeout(gun_index);
  2948. StopGunInfoTimeoutDet(gun_index);
  2949. }
  2950. }
  2951. break;
  2952. case Timeout_EvseChargingDet:
  2953. {
  2954. if (GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 60000000)
  2955. {
  2956. _DetectEvseChargingEnableTimeout(gun_index);
  2957. StopGunInfoTimeoutDet(gun_index);
  2958. }
  2959. }
  2960. break;
  2961. case Timeout_EvseCompleteDet:
  2962. {
  2963. if (GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 10000000)
  2964. {
  2965. StopGunInfoTimeoutDet(gun_index);
  2966. }
  2967. }
  2968. break;
  2969. case Timeout_ForCcsPrechargeDet:
  2970. {
  2971. if (GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 60000000)
  2972. {
  2973. _CcsPrechargeTimeout(gun_index);
  2974. StopGunInfoTimeoutDet(gun_index);
  2975. }
  2976. }
  2977. break;
  2978. }
  2979. }
  2980. sleep(1);
  2981. }
  2982. }
  2983. }
  2984. void GetSystemTime()
  2985. {
  2986. struct timeb csuTime;
  2987. struct tm *tmCSU;
  2988. ftime(&csuTime);
  2989. tmCSU = localtime(&csuTime.time);
  2990. PRINTF_FUNC("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
  2991. tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  2992. tmCSU->tm_sec);
  2993. // byte date[14];
  2994. //
  2995. //
  2996. // //sprintf(&date, "%d", );
  2997. //
  2998. // date[0] = '0' + ((tmCSU->tm_year + 1900) / 1000 % 10);
  2999. // date[0] = (tmCSU->tm_year + 1900) / 1000 % 10;
  3000. // date[1] = (tmCSU->tm_year + 1900) / 100 % 10;
  3001. // date[2] = (tmCSU->tm_year + 1900) / 10 % 10;
  3002. // date[3] = (tmCSU->tm_year + 1900) / 1 % 10;
  3003. //
  3004. // date[4] = (tmCSU->tm_mon + 1) / 10 % 10;
  3005. // date[5] = (tmCSU->tm_mon + 1) / 1 % 10;
  3006. //
  3007. // date[6] = (tmCSU->tm_mday) / 10 % 10;
  3008. // date[7] = (tmCSU->tm_mday) / 1 % 10;
  3009. //
  3010. // date[8] = (tmCSU->tm_hour) / 10 % 10;
  3011. // date[9] = (tmCSU->tm_hour) / 1 % 10;
  3012. //
  3013. // date[10] = (tmCSU->tm_min) / 10 % 10;
  3014. // date[11] = (tmCSU->tm_min) / 1 % 10;
  3015. //
  3016. // date[12] = (tmCSU->tm_sec) / 10 % 10;
  3017. // date[13] = (tmCSU->tm_sec) / 1 % 10;
  3018. // PRINTF_FUNC("%x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x \n", date[0], date[1], date[2], date[3],
  3019. // date[4], date[5], date[6], date[7],
  3020. // date[8], date[9], date[10], date[11],
  3021. // date[12], date[13]);
  3022. }
  3023. void CheckFactoryConfigFunction()
  3024. {
  3025. if(ShmSysConfigAndInfo->SysInfo.FactoryConfiguration)
  3026. {
  3027. system("cd /root;./FactoryConfig -m");
  3028. system("sync");
  3029. sleep(5);
  3030. system("reboot -f");
  3031. sleep(5);
  3032. system("reboot -f");
  3033. }
  3034. }
  3035. void CheckFwUpdateFunction()
  3036. {
  3037. //PRINTF_FUNC("ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = %d \n", ShmSysConfigAndInfo->SysInfo.FirmwareUpdate);
  3038. if (ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == YES)
  3039. {
  3040. DEBUG_INFO_MSG("ftp : update start. \n");
  3041. KillTask();
  3042. if (CheckUpdateProcess() == PASS)
  3043. DEBUG_INFO_MSG("ftp : update complete. \n");
  3044. else
  3045. DEBUG_INFO_MSG("ftp : update fail. \n");
  3046. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = NO;
  3047. sleep(5);
  3048. system("reboot -f");
  3049. }
  3050. else if(ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq == YES)
  3051. {
  3052. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = NO;
  3053. }
  3054. else if (strcmp((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Downloaded") == EQUAL)
  3055. {
  3056. DEBUG_INFO_MSG("Backend : update start. \n");
  3057. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  3058. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installing");
  3059. KillTask();
  3060. if (CheckUpdateProcess() == PASS)
  3061. {
  3062. DEBUG_INFO_MSG("Backend : update complete. \n");
  3063. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  3064. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  3065. }
  3066. else
  3067. {
  3068. DEBUG_INFO_MSG("Backend : update fail. \n");
  3069. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  3070. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  3071. }
  3072. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  3073. sleep(5);
  3074. system("reboot -f");
  3075. }
  3076. else if (strcmp((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "DownloadFailed") == EQUAL)
  3077. {
  3078. DEBUG_ERROR_MSG("Backend to download file fail. \n");
  3079. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  3080. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  3081. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  3082. }
  3083. }
  3084. //===============================================
  3085. // Check reservation date is expired
  3086. //===============================================
  3087. int isReservationExpired(unsigned char gun_index)
  3088. {
  3089. int result = NO;
  3090. struct tm expiredDate;
  3091. struct timeb expiredTime;
  3092. if (sscanf((char*) ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate,
  3093. "%4d-%2d-%2dT%2d:%2d:%2d", &expiredDate.tm_year,
  3094. &expiredDate.tm_mon, &expiredDate.tm_mday, &expiredDate.tm_hour,
  3095. &expiredDate.tm_min, &expiredDate.tm_sec) == 6)
  3096. {
  3097. expiredDate.tm_year -= 1900;
  3098. expiredDate.tm_mon -= 1;
  3099. expiredTime.time = mktime(&expiredDate);
  3100. if (!CheckTimeOut(expiredTime))
  3101. {
  3102. result = YES;
  3103. }
  3104. }
  3105. return result;
  3106. }
  3107. //===============================================
  3108. // OCPP
  3109. //===============================================
  3110. void CheckOcppStatus()
  3111. {
  3112. if (ShmOCPP16Data->SpMsg.bits.BootNotificationConf == YES)
  3113. {
  3114. ShmSysConfigAndInfo->SysInfo.OcppConnStatus = YES;
  3115. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = NO;
  3116. }
  3117. if (ShmOCPP16Data->MsMsg.bits.ResetReq == YES)
  3118. {
  3119. ShmOCPP16Data->MsMsg.bits.ResetReq = NO;
  3120. if(strcmp((char *)ShmOCPP16Data->Reset.Type, "Hard") == EQUAL)
  3121. {
  3122. DEBUG_ERROR_MSG("****** Hard Reboot ****** \n");
  3123. sleep(3);
  3124. system("reboot -f");
  3125. }
  3126. else if (strcmp((char *)ShmOCPP16Data->Reset.Type, "Soft") == EQUAL)
  3127. {
  3128. DEBUG_ERROR_MSG("****** Soft Reboot ****** \n");
  3129. sleep(3);
  3130. KillTask();
  3131. system("/usr/bin/run_evse_restart.sh");
  3132. }
  3133. }
  3134. }
  3135. void OcppStartTransation(byte gunIndex)
  3136. {
  3137. if(strcmp((char *)chargingInfo[gunIndex]->StartUserId, "") == EQUAL)
  3138. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag, (char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag);
  3139. else
  3140. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag, (char *)chargingInfo[gunIndex]->StartUserId);
  3141. PRINTF_FUNC("IdTag = %s \n", ShmOCPP16Data->StartTransaction[gunIndex].IdTag);
  3142. ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionReq = YES;
  3143. }
  3144. void OcppStopTransation(byte gunIndex)
  3145. {
  3146. if(strcmp((char *)chargingInfo[gunIndex]->StartUserId, "") == EQUAL)
  3147. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].IdTag, (char *)ShmOCPP16Data->StopTransaction[gunIndex].IdTag);
  3148. else
  3149. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].IdTag, (char *)chargingInfo[gunIndex]->StartUserId);
  3150. PRINTF_FUNC("IdTag = %s \n", ShmOCPP16Data->StopTransaction[gunIndex].IdTag);
  3151. ShmOCPP16Data->CpMsg.bits[gunIndex].StopTransactionReq = YES;
  3152. }
  3153. bool OcppRemoteStop(byte gunIndex)
  3154. {
  3155. bool result = ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq;
  3156. if (ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq == YES)
  3157. ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq = NO;
  3158. return result;
  3159. }
  3160. void OcppRemoteStartChk()
  3161. {
  3162. if (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING)
  3163. {}
  3164. else if(!isDetectPlugin())
  3165. {
  3166. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  3167. {
  3168. if ((chargingInfo[gun_index]->SystemStatus == S_IDLE || chargingInfo[gun_index]->SystemStatus == S_RESERVATION)&&
  3169. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq == YES)
  3170. {
  3171. ShmSysConfigAndInfo->SysInfo.OrderCharging = gun_index;
  3172. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = NO;
  3173. DetectPluginStart();
  3174. break;
  3175. }
  3176. }
  3177. }
  3178. }
  3179. void ChkOcppStatus(byte gunIndex)
  3180. {
  3181. if (chargingInfo[gunIndex]->SystemStatus == S_IDLE &&
  3182. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq == YES)
  3183. {
  3184. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq = NO;
  3185. if (isReservationExpired(gunIndex))
  3186. {
  3187. PRINTF_FUNC("***************ChkOcppStatus : OcppReservedStatus******************** \n");
  3188. DEBUG_ERROR_MSG("***************ChkOcppStatus : OcppReservedStatus******************** \n");
  3189. chargingInfo[gunIndex]->ReservationId = ShmOCPP16Data->ReserveNow[gunIndex].ReservationId;
  3190. chargingInfo[gunIndex]->SystemStatus = S_RESERVATION;
  3191. }
  3192. }
  3193. if (chargingInfo[gunIndex]->SystemStatus == S_RESERVATION &&
  3194. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq == YES)
  3195. {
  3196. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq = NO;
  3197. if (isReservationExpired(gunIndex))
  3198. {
  3199. PRINTF_FUNC("***************ChkOcppStatus : Cancel OcppReservedStatus******************** \n");
  3200. DEBUG_ERROR_MSG("***************ChkOcppStatus : Cancel OcppReservedStatus******************** \n");
  3201. chargingInfo[gunIndex]->ReservationId = 0;
  3202. chargingInfo[gunIndex]->SystemStatus = S_IDLE;
  3203. }
  3204. }
  3205. if (ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq == YES)
  3206. {
  3207. PRINTF_FUNC("***************ChkOcppStatus : OcppChangeAvailability******************** \n");
  3208. DEBUG_ERROR_MSG("***************ChkOcppStatus : OcppChangeAvailability******************** \n");
  3209. ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq = NO;
  3210. if(strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Operative") == EQUAL)
  3211. chargingInfo[gunIndex]->IsAvailable = YES;
  3212. else if (strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Inoperative") == EQUAL)
  3213. chargingInfo[gunIndex]->IsAvailable = NO;
  3214. }
  3215. }
  3216. bool CheckBackendChargingTimeout(byte gunIndex)
  3217. {
  3218. bool result = false;
  3219. if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_ENABLE)
  3220. {
  3221. if (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration > 0)
  3222. {
  3223. if (chargingInfo[gunIndex]->RemainChargingDuration > (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration * 60))
  3224. result = true;
  3225. }
  3226. }
  3227. else if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE)
  3228. {
  3229. // 隨插即充電的要看 offline
  3230. if (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration > 0)
  3231. {
  3232. if (chargingInfo[gunIndex]->RemainChargingDuration > (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration * 60))
  3233. result = true;
  3234. }
  3235. }
  3236. return result;
  3237. }
  3238. bool CheckBackendChargingEnergy(byte gunIndex)
  3239. {
  3240. bool result = false;
  3241. if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_ENABLE)
  3242. {
  3243. if (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy > 0)
  3244. {
  3245. if (chargingInfo[gunIndex]->PresentChargedEnergy > ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy)
  3246. result = true;
  3247. }
  3248. }
  3249. else if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE)
  3250. {
  3251. // 隨插即充電的要看 offline
  3252. if (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy > 0)
  3253. {
  3254. if (chargingInfo[gunIndex]->PresentChargedEnergy > (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy))
  3255. result = true;
  3256. }
  3257. }
  3258. return result;
  3259. }
  3260. //===============================================
  3261. // Config process
  3262. //===============================================
  3263. void AddPlugInTimes(byte gunIndex)
  3264. {
  3265. if (chargingInfo[gunIndex]->Type == _Type_Chademo)
  3266. ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes += 1;
  3267. else if(chargingInfo[gunIndex]->Type == _Type_CCS_2)
  3268. ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes += 1;
  3269. else if(chargingInfo[gunIndex]->Type == _Type_GB)
  3270. ShmSysConfigAndInfo->SysConfig.GbPlugInTimes += 1;
  3271. }
  3272. void ChangeStartOrStopDateTime(byte isStart, byte gunIndex)
  3273. {
  3274. char cmdBuf[32];
  3275. struct timeb csuTime;
  3276. struct tm *tmCSU;
  3277. ftime(&csuTime);
  3278. tmCSU = localtime(&csuTime.time);
  3279. sprintf(cmdBuf, "%04d-%02d-%02d %02d:%02d:%02d", tmCSU->tm_year + 1900,
  3280. tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  3281. tmCSU->tm_sec);
  3282. if (isStart)
  3283. strcpy((char *)chargingInfo[gunIndex]->StartDateTime, cmdBuf);
  3284. else
  3285. strcpy((char *)chargingInfo[gunIndex]->StopDateTime, cmdBuf);
  3286. }
  3287. void zipLogFiles()
  3288. {
  3289. const char* logPath = "/Storage/SystemLog";
  3290. // 獲取目錄
  3291. DIR* pDir = opendir(logPath);
  3292. if (pDir != NULL)
  3293. {
  3294. struct timeb csuTime;
  3295. struct tm *tmCSU;
  3296. ftime(&csuTime);
  3297. tmCSU = localtime(&csuTime.time);
  3298. // PRINTF_FUNC("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
  3299. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  3300. // tmCSU->tm_sec);
  3301. // Read items inside the folder
  3302. struct dirent* pEntry = NULL;
  3303. while ((pEntry = readdir(pDir)) != NULL)
  3304. {
  3305. if (strcmp(pEntry->d_name, ".") != 0 &&
  3306. strcmp(pEntry->d_name, "..") != 0 &&
  3307. strncmp(pEntry->d_name, "[", 1) == 0 &&
  3308. strstr(pEntry->d_name, "tar") < 0)
  3309. {
  3310. char yearC[5];
  3311. unsigned short year = 0;
  3312. char monthC[3];
  3313. unsigned short month = 0;
  3314. yearC[4] = '\0';
  3315. strncpy(yearC, pEntry->d_name + 1, 4);
  3316. monthC[2] = '\0';
  3317. strncpy(monthC, pEntry->d_name + 6, 2);
  3318. year = atoi(yearC);
  3319. month = atoi(monthC);
  3320. if (year != 0)
  3321. {
  3322. if (year < tmCSU->tm_year + 1900 ||
  3323. (year >= tmCSU->tm_year + 1900 && month < tmCSU->tm_mon + 1))
  3324. {
  3325. DEBUG_INFO_MSG("tar file name : %s \n", pEntry->d_name);
  3326. char file[256];
  3327. memset(file, 0x00, sizeof(file));
  3328. strcat(file, "tar zcvf ");
  3329. strcat(file, logPath);
  3330. strncat(file, "/", 1);
  3331. strcat(file, pEntry->d_name);
  3332. strcat(file, ".tar");
  3333. strncat(file, " ", 1);
  3334. strcat(file, logPath);
  3335. strncat(file, "/", 1);
  3336. strcat(file, pEntry->d_name);
  3337. PRINTF_FUNC("zip = %s \n", file);
  3338. system(file);
  3339. }
  3340. }
  3341. }
  3342. }
  3343. }
  3344. // Close folder
  3345. closedir(pDir);
  3346. }
  3347. void ChangeGunSelectByIndex(byte sel)
  3348. {
  3349. ShmSysConfigAndInfo->SysInfo.CurGunSelected = sel;
  3350. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = NO_DEFINE;
  3351. }
  3352. void CheckIsAlternatvieByModelName()
  3353. {
  3354. // 黑白機 ?
  3355. if(strcmp((char *)ShmSysConfigAndInfo->SysConfig.ModelName, "DWWU301J0UT1PH") == EQUAL ||
  3356. strcmp((char *)ShmSysConfigAndInfo->SysConfig.ModelName, "DWYE301J0ET1PH") == EQUAL)
  3357. ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf = YES;
  3358. else
  3359. ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf = NO;
  3360. }
  3361. void StopProcessingLoop()
  3362. {
  3363. for (;;)
  3364. {
  3365. CheckFactoryConfigFunction();
  3366. CheckFwUpdateFunction();
  3367. sleep(1);
  3368. }
  3369. }
  3370. void CreateWatchdog()
  3371. {
  3372. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == NO)
  3373. {
  3374. wtdFd = InitWatchDog();
  3375. if (wtdFd < 0)
  3376. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  3377. }
  3378. }
  3379. bool IsConnectorWholeIdle()
  3380. {
  3381. bool result = true;
  3382. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  3383. {
  3384. if (chargingInfo[count]->SystemStatus != S_IDLE &&
  3385. chargingInfo[count]->SystemStatus != S_RESERVATION)
  3386. {
  3387. result = false;
  3388. break;
  3389. }
  3390. }
  3391. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.AcConnectorCount; count++)
  3392. {
  3393. if (ac_chargingInfo[count]->SystemStatus != S_IDLE &&
  3394. ac_chargingInfo[count]->IsErrorOccur == NO)
  3395. {
  3396. result = false;
  3397. break;
  3398. }
  3399. }
  3400. return result;
  3401. }
  3402. void ClearAlarmCodeWhenAcOff()
  3403. {
  3404. if (!ShmSysConfigAndInfo->SysInfo.AcContactorStatus)
  3405. {
  3406. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuNoResource = NO;
  3407. }
  3408. }
  3409. int main(void)
  3410. {
  3411. if(CreateShareMemory() == 0)
  3412. {
  3413. #ifdef SystemLogMessage
  3414. DEBUG_ERROR_MSG("CreatShareMemory NG \n");
  3415. #endif
  3416. if(ShmStatusCodeData!=NULL)
  3417. {
  3418. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  3419. }
  3420. return 0;
  3421. sleep(5);
  3422. system("reboot -f");
  3423. sleep(5);
  3424. system("reboot -f");
  3425. }
  3426. PRINTF_FUNC("Chademo = %d, CCS = %d, GB = %d, AC = %d \n",
  3427. CHAdeMO_QUANTITY, CCS_QUANTITY, GB_QUANTITY, AC_QUANTITY);
  3428. PRINTF_FUNC("\n"); PRINTF_FUNC("Initial SystemConfig and Info.......\n");
  3429. if (!InitialSystemDefaultConfig())
  3430. {
  3431. DEBUG_ERROR_MSG("InitialSystemDefaultConfig NG \n");
  3432. StopProcessingLoop();
  3433. }
  3434. PRINTF_FUNC("CheckConnectorTypeStatus. \n");
  3435. CheckGunTypeFromHw();
  3436. PRINTF_FUNC("CheckIsAlternatvieByModelName. \n");
  3437. CheckIsAlternatvieByModelName();
  3438. PRINTF_FUNC("ModelName = %s\n", ShmSysConfigAndInfo->SysConfig.ModelName);
  3439. PRINTF_FUNC("InitialShareMemoryInfo \n");
  3440. InitialShareMemoryInfo();
  3441. PRINTF_FUNC("ChargerType (IEC or UL) = %d \n", ShmSysConfigAndInfo->SysInfo.ChargerType);
  3442. ChangeLcmByIndex(_LCM_INIT);
  3443. if (!CheckConnectorTypeStatus())
  3444. isModelNameMatch = false;
  3445. Initialization();
  3446. PRINTF_FUNC("Spawn all Task. \n");
  3447. SpawnTask();
  3448. if (!isModelNameMatch)
  3449. {
  3450. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.ModelNameNoneMatchStestFail = YES;
  3451. ChangeLcmByIndex(_LCM_FIX);
  3452. // Module Name 與硬體對應不正確
  3453. PRINTF_FUNC("Module Name & HW info none match. \n");
  3454. DEBUG_ERROR_MSG("Module Name & HW info none match. \n");
  3455. sleep(3);
  3456. KillTask();
  3457. StopProcessingLoop();
  3458. }
  3459. PRINTF_FUNC("Module Name & HW info correct. Initialize.......\n");
  3460. CreateTimeoutFork();
  3461. PRINTF_FUNC("Self test. \n");
  3462. SelfTestRun();
  3463. StopSystemTimeoutDet();
  3464. PRINTF_FUNC("SelfTestSeq = %d, Work_Step = %d \n", ShmSysConfigAndInfo->SysInfo.SelfTestSeq, ShmPsuData->Work_Step);
  3465. if (ShmSysConfigAndInfo->SysInfo.SelfTestSeq == _STEST_FAIL ||
  3466. ShmPsuData->Work_Step == _NO_WORKING)
  3467. {
  3468. DisplaySelfTestFailReason();
  3469. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  3470. {
  3471. setChargerMode(gun_index, MODE_ALARM);
  3472. }
  3473. ChangeLcmByIndex(_LCM_FIX);
  3474. sleep(3);
  3475. KillTask();
  3476. StopProcessingLoop();
  3477. }
  3478. else
  3479. {
  3480. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  3481. {
  3482. setChargerMode(gun_index, MODE_IDLE);
  3483. }
  3484. }
  3485. ChangeLcmByIndex(_LCM_IDLE);
  3486. sleep(1);
  3487. //***** 須新增的偵測 *****//
  3488. // 1. Thernal - 控制風扇轉速
  3489. // 2. ouput fuse - 控制風扇轉速
  3490. CreateRfidFork();
  3491. // Create Watchdog
  3492. //CreateWatchdog();
  3493. // Main loop
  3494. PRINTF_FUNC("Main Loop. \n");
  3495. for (;;)
  3496. {
  3497. CheckOcppStatus();
  3498. ChkPrimaryStatus();
  3499. if ((IsConnectorWholeIdle() || ShmSysConfigAndInfo->SysInfo.PageIndex == _LCM_FIX) &&
  3500. ShmSysConfigAndInfo->SysInfo.SystemTimeoutFlag != Timeout_ReturnToChargingGunDet)
  3501. {
  3502. CheckFactoryConfigFunction();
  3503. CheckFwUpdateFunction();
  3504. }
  3505. // OCPP 邏輯
  3506. OcppRemoteStartChk();
  3507. // 讀卡邏輯
  3508. ScannerCardProcess();
  3509. // 當 AC 沒有搭上時,清除一些錯誤碼
  3510. ClearAlarmCodeWhenAcOff();
  3511. if (_acgunIndex > 0 && isDetectPlugin() && !isCardScan)
  3512. {
  3513. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_WAIT_FOR_PLUG;
  3514. }
  3515. for (byte gun_index = 0; gun_index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; gun_index++)
  3516. {
  3517. CheckGpioInStatus();
  3518. CheckErrorOccurStatus(gun_index);
  3519. ChkOcppStatus(gun_index);
  3520. //PRINTF_FUNC("index = %d, ErrorCode = %s \n", gun_index, ShmOCPP16Data->StatusNotification[gun_index].ErrorCode);
  3521. switch(chargingInfo[gun_index]->SystemStatus)
  3522. {
  3523. case S_IDLE:
  3524. case S_RESERVATION:
  3525. {
  3526. if (chargingInfo[gun_index]->SystemStatus == S_IDLE &&
  3527. isModeChange(gun_index))
  3528. {
  3529. PRINTF_FUNC("S_IDLE================================== %x \n", gun_index);
  3530. chargingInfo[gun_index]->RemainChargingDuration = 0;
  3531. chargingInfo[gun_index]->PresentChargedEnergy = 0;
  3532. }
  3533. else if (chargingInfo[gun_index]->SystemStatus == S_RESERVATION &&
  3534. isModeChange(gun_index))
  3535. {
  3536. PRINTF_FUNC("S_RESERVATION....................%x \n", gun_index);
  3537. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = YES;
  3538. }
  3539. if (ShmSysConfigAndInfo->SysWarningInfo.Level == 2)
  3540. {
  3541. if (gun_index == ShmSysConfigAndInfo->SysInfo.CurGunSelected)
  3542. {
  3543. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_FIX;
  3544. }
  3545. ClearDetectPluginFlag();
  3546. }
  3547. else if (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING)
  3548. {/* 不給充電 */}
  3549. else
  3550. {
  3551. if (ShmSysConfigAndInfo->SysInfo.SystemPage == _LCM_FIX)
  3552. {
  3553. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  3554. }
  3555. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  3556. {
  3557. if (ShmSysConfigAndInfo->SysInfo.AcContactorStatus == YES)
  3558. {
  3559. // 均充 -> 最大充
  3560. if (ShmSysConfigAndInfo->SysInfo.BridgeRelayStatus == NO)
  3561. {
  3562. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_NONE)
  3563. {
  3564. PRINTF_FUNC("=============Smart Charging============= Step 11 \n");
  3565. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_PREPARE_A_TO_M;
  3566. }
  3567. }
  3568. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag != _REASSIGNED_COMP &&
  3569. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag != _REASSIGNED_WAITING)
  3570. {
  3571. PRINTF_FUNC("=============Smart Charging============= Step 14 \n");
  3572. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_WAITING;
  3573. }
  3574. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_COMP)
  3575. {
  3576. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  3577. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  3578. }
  3579. }
  3580. else
  3581. {
  3582. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  3583. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  3584. }
  3585. }
  3586. else
  3587. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  3588. { // Idle 正常程序起點
  3589. // 判斷是否有啟用檢查插槍
  3590. if(isDetectPlugin())
  3591. {
  3592. // 卡號驗證成功後,等待充電槍插入充電車
  3593. if ((ShmSysConfigAndInfo->SysInfo.OrderCharging != FAIL &&
  3594. ShmSysConfigAndInfo->SysInfo.OrderCharging < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount))
  3595. {
  3596. if (chargingInfo[(unsigned char)ShmSysConfigAndInfo->SysInfo.OrderCharging]->ConnectorPlugIn == YES &&
  3597. chargingInfo[gun_index]->IsAvailable)
  3598. {
  3599. PRINTF_FUNC("-----------------1----------------- %d \n", ShmSysConfigAndInfo->SysInfo.OrderCharging);
  3600. ChangeGunSelectByIndex(ShmSysConfigAndInfo->SysInfo.OrderCharging);
  3601. AddPlugInTimes(ShmSysConfigAndInfo->SysInfo.OrderCharging);
  3602. setChargerMode(ShmSysConfigAndInfo->SysInfo.OrderCharging, MODE_REASSIGN_CHECK);
  3603. ClearDetectPluginFlag();
  3604. continue;
  3605. }
  3606. }
  3607. else
  3608. {
  3609. if (chargingInfo[gun_index]->ConnectorPlugIn == YES && chargingInfo[gun_index]->IsAvailable &&
  3610. chargingInfo[gun_index]->SystemStatus == S_IDLE)
  3611. {
  3612. PRINTF_FUNC("-----------------2----------------- \n");
  3613. ChangeGunSelectByIndex(gun_index);
  3614. AddPlugInTimes(gun_index);
  3615. strcpy((char *)chargingInfo[gun_index]->StartUserId, (char *)ShmSysConfigAndInfo->SysConfig.UserId);
  3616. PRINTF_FUNC("index = %d, CardNumber = %s \n", gun_index, chargingInfo[gun_index]->StartUserId);
  3617. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  3618. // 當前操作的槍號,進入 Preparing
  3619. setChargerMode(gun_index, MODE_REASSIGN_CHECK);
  3620. ClearDetectPluginFlag();
  3621. continue;
  3622. }
  3623. }
  3624. if (!isCardScan)
  3625. {
  3626. // LCM => Waiting for plugging
  3627. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_WAIT_FOR_PLUG;
  3628. }
  3629. }
  3630. else if (chargingInfo[gun_index]->SystemStatus == S_RESERVATION)
  3631. {
  3632. if (!isReservationExpired(gun_index))
  3633. {
  3634. chargingInfo[gun_index]->SystemStatus = S_IDLE;
  3635. }
  3636. }
  3637. else if (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE &&
  3638. (chargingInfo[gun_index]->ConnectorPlugIn == YES && chargingInfo[gun_index]->IsAvailable))
  3639. {
  3640. PRINTF_FUNC("-----------------3----------------- \n");
  3641. ChangeGunSelectByIndex(gun_index);
  3642. AddPlugInTimes(gun_index);
  3643. setChargerMode(gun_index, MODE_REASSIGN_CHECK);
  3644. ClearDetectPluginFlag();
  3645. continue;
  3646. }
  3647. else
  3648. {
  3649. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3650. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_IDLE;
  3651. if ((ShmSysConfigAndInfo->SysConfig.TotalConnectorCount + ShmSysConfigAndInfo->SysConfig.AcConnectorCount) > 1 &&
  3652. ShmSysConfigAndInfo->SysInfo.PageIndex != _LCM_AUTHORIZING &&
  3653. ShmSysConfigAndInfo->SysInfo.PageIndex != _LCM_AUTHORIZ_FAIL &&
  3654. ShmSysConfigAndInfo->SysInfo.PageIndex != _LCM_AUTHORIZ_COMP &&
  3655. ShmSysConfigAndInfo->SysInfo.PageIndex != _LCM_WAIT_FOR_PLUG)
  3656. {
  3657. bool isReturnTimeout = false;
  3658. for (byte count = 0; count < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; count++)
  3659. {
  3660. if (count != ShmSysConfigAndInfo->SysInfo.CurGunSelected ||
  3661. (ShmSysConfigAndInfo->SysConfig.AcConnectorCount > 0 &&
  3662. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == DEFAULT_AC_INDEX))
  3663. {
  3664. if ((chargingInfo[count]->SystemStatus >= S_REASSIGN_CHECK && chargingInfo[count]->SystemStatus <= S_COMPLETE) ||
  3665. (chargingInfo[count]->SystemStatus >= S_CCS_PRECHARGE_ST0 && chargingInfo[count]->SystemStatus <= S_CCS_PRECHARGE_ST1))
  3666. {
  3667. isReturnTimeout = true;
  3668. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  3669. }
  3670. }
  3671. }
  3672. if (!isReturnTimeout && ShmSysConfigAndInfo->SysConfig.AcConnectorCount > 0 &&
  3673. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc == NO_DEFINE &&
  3674. ac_chargingInfo[0]->SystemStatus >= S_PREPARNING && ac_chargingInfo[0]->SystemStatus <= S_COMPLETE)
  3675. {
  3676. isReturnTimeout = true;
  3677. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  3678. }
  3679. if (!isReturnTimeout)
  3680. StopSystemTimeoutDet();
  3681. }
  3682. }
  3683. } // Idle 正常程序終點
  3684. }
  3685. ReleaseAlarmCode(gun_index);
  3686. }
  3687. break;
  3688. case S_REASSIGN_CHECK:
  3689. {
  3690. if (isModeChange(gun_index))
  3691. {
  3692. PRINTF_FUNC("S_REASSIGN_CHECK================================== %x \n", gun_index);
  3693. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  3694. if (ShmSysConfigAndInfo->SysInfo.OrderCharging != FAIL)
  3695. ShmSysConfigAndInfo->SysInfo.OrderCharging = FAIL;
  3696. StopSystemTimeoutDet();
  3697. }
  3698. bool isRessign = false;
  3699. if (ShmSysConfigAndInfo->SysConfig.TotalConnectorCount > 1 && ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == NO)
  3700. {
  3701. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX)
  3702. {
  3703. for (byte index = 0; index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; index++)
  3704. {
  3705. // 有其他槍已經分配好 psu 模塊
  3706. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected != index &&
  3707. chargingInfo[index]->SystemStatus >= S_PREPARNING)
  3708. {
  3709. PRINTF_FUNC("=============Smart Charging============= Step 1 \n");
  3710. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_PREPARE_M_TO_A;
  3711. isRessign = true;
  3712. break;
  3713. }
  3714. }
  3715. }
  3716. else if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  3717. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag != _REASSIGNED_NONE)
  3718. {
  3719. // 如果在切換最大充的過程中,需等待最大充切換完成後,在走均充流程
  3720. if (ShmSysConfigAndInfo->SysInfo.BridgeRelayStatus == YES)
  3721. {
  3722. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag != _REASSIGNED_COMP &&
  3723. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag != _REASSIGNED_WAITING)
  3724. {
  3725. PRINTF_FUNC("=============Smart Charging============= Step 14 \n");
  3726. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_WAITING;
  3727. }
  3728. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_COMP)
  3729. {
  3730. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  3731. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  3732. }
  3733. }
  3734. continue;
  3735. }
  3736. }
  3737. if (isRessign)
  3738. setChargerMode(gun_index, MODE_REASSIGN);
  3739. else
  3740. setChargerMode(gun_index, MODE_PRECHARGE);
  3741. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3742. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_PRE_CHARGE;
  3743. }
  3744. break;
  3745. case S_REASSIGN:
  3746. {
  3747. if (isModeChange(gun_index))
  3748. {
  3749. PRINTF_FUNC("S_REASSIGN================================== %x \n", gun_index);
  3750. }
  3751. // 重新分配,此階段主要是讓已經在充電或者準備進入充電前的緩衝
  3752. // 此狀態下~ 控制權在於 PSU 及 EV小板 Process
  3753. if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_NONE ||
  3754. ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER)
  3755. {
  3756. setChargerMode(gun_index, MODE_PRECHARGE);
  3757. }
  3758. else if (ShmSysConfigAndInfo->SysInfo.ReAssignedFlag == _REASSIGNED_RELAY_M_TO_A &&
  3759. ShmSysConfigAndInfo->SysInfo.BridgeRelayStatus == NO)
  3760. {
  3761. PRINTF_FUNC("=============Smart Charging : _REASSIGNED_COMP============= Step 6 \n");
  3762. ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_AVER;
  3763. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag = _REASSIGNED_NONE;
  3764. }
  3765. //PRINTF_FUNC("CurGunSelected = %d, gun_index = %d \n", ShmSysConfigAndInfo->SysInfo.CurGunSelected, gun_index);
  3766. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3767. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_PRE_CHARGE;
  3768. }
  3769. break;
  3770. case S_PREPARNING:
  3771. {
  3772. if (isModeChange(gun_index))
  3773. {
  3774. PRINTF_FUNC("S_PREPARNING================================== %x \n", gun_index);
  3775. StopGunInfoTimeoutDet(gun_index);
  3776. StartGunInfoTimeoutDet(gun_index, Timeout_Preparing);
  3777. }
  3778. if (ShmPsuData->SystemPresentPsuQuantity > 0 && ShmPsuData->SystemAvailablePower > 10)
  3779. {
  3780. setChargerMode(gun_index, MODE_PREPARE_FOR_EV);
  3781. }
  3782. if (isEvBoardStopChargeFlag(gun_index) == YES || OcppRemoteStop(gun_index) == YES)
  3783. {
  3784. // 板端或後臺要求停止
  3785. ChargingTerminalProcess(gun_index);
  3786. }
  3787. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3788. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_PRE_CHARGE;
  3789. }
  3790. break;
  3791. case S_PREPARING_FOR_EV: // 等待車端的通訊 (EV 小板),待車端回報後,開始樁端的測試
  3792. {
  3793. if (isModeChange(gun_index))
  3794. {
  3795. PRINTF_FUNC("S_PREPARING_FOR_EV================================== %x \n", gun_index);
  3796. strcpy((char *)ShmSysConfigAndInfo->SysConfig.UserId, "");
  3797. StopGunInfoTimeoutDet(gun_index);
  3798. StartGunInfoTimeoutDet(gun_index, Timeout_EvChargingDet);
  3799. }
  3800. if (chargingInfo[gun_index]->Type == _Type_Chademo)
  3801. {
  3802. // 檢查車端的槍鎖是否為鎖上
  3803. if (isEvGunLocked_chademo(gun_index) == YES)
  3804. {
  3805. setChargerMode(gun_index, MODE_PREPARE_FOR_EVSE);
  3806. }
  3807. }
  3808. else if (chargingInfo[gun_index]->Type == _Type_GB)
  3809. {
  3810. // 檢查車端的 charging enable 是否為 1
  3811. if (isEvGunLocked_gb(gun_index) == YES)
  3812. {
  3813. setChargerMode(gun_index, MODE_PREPARE_FOR_EVSE);
  3814. }
  3815. }
  3816. else if (chargingInfo[gun_index]->Type == _Type_CCS_2)
  3817. {
  3818. // 檢查車端的 charging enable 是否為 1
  3819. if (isEvGunLocked_ccs(gun_index) == YES)
  3820. {
  3821. setChargerMode(gun_index, MODE_PREPARE_FOR_EVSE);
  3822. }
  3823. }
  3824. if (isEvBoardStopChargeFlag(gun_index) == YES ||
  3825. OcppRemoteStop(gun_index) == YES)
  3826. {
  3827. // 板端或後臺要求停止
  3828. ChargingTerminalProcess(gun_index);
  3829. }
  3830. // LCM => Pre-charging
  3831. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3832. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_PRE_CHARGE;
  3833. }
  3834. break;
  3835. case S_PREPARING_FOR_EVSE: // 等待 RB 通訊及測試,並將狀態回報, CSU 確認 Pass 後,開始進入充電
  3836. {
  3837. if (isModeChange(gun_index))
  3838. {
  3839. PRINTF_FUNC("S_PREPARING_FOR_EVSE================================== %x \n", gun_index);
  3840. StopGunInfoTimeoutDet(gun_index);
  3841. StartGunInfoTimeoutDet(gun_index, Timeout_EvseChargingDet);
  3842. }
  3843. if (chargingInfo[gun_index]->Type == _Type_Chademo)
  3844. {
  3845. // 檢查樁端的 GFD 結果
  3846. if (isPrechargeStatus_chademo(gun_index) > 5 && isPrechargeStatus_chademo(gun_index) < 8)
  3847. {
  3848. // 當前操作的槍號,進入 Charging
  3849. setChargerMode(gun_index, MODE_CHARGING);
  3850. }
  3851. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3852. {
  3853. // GFD 錯誤停止
  3854. RecordAlarmCode(gun_index, "012234");
  3855. }
  3856. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3857. {
  3858. // GFD 警告
  3859. RecordWarningCode(gun_index, "012296");
  3860. }
  3861. }
  3862. else if (chargingInfo[gun_index]->Type == _Type_GB)
  3863. {
  3864. // 檢查樁端的 GFD 結果
  3865. if (isPrechargeStatus_gb(gun_index) > 5 && isPrechargeStatus_gb(gun_index) < 9)
  3866. {
  3867. setChargerMode(gun_index, MODE_CHARGING);
  3868. }
  3869. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3870. {
  3871. // GFD 錯誤停止
  3872. RecordAlarmCode(gun_index, "012236");
  3873. }
  3874. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3875. {
  3876. // GFD 警告
  3877. RecordWarningCode(gun_index, "012298");
  3878. }
  3879. }
  3880. else if (chargingInfo[gun_index]->Type == _Type_CCS_2)
  3881. {
  3882. // 檢查樁端的 GFD 結果
  3883. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_PASS ||
  3884. chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3885. {
  3886. setChargerMode(gun_index, MODE_CCS_PRECHARGE_STEP0);
  3887. }
  3888. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3889. {
  3890. // GFD 錯誤停止
  3891. RecordAlarmCode(gun_index, "012235");
  3892. }
  3893. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3894. {
  3895. // GFD 警告
  3896. RecordWarningCode(gun_index, "012297");
  3897. }
  3898. }
  3899. if (isEvBoardStopChargeFlag(gun_index) == YES ||
  3900. chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL ||
  3901. OcppRemoteStop(gun_index) == YES)
  3902. {
  3903. // 板端或後臺要求停止
  3904. ChargingTerminalProcess(gun_index);
  3905. }
  3906. // LCM => Pre-charging
  3907. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  3908. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_PRE_CHARGE;
  3909. }
  3910. break;
  3911. case S_CHARGING: // 剛進入充電狀態,等待 EV 小板要求的輸出電流後開始輸出
  3912. {
  3913. if (isModeChange(gun_index))
  3914. {
  3915. PRINTF_FUNC("S_CHARGING================================== %x \n", gun_index);
  3916. StopGunInfoTimeoutDet(gun_index);
  3917. ftime(&startChargingTime[gun_index]);
  3918. ChangeStartOrStopDateTime(YES, gun_index);
  3919. OcppStartTransation(gun_index);
  3920. }
  3921. ftime(&endChargingTime[gun_index]);
  3922. chargingInfo[gun_index]->RemainChargingDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index]);
  3923. if (chargingInfo[gun_index]->Type == _Type_Chademo)
  3924. {
  3925. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3926. {
  3927. // GFD 錯誤停止
  3928. RecordAlarmCode(gun_index, "012234");
  3929. }
  3930. else if ((chargingInfo[gun_index]->EvBatterytargetVoltage > 0 && chargingInfo[gun_index]->EvBatterytargetVoltage < SYSTEM_MIN_VOL) ||
  3931. (chargingInfo[gun_index]->RemainChargingDuration >= 10 && chargingInfo[gun_index]->PresentChargingVoltage < SYSTEM_MIN_VOL))
  3932. {
  3933. // UVP
  3934. RecordAlarmCode(gun_index, "012289");
  3935. ChargingTerminalProcess(gun_index);
  3936. }
  3937. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3938. {
  3939. // GFD 警告
  3940. RecordWarningCode(gun_index, "012296");
  3941. }
  3942. else
  3943. ReleaseWarningCodeByString(gun_index, "012296");
  3944. }
  3945. else if (chargingInfo[gun_index]->Type == _Type_GB)
  3946. {
  3947. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3948. {
  3949. // GFD 錯誤停止
  3950. RecordAlarmCode(gun_index, "012236");
  3951. }
  3952. else if (isPrechargeStatus_gb(gun_index) == 10 &&
  3953. ((chargingInfo[gun_index]->EvBatterytargetVoltage > 0 && chargingInfo[gun_index]->EvBatterytargetVoltage < SYSTEM_MIN_VOL) ||
  3954. (chargingInfo[gun_index]->RemainChargingDuration >= 10 && chargingInfo[gun_index]->PresentChargingVoltage < SYSTEM_MIN_VOL)))
  3955. {
  3956. // UVP
  3957. RecordAlarmCode(gun_index, "012290");
  3958. ChargingTerminalProcess(gun_index);
  3959. }
  3960. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3961. {
  3962. // GFD 警告
  3963. RecordWarningCode(gun_index, "012298");
  3964. }
  3965. else
  3966. ReleaseWarningCodeByString(gun_index, "012298");
  3967. }
  3968. else if (chargingInfo[gun_index]->Type == _Type_CCS_2)
  3969. {
  3970. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  3971. {
  3972. // GFD 錯誤停止
  3973. RecordAlarmCode(gun_index, "012235");
  3974. }
  3975. else if ((chargingInfo[gun_index]->EvBatterytargetVoltage > 0 && chargingInfo[gun_index]->EvBatterytargetVoltage < SYSTEM_MIN_VOL) ||
  3976. (chargingInfo[gun_index]->RemainChargingDuration >= 10 && chargingInfo[gun_index]->PresentChargingVoltage < SYSTEM_MIN_VOL))
  3977. {
  3978. // UVP
  3979. RecordAlarmCode(gun_index, "012288");
  3980. ChargingTerminalProcess(gun_index);
  3981. }
  3982. else if (chargingInfo[gun_index]->GroundFaultStatus == GFD_WARNING)
  3983. {
  3984. // GFD 警告
  3985. RecordWarningCode(gun_index, "012297");
  3986. }
  3987. else
  3988. ReleaseWarningCodeByString(gun_index, "012297");
  3989. }
  3990. if (isEvBoardStopChargeFlag(gun_index) ||
  3991. chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL ||
  3992. OcppRemoteStop(gun_index) ||
  3993. CheckBackendChargingTimeout(gun_index) ||
  3994. CheckBackendChargingEnergy(gun_index))
  3995. {
  3996. PRINTF_FUNC("S_CHARGING=======Stop=========================== %f \n", chargingInfo[gun_index]->EvBatterytargetVoltage);
  3997. // 板端或後臺要求停止
  3998. ChargingTerminalProcess(gun_index);
  3999. }
  4000. // LCM => Charging
  4001. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  4002. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_CHARGING;
  4003. }
  4004. break;
  4005. case S_TERMINATING:
  4006. {
  4007. if (isModeChange(gun_index))
  4008. {
  4009. PRINTF_FUNC ("terminating......................... %x \n", gun_index);
  4010. StopGunInfoTimeoutDet(gun_index);
  4011. }
  4012. if (chargingInfo[gun_index]->Type == _Type_Chademo)
  4013. {
  4014. // 非車端的停止 : 需等待小板送出停止指令,讓車端解除槍
  4015. if (isEvStopCharging_chademo(gun_index) == YES ||
  4016. isPrechargeStatus_chademo(gun_index) <= 0)
  4017. {
  4018. setChargerMode(gun_index, MODE_COMPLETE);
  4019. }
  4020. }
  4021. else if (chargingInfo[gun_index]->Type == _Type_GB)
  4022. {
  4023. // 非車端的停止 : 需等待小板送出停止指令,讓車端解除槍
  4024. if (isEvStopCharging_gb(gun_index) == YES ||
  4025. isPrechargeStatus_gb(gun_index) <= 0)
  4026. {
  4027. setChargerMode(gun_index, MODE_COMPLETE);
  4028. }
  4029. }
  4030. else if (chargingInfo[gun_index]->Type == _Type_CCS_2)
  4031. {
  4032. // 非車端的停止 : 需等待小板送出停止指令,讓車端解除槍
  4033. if (isEvStopCharging_ccs(gun_index) == YES &&
  4034. (isPrechargeStatus_ccs(gun_index) >= 53 || isPrechargeStatus_ccs(gun_index) == 0 ||
  4035. isPrechargeStatus_ccs(gun_index) == 13 || isPrechargeStatus_ccs(gun_index) == 14))
  4036. {
  4037. setChargerMode(gun_index, MODE_COMPLETE);
  4038. }
  4039. }
  4040. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  4041. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_COMPLETE;
  4042. }
  4043. break;
  4044. case S_COMPLETE:
  4045. {
  4046. if (isModeChange(gun_index))
  4047. {
  4048. PRINTF_FUNC ("complete......................... %x \n", gun_index);
  4049. OcppStopTransation(gun_index);
  4050. ftime(&endChargingTime[gun_index]);
  4051. if (chargingInfo[gun_index]->RemainChargingDuration != 0)
  4052. chargingInfo[gun_index]->RemainChargingDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index]);
  4053. StopGunInfoTimeoutDet(gun_index);
  4054. StartGunInfoTimeoutDet(gun_index, Timeout_EvseCompleteDet);
  4055. ChangeStartOrStopDateTime(NO, gun_index);
  4056. }
  4057. if(chargingInfo[gun_index]->ConnectorPlugIn == NO &&
  4058. GetTimeoutValue(chargingInfo[gun_index]->TimeoutTimer) >= 10000000)
  4059. {
  4060. setChargerMode(gun_index, MODE_IDLE);
  4061. }
  4062. if (ShmSysConfigAndInfo->SysInfo.CurGunSelected == gun_index)
  4063. ShmSysConfigAndInfo->SysInfo.ConnectorPage = _LCM_COMPLETE;
  4064. }
  4065. break;
  4066. case S_CCS_PRECHARGE_ST0:
  4067. {
  4068. if (isModeChange(gun_index))
  4069. {
  4070. PRINTF_FUNC("CCS Precharge Processing 1....................%x \n", gun_index);
  4071. StopGunInfoTimeoutDet(gun_index);
  4072. StartGunInfoTimeoutDet(gun_index, Timeout_ForCcsPrechargeDet);
  4073. }
  4074. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  4075. {
  4076. // GFD 錯誤停止
  4077. RecordAlarmCode(gun_index, "012235");
  4078. }
  4079. if (isEvBoardStopChargeFlag(gun_index) == YES ||
  4080. chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  4081. {
  4082. // 板端要求停止
  4083. ChargingTerminalProcess(gun_index);
  4084. }
  4085. // 等待 EV 小板 (CCS) 通知可以開始 Precharge
  4086. // 切換 D+ Relay to Precharge Relay
  4087. if (isPrechargeStatus_ccs(gun_index) == 39 || isPrechargeStatus_ccs(gun_index) == 40)
  4088. {
  4089. if (chargingInfo[gun_index]->RelayKPK2Status == YES && chargingInfo[gun_index]->PrechargeStatus != PRECHARGE_READY)
  4090. //if (chargingInfo[gun_index]->PrechargeStatus != PRECHARGE_PRERELAY_PASS)
  4091. {
  4092. PRINTF_FUNC("Send precharge ready 1..........%x, status = %d \n", gun_index, isPrechargeStatus_ccs(gun_index));
  4093. chargingInfo[gun_index]->PrechargeStatus = PRECHARGE_READY;
  4094. }
  4095. }
  4096. else if (isPrechargeStatus_ccs(gun_index) == 45 || isPrechargeStatus_ccs(gun_index) == 46)
  4097. {
  4098. setChargerMode(gun_index, MODE_CCS_PRECHARGE_STEP1);
  4099. }
  4100. break;
  4101. }
  4102. case S_CCS_PRECHARGE_ST1:
  4103. {
  4104. if (isModeChange(gun_index))
  4105. {
  4106. PRINTF_FUNC("CCS Precharge Processing 2....................%x \n", gun_index);
  4107. }
  4108. if (chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  4109. {
  4110. // GFD 錯誤停止
  4111. RecordAlarmCode(gun_index, "012235");
  4112. }
  4113. if (isEvBoardStopChargeFlag(gun_index) == YES ||
  4114. chargingInfo[gun_index]->GroundFaultStatus == GFD_FAIL)
  4115. {
  4116. // 板端要求停止
  4117. ChargingTerminalProcess(gun_index);
  4118. }
  4119. // 等待小板通知進入充電
  4120. // 切換 D+ Relay to Precharge Relay
  4121. if (chargingInfo[gun_index]->RelayK1K2Status == YES)
  4122. {
  4123. chargingInfo[gun_index]->PrechargeStatus = PRECHARGE_READY;
  4124. setChargerMode(gun_index, MODE_CHARGING);
  4125. }
  4126. break;
  4127. }
  4128. }
  4129. }
  4130. if (ShmSysConfigAndInfo->SysInfo.SystemPage != _LCM_NONE)
  4131. {
  4132. ChangeLcmByIndex(ShmSysConfigAndInfo->SysInfo.SystemPage);
  4133. }
  4134. else
  4135. {
  4136. bool dcPageRun = false;
  4137. if (_acgunIndex > 0 && ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc != NO_DEFINE)
  4138. {
  4139. if (ac_chargingInfo[0]->SystemStatus == S_IDLE)
  4140. ChangeLcmByIndex(_LCM_IDLE);
  4141. else if (ac_chargingInfo[0]->SystemStatus == S_PREPARNING)
  4142. ChangeLcmByIndex(_LCM_PRE_CHARGE);
  4143. else if (ac_chargingInfo[0]->SystemStatus == S_CHARGING)
  4144. ChangeLcmByIndex(_LCM_CHARGING);
  4145. else if (ac_chargingInfo[0]->SystemStatus == S_TERMINATING ||
  4146. ac_chargingInfo[0]->SystemStatus == S_COMPLETE)
  4147. ChangeLcmByIndex(_LCM_COMPLETE);
  4148. else
  4149. dcPageRun = true;
  4150. }
  4151. else
  4152. dcPageRun = true;
  4153. if (dcPageRun)
  4154. ChangeLcmByIndex(ShmSysConfigAndInfo->SysInfo.ConnectorPage);
  4155. }
  4156. write(wtdFd, "a", 1);
  4157. usleep(whileLoopTime);
  4158. }
  4159. return FAIL;
  4160. }