main.c 152 KB

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