main.c 107 KB

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