main.c 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269
  1. #include "define.h"
  2. #include "main.h"
  3. //==========================
  4. // System basic sample constant
  5. //==========================
  6. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  7. #define PASS 1
  8. #define FAIL -1
  9. #define YES 1
  10. #define NO 0
  11. #define ON 1
  12. #define OFF 0
  13. #define BUFFER_SIZE 128
  14. //==========================
  15. // Timeout constant define
  16. //==========================
  17. #define TIMEOUT_SPEC_HANDSHAKING 180000
  18. #define TIMEOUT_SPEC_AUTH 15000
  19. #define TIMEOUT_SPEC_HANDSHAKING_LED 185000
  20. #define TIMEOUT_SPEC_LOGPPRINTOUT 30000
  21. #define TIMEOUT_SPEC_PROFILE_PREPARE 60000
  22. #define TIMEOUT_SPEC_BS_HLC_HANDSHAKE 60000
  23. #define TIMEOUT_SPEC_EV_READY 30000
  24. #define TIMEOUT_SPEC_CCS_HEARTBEAT_COUNT_RESET 10000
  25. #define TIMEOUT_SPEC_CCS_HANDSHAKE 120000
  26. #define TIMEOUT_SPEC_PWN_CHANGE 5000
  27. #define TIMEOUT_SPEC_POWERSAVING_LCD 120000
  28. #define TIMEOUT_SPEC_POWERSAVING_RFID 120000
  29. #define TIMEOUT_SPEC_POWERSAVING_METER 120000
  30. //==========================
  31. // GPIO constant define
  32. //==========================
  33. #define GPIO_OUT_RST_RFID 62
  34. #define GPIO_OUT_RST_4G 114
  35. #define GPIO_OUT_RST_QCA 115
  36. #define MtdBlockSize 0x600000
  37. #define DB_FILE "/Storage/ChargeLog/localCgargingRecord.db"
  38. //==========================
  39. // Declare method
  40. //==========================
  41. void trim(char *s);
  42. int mystrcmp(char *p1,char *p2);
  43. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  44. void split(char **arr, char *str, const char *del);
  45. int isReachableInternet();
  46. int isRouteFail();
  47. int InitRfidPort(void);
  48. int GetCardSerialNumber();
  49. void setLedMotion(unsigned char gun_index,unsigned char led_mode);
  50. void setRequest(unsigned char gun_index,unsigned char isOn);
  51. void setSpeaker(unsigned char isOn, unsigned char speaker_mode);
  52. //==========================
  53. // Declare RFID module type
  54. //==========================
  55. #define MODULE_EWT 0
  56. int wtdFd = -1;
  57. int rfidFd = -1;
  58. char* rfidPortName = "/dev/ttyS2";
  59. RFID rfid;
  60. char *valid_Internet[2] = {"8.8.8.8", "180.76.76.76"};
  61. //==========================
  62. // Declare share memory
  63. //==========================
  64. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  65. struct StatusCodeData *ShmStatusCodeData;
  66. struct PsuData *ShmPsuData;
  67. struct CHAdeMOData *ShmCHAdeMOData;
  68. struct CcsData *ShmCcsData;
  69. struct PrimaryMcuData *ShmPrimaryMcuData;
  70. struct FanModuleData *ShmFanModuleData;
  71. struct RelayModuleData *ShmRelayModuleData;
  72. struct OCPP16Data *ShmOCPP16Data;
  73. struct OCPP20Data *ShmOCPP20Data;
  74. struct Charger *ShmCharger;
  75. struct timeb startTime[AC_QUANTITY][TMR_IDX_CNT];
  76. struct timeb startChargingTime[AC_QUANTITY];
  77. struct timeb endChargingTime[AC_QUANTITY];
  78. sqlite3 *localDb;
  79. struct SysConfigData SysConfigOrg;
  80. //=================================
  81. // Common routine
  82. //=================================
  83. void trim(char *s)
  84. {
  85. int i=0, j, k, l=0;
  86. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  87. i++;
  88. j = strlen(s)-1;
  89. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  90. j--;
  91. if(i==0 && j==strlen(s)-1) { }
  92. else if(i==0) s[j+1] = '\0';
  93. else {
  94. for(k=i; k<=j; k++) s[l++] = s[k];
  95. s[l] = '\0';
  96. }
  97. }
  98. int mystrcmp(char *p1,char *p2)
  99. {
  100. while(*p1==*p2)
  101. {
  102. if(*p1=='\0' || *p2=='\0')
  103. break;
  104. p1++;
  105. p2++;
  106. }
  107. if(*p1=='\0' && *p2=='\0')
  108. return(PASS);
  109. else
  110. return(FAIL);
  111. }
  112. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  113. {
  114. strncpy(dest, src + start, cnt);
  115. dest[cnt] = 0;
  116. }
  117. void split(char **arr, char *str, const char *del)
  118. {
  119. char *s = strtok(str, del);
  120. while(s != NULL)
  121. {
  122. *arr++ = s;
  123. s = strtok(NULL, del);
  124. }
  125. }
  126. int StoreLogMsg(const char *fmt, ...)
  127. {
  128. char Buf[4096+256];
  129. char buffer[4096];
  130. time_t CurrentTime;
  131. struct tm *tm;
  132. struct timeval tv;
  133. va_list args;
  134. va_start(args, fmt);
  135. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  136. va_end(args);
  137. memset(Buf,0,sizeof(Buf));
  138. CurrentTime = time(NULL);
  139. tm=localtime(&CurrentTime);
  140. gettimeofday(&tv, NULL); // get microseconds, 10^-6
  141. if((ShmSysConfigAndInfo->SysConfig.ModelName != NULL) && (ShmSysConfigAndInfo->SysConfig.SerialNumber != NULL) && (strlen((char*)ShmSysConfigAndInfo->SysConfig.ModelName) >= 14))
  142. {
  143. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/SystemLog/[%04d.%02d]%s_%s_SystemLog",
  144. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
  145. buffer,
  146. tm->tm_year+1900,tm->tm_mon+1,
  147. ShmSysConfigAndInfo->SysConfig.ModelName,
  148. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  149. }
  150. else
  151. {
  152. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  153. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
  154. buffer,
  155. tm->tm_year+1900,tm->tm_mon+1);
  156. }
  157. #ifdef SystemLogMessage
  158. system(Buf);
  159. #endif
  160. #ifdef ConsloePrintLog
  161. printf("[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec, buffer);
  162. #endif
  163. return rc;
  164. }
  165. long long DiffTimebWithNow(struct timeb ST)
  166. {
  167. //return milli-second
  168. struct timeb ET;
  169. long long StartTime,StopTime;
  170. ftime(&ET);
  171. StartTime=(long long)ST.time;
  172. StopTime=(long long)ET.time;
  173. return ((StopTime-StartTime)*1000) + (ET.millitm-ST.millitm);
  174. }
  175. long long DiffTimeb(struct timeb ST, struct timeb ET)
  176. {
  177. //return milli-second
  178. long long StartTime,StopTime;
  179. StartTime=(long long)ST.time;
  180. StopTime=(long long)ET.time;
  181. return ((StopTime-StartTime)*1000) + (ET.millitm-ST.millitm);
  182. }
  183. void getDateTimeString(char* result)
  184. {
  185. time_t CurrentTime;
  186. struct tm *tm;
  187. CurrentTime = time(NULL);
  188. tm=localtime(&CurrentTime);
  189. sprintf(result, "%04d.%02d.%02d %02d:%02d:%02d", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec);
  190. }
  191. unsigned long long getAvailableMemory()
  192. {
  193. long pages = sysconf(_SC_AVPHYS_PAGES);
  194. long page_size = sysconf(_SC_PAGE_SIZE);
  195. return pages * page_size;
  196. }
  197. unsigned int isKernelSupportNAT()
  198. {
  199. unsigned int result = NO;
  200. unsigned int version = 0;
  201. FILE *fp;
  202. char cmd[256];
  203. char buf[512];
  204. // Get IP address & net mask
  205. strcpy(cmd, "uname -v");
  206. fp = popen(cmd, "r");
  207. if(fp != NULL)
  208. {
  209. if(fgets(buf, sizeof(buf), fp) != NULL)
  210. {
  211. sscanf(buf, "#%d", &version);
  212. DEBUG_INFO("Kernel version: %d\n", result);
  213. if(version >= 30)
  214. result = YES;
  215. }
  216. }
  217. pclose(fp);
  218. return result;
  219. }
  220. //======================================================
  221. // Check interface status
  222. //======================================================
  223. int isInterfaceUp(const char *interface)
  224. {
  225. int result = FAIL;
  226. FILE *fp;
  227. char cmd[256];
  228. char buf[512];
  229. strcpy(cmd, "ifconfig");;
  230. fp = popen(cmd, "r");
  231. if(fp != NULL)
  232. {
  233. while(fgets(buf, sizeof(buf), fp) != NULL)
  234. {
  235. if(strstr(buf, interface) > 0)
  236. {
  237. result = PASS;
  238. }
  239. }
  240. }
  241. pclose(fp);
  242. return result;
  243. }
  244. //======================================================
  245. // Create all share memory
  246. //======================================================
  247. int CreatShareMemory()
  248. {
  249. int result = PASS;
  250. int MeterSMId;
  251. //creat ShmSysConfigAndInfo
  252. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), IPC_CREAT | 0777)) < 0)
  253. {
  254. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  255. result = FAIL;
  256. }
  257. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  258. {
  259. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  260. result = FAIL;
  261. }
  262. memset(ShmSysConfigAndInfo,0,sizeof(struct SysConfigAndInfo));
  263. //creat ShmStatusCodeData
  264. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), IPC_CREAT | 0777)) < 0)
  265. {
  266. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  267. result = FAIL;
  268. }
  269. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  270. {
  271. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  272. result = FAIL;
  273. }
  274. memset(ShmStatusCodeData, 0, sizeof(struct StatusCodeData));
  275. //creat ShmPsuData
  276. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), IPC_CREAT | 0777)) < 0)
  277. {
  278. DEBUG_ERROR("shmget ShmPsuData NG\n");
  279. result = FAIL;
  280. }
  281. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  282. {
  283. DEBUG_ERROR("shmat ShmPsuData NG\n");
  284. result = FAIL;
  285. }
  286. memset(ShmPsuData,0,sizeof(struct PsuData));
  287. //creat ShmCHAdeMOData
  288. if ((MeterSMId = shmget(ShmCHAdeMOCommKey, sizeof(struct CHAdeMOData), IPC_CREAT | 0777)) < 0)
  289. {
  290. DEBUG_ERROR("shmget ShmCHAdeMOData NG1\n");
  291. result = FAIL;
  292. }
  293. else if ((ShmCHAdeMOData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  294. {
  295. DEBUG_ERROR("shmat ShmCHAdeMOData NG2\n");
  296. result = FAIL;
  297. }
  298. memset(ShmCHAdeMOData,0,sizeof(struct CHAdeMOData));
  299. //creat ShmCcsData
  300. if ((MeterSMId = shmget(ShmCcsCommKey, sizeof(struct CcsData), IPC_CREAT | 0777)) < 0)
  301. {
  302. DEBUG_ERROR("shmget ShmCcsData NG\n");
  303. result = FAIL;
  304. }
  305. else if ((ShmCcsData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  306. {
  307. DEBUG_ERROR("shmat ShmCcsData NG\n");
  308. result = FAIL;
  309. }
  310. memset(ShmCcsData,0,sizeof(struct CcsData));
  311. //creat ShmPrimaryMcuData
  312. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), IPC_CREAT | 0777)) < 0)
  313. {
  314. DEBUG_ERROR("shmget ShmPrimaryMcuData NG\n");
  315. result = FAIL;
  316. }
  317. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  318. {
  319. DEBUG_ERROR("shmat ShmPrimaryMcuData NG\n");
  320. result = FAIL;
  321. }
  322. memset(ShmPrimaryMcuData,0,sizeof(struct PrimaryMcuData));
  323. /*
  324. //creat ShmFanModuleData
  325. if ((MeterSMId = shmget(ShmFanBdKey, sizeof(struct FanModuleData), IPC_CREAT | 0777)) < 0)
  326. {
  327. DEBUG_ERROR("shmget ShmFanModuleData NG\n");
  328. result = FAIL;
  329. }
  330. else if ((ShmFanModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  331. {
  332. DEBUG_ERROR("shmat ShmFanModuleData NG\n");
  333. result = FAIL;
  334. }
  335. memset(ShmFanModuleData,0,sizeof(struct FanModuleData));
  336. //creat ShmRelayModuleData
  337. if ((MeterSMId = shmget(ShmRelayBdKey, sizeof(struct RelayModuleData), IPC_CREAT | 0777)) < 0)
  338. {
  339. DEBUG_ERROR("shmget ShmRelayModuleData NG\n");
  340. result = FAIL;
  341. }
  342. else if ((ShmRelayModuleData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  343. {
  344. DEBUG_ERROR("shmat ShmRelayModuleData NG\n");
  345. result = FAIL;
  346. }
  347. memset(ShmRelayModuleData,0,sizeof(struct RelayModuleData));*/
  348. //creat ShmOCPP16Data
  349. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), IPC_CREAT | 0777)) < 0)
  350. {
  351. DEBUG_ERROR("shmget ShmOCPP16Data NG\n");
  352. result = FAIL;
  353. }
  354. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  355. {
  356. DEBUG_ERROR("shmat ShmOCPP16Data NG\n");
  357. result = FAIL;
  358. }
  359. memset(ShmOCPP16Data,0,sizeof(struct OCPP16Data));
  360. //creat ShmOCPP20Data
  361. if ((MeterSMId = shmget(ShmOcpp20ModuleKey, sizeof(struct OCPP20Data), IPC_CREAT | 0777)) < 0)
  362. {
  363. DEBUG_ERROR("shmget OCPP20Data NG\n");
  364. result = FAIL;
  365. }
  366. else if ((ShmOCPP20Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  367. {
  368. DEBUG_ERROR("shmat OCPP20Data NG\n");
  369. result = FAIL;
  370. }
  371. memset(ShmOCPP20Data,0,sizeof(struct OCPP20Data));
  372. //creat ShmCharger
  373. if ((MeterSMId = shmget(ShmChargerKey, sizeof(struct Charger), IPC_CREAT | 0777)) < 0)
  374. {
  375. DEBUG_ERROR("shmget ShmCharger NG\n");
  376. result = FAIL;
  377. }
  378. else if ((ShmCharger = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  379. {
  380. DEBUG_ERROR("shmat ShmCharger NG\n");
  381. result = FAIL;
  382. }
  383. memset(ShmCharger,0,sizeof(struct Charger));
  384. return result;
  385. }
  386. //===============================================
  387. // SQLite3 related routine
  388. //===============================================
  389. int DB_Open(sqlite3 *db)
  390. {
  391. int result = PASS;
  392. char* errMsg = NULL;
  393. char* createRecordSql="CREATE TABLE IF NOT EXISTS charging_record("
  394. "idx integer primary key AUTOINCREMENT, "
  395. "reservationId text, "
  396. "transactionId text, "
  397. "startMethod text, "
  398. "userId text, "
  399. "dateTimeStart text, "
  400. "dateTimeStop text,"
  401. "socStart text, "
  402. "socStop text, "
  403. "chargeEnergy text, "
  404. "stopReason text"
  405. ");";
  406. char* createCfgSql="CREATE TABLE IF NOT EXISTS `config` ( "
  407. "`idx` INTEGER PRIMARY KEY AUTOINCREMENT, "
  408. "`item` TEXT NOT NULL, "
  409. "`connector` INTEGER NOT NULL, "
  410. "`val` TEXT NOT NULL, unique(item,connector) on conflict replace);";
  411. //sqlite3_config(SQLITE_CONFIG_URI, 1);
  412. if(sqlite3_open(DB_FILE, &db))
  413. {
  414. result = FAIL;
  415. DEBUG_ERROR( "Can't open database: %s\n", sqlite3_errmsg(db));
  416. sqlite3_close(db);
  417. }
  418. else
  419. {
  420. DEBUG_INFO( "Local charging record database open successfully.\n");
  421. if (sqlite3_exec(db, createRecordSql, 0, 0, &errMsg) != SQLITE_OK)
  422. {
  423. result = FAIL;
  424. DEBUG_ERROR( "Create local charging record table error message: %s\n", errMsg);
  425. }
  426. else
  427. {
  428. DEBUG_INFO( "Opened local charging record table successfully\n");
  429. }
  430. if (sqlite3_exec(db, createCfgSql, 0, 0, &errMsg) != SQLITE_OK)
  431. {
  432. result = FAIL;
  433. DEBUG_ERROR( "Create local config table error message: %s\n", errMsg);
  434. }
  435. else
  436. {
  437. DEBUG_INFO( "Opened local config table successfully\n");
  438. }
  439. sqlite3_close(db);
  440. }
  441. return result;
  442. }
  443. int DB_Insert_Record(sqlite3 *db, int gun_index)
  444. {
  445. int result = PASS;
  446. char* errMsg = NULL;
  447. char sqlStr[1024];
  448. sprintf(sqlStr, "insert into charging_record(reservationId, transactionId, startMethod, userId, dateTimeStart, dateTimeStop, socStart, socStop, chargeEnergy, stopReason) "
  449. "values('%d', '%d', '%d', '%s', '%s', '%s', '%d', '%d', '%f', '%s');",
  450. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].ReservationId,
  451. ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId,
  452. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod,
  453. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId,
  454. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartDateTime,
  455. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StopDateTime,
  456. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].EvBatterySoc,
  457. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].EvBatterySoc,
  458. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy,
  459. ShmOCPP16Data->StopTransaction[gun_index].StopReason);
  460. if(sqlite3_open(DB_FILE, &db))
  461. {
  462. result = FAIL;
  463. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  464. sqlite3_close(db);
  465. }
  466. else
  467. {
  468. DEBUG_INFO( "Local charging record database open successfully.\n");
  469. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  470. {
  471. result = FAIL;
  472. DEBUG_INFO( "Insert local charging record error message: %s\n", errMsg);
  473. }
  474. else
  475. {
  476. DEBUG_INFO( "Insert local charging record successfully\n");
  477. }
  478. sprintf(sqlStr, "delete from charging_record where idx < (select idx from charging_record order by idx desc limit 1)-2000;");
  479. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  480. {
  481. result = FAIL;
  482. DEBUG_INFO( "delete local charging error message: %s\n", errMsg);
  483. }
  484. else
  485. {
  486. DEBUG_INFO( "delete local charging record successfully\n");
  487. }
  488. sqlite3_close(db);
  489. }
  490. return result;
  491. }
  492. int DB_Update_Operactive(sqlite3 *db, uint8_t gun_index, uint8_t isOperactive)
  493. {
  494. uint8_t result = false;
  495. char* errMsg = NULL;
  496. char sqlStr[1024];
  497. srand(time(NULL));
  498. if(sqlite3_open(DB_FILE, &db))
  499. {
  500. result = FAIL;
  501. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  502. sqlite3_close(db);
  503. }
  504. else
  505. {
  506. DEBUG_INFO( "Local charging record database open successfully.\n");
  507. sprintf(sqlStr, "insert or replace into config (item, connector, val) values('isOperactive', %d, %d);", gun_index, isOperactive);
  508. DEBUG_INFO("sqlStr= %s\n", sqlStr);
  509. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  510. {
  511. result = FAIL;
  512. DEBUG_INFO( "update config error message: %s\n", errMsg);
  513. }
  514. else
  515. {
  516. DEBUG_INFO("update connector-%d config item isOperactive to %d\n", gun_index, isOperactive);
  517. }
  518. sqlite3_close(db);
  519. }
  520. return result;
  521. }
  522. int DB_Get_Operactive(sqlite3 *db, uint8_t gun_index)
  523. {
  524. uint8_t result = true;
  525. char* errMsg = NULL;
  526. char sqlStr[1024];
  527. char **rs;
  528. int rows, cols;
  529. sprintf(sqlStr, "select * from config where item='isOperactive' and connector=%d;", gun_index);
  530. //DEBUG_INFO("sqlStr= %s\n", sqlStr);
  531. if(sqlite3_open(DB_FILE, &db))
  532. {
  533. result = FAIL;
  534. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  535. sqlite3_close(db);
  536. }
  537. else
  538. {
  539. DEBUG_INFO( "Local config query database open successfully.\n");
  540. sqlite3_get_table(db, sqlStr, &rs, &rows, &cols, &errMsg);
  541. if(rows>0)
  542. {
  543. for(int idxRow=1;idxRow<=rows;idxRow++)
  544. {
  545. if(strcmp(rs[(idxRow*cols)+3], "0") == 0)
  546. {
  547. result = false;
  548. }
  549. DEBUG_INFO("Query connector-%d isOperactive: %s\n", gun_index, rs[(idxRow*cols)+3]);
  550. }
  551. }
  552. else
  553. {
  554. DEBUG_INFO("Query connector-%d fail, default value as operactive.\n", gun_index);
  555. }
  556. sqlite3_free_table(rs);
  557. sqlite3_close(db);
  558. }
  559. return result;
  560. }
  561. //======================================================
  562. // Peripheral initial
  563. //======================================================
  564. int InitWatchDog()
  565. {
  566. int fd;
  567. int timeout = 180;
  568. system("/usr/bin/fuser -k /dev/watchdog");
  569. sleep(1);
  570. system("echo V > /dev/watchdog");
  571. sleep(1);
  572. fd=open("/dev/watchdog", O_RDWR);
  573. if(fd<=0)
  574. {
  575. DEBUG_ERROR("System watch dog initial fail.\n");
  576. }
  577. ioctl(fd, _IOWR('W', 6, int), &timeout);
  578. return fd;
  579. }
  580. void InitGPIO()
  581. {
  582. /*****************0~3, 4 bank, bank x 32+ num*********************/
  583. /***************************************************************/
  584. /*************** INPUT PIN ***************************************/
  585. /***************************************************************/
  586. /***************************************************************/
  587. /*************** OUTPUT PIN ************************************/
  588. /***************************************************************/
  589. /*MCU request:GPIO3_20 => H:ON; L:OFF*/
  590. system("echo 116 > /sys/class/gpio/export");
  591. system("echo \"out\" > /sys/class/gpio/gpio116/direction");
  592. system("echo 0 > /sys/class/gpio/gpio116/value");
  593. /*Rfid:GPIO0_19 => Reset_PING H:ON; L:OFF*/
  594. system("echo 19 > /sys/class/gpio/export");
  595. system("echo \"out\" > /sys/class/gpio/gpio19/direction");
  596. system("echo 1 > /sys/class/gpio/gpio19/value");
  597. /*Speaker:GPIO2_1 => H:ON; L:OFF*/
  598. system("echo 65 > /sys/class/gpio/export");
  599. system("echo \"out\" > /sys/class/gpio/gpio65/direction");
  600. system("echo 0 > /sys/class/gpio/gpio65/value");
  601. /*4G/Wifi RST:GPIO3_18 => H:ON; L:OFF*/
  602. system("echo 114 > /sys/class/gpio/export");
  603. system("echo \"out\" > /sys/class/gpio/gpio114/direction");
  604. system("echo 1 > /sys/class/gpio/gpio114/value");
  605. sleep(3);
  606. system("echo 0 > /sys/class/gpio/gpio114/value");
  607. /*RFID ICC:GPIO0_20 => H:ON; L:OFF*/
  608. system("echo 20 > /sys/class/gpio/export");
  609. system("echo \"in\" > /sys/class/gpio/gpio20/direction");
  610. /*QCA7000 interrupt:GPIO2_00 => H:ON; L:OFF*/
  611. system("echo 64 > /sys/class/gpio/export");
  612. system("echo \"in\" > /sys/class/gpio/gpio64/direction");
  613. /*QCA7000 Reset:GPIO3_19 => H:ON; L:OFF*/
  614. system("echo 115 > /sys/class/gpio/export");
  615. system("echo \"out\" > /sys/class/gpio/gpio115/direction");
  616. system("echo 1 > /sys/class/gpio/gpio115/value");
  617. sleep(3);
  618. system("echo 0 > /sys/class/gpio/gpio115/value");
  619. /*RFID RST: GPIO1_30 => H:OFF; L:ON*/
  620. system("echo 62 > /sys/class/gpio/export");
  621. system("echo \"out\" > /sys/class/gpio/gpio62/direction");
  622. system("echo 0 > /sys/class/gpio/gpio62/value");
  623. DEBUG_INFO("Initial GPIO OK\n");
  624. }
  625. int LoadSysConfigAndInfo(struct SysConfigData *ptr)
  626. {
  627. int fd,wrd;
  628. unsigned char *buf;
  629. unsigned int ChkSum,ChkSumOrg;
  630. if((buf=malloc(MtdBlockSize))==NULL)
  631. {
  632. DEBUG_ERROR("malloc buffer NG,rebooting..\n");
  633. if(ShmStatusCodeData!=NULL)
  634. {
  635. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  636. }
  637. sleep(5);
  638. system("reboot -f");
  639. sleep(5);
  640. system("reboot -f");
  641. }
  642. memset(buf, 0, MtdBlockSize);
  643. //================================================
  644. // Load configuration from mtdblock10
  645. //================================================
  646. system("nanddump /dev/mtd10 -f /mnt/EvseConfig.bin");
  647. fd = open("/mnt/EvseConfig.bin", O_RDWR);
  648. if (fd < 0)
  649. {
  650. free(buf);
  651. DEBUG_ERROR("open mtdblock10 NG,rebooting..\n");
  652. if(ShmStatusCodeData!=NULL)
  653. {
  654. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  655. }
  656. sleep(5);
  657. system("reboot -f");
  658. sleep(5);
  659. system("reboot -f");
  660. }
  661. wrd=read(fd, buf, MtdBlockSize);
  662. close(fd);
  663. if(wrd<MtdBlockSize)
  664. {
  665. free(buf);
  666. DEBUG_ERROR("read SysConfigData data NG,rebooting..\n");
  667. if(ShmStatusCodeData!=NULL)
  668. {
  669. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  670. }
  671. sleep(5);
  672. system("reboot -f");
  673. sleep(5);
  674. system("reboot -f");
  675. }
  676. ChkSum=0;
  677. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  678. {
  679. ChkSum+=buf[wrd];
  680. }
  681. memcpy(&ChkSumOrg,buf+(MtdBlockSize-4),sizeof(ChkSumOrg));
  682. //================================================
  683. // Load configuration from mtdblock11
  684. //================================================
  685. if(ChkSum!=ChkSumOrg)
  686. {
  687. DEBUG_ERROR("Primary SysConfigData checksum NG, read backup\n");
  688. system("nanddump /dev/mtd11 -f /mnt/EvseConfig.bin");
  689. fd = open("/mnt/EvseConfig", O_RDWR);
  690. if (fd < 0)
  691. {
  692. free(buf);
  693. DEBUG_ERROR("open mtdblock11 (backup) NG,rebooting..\n");
  694. if(ShmStatusCodeData!=NULL)
  695. {
  696. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  697. }
  698. sleep(5);
  699. system("reboot -f");
  700. sleep(5);
  701. system("reboot -f");
  702. }
  703. memset(buf, 0, MtdBlockSize);
  704. wrd=read(fd, buf,MtdBlockSize);
  705. close(fd);
  706. if(wrd<MtdBlockSize)
  707. {
  708. free(buf);
  709. DEBUG_ERROR("read backup SysConfigData data NG,rebooting..\n");
  710. if(ShmStatusCodeData!=NULL)
  711. {
  712. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  713. }
  714. sleep(5);
  715. system("reboot -f");
  716. sleep(5);
  717. system("reboot -f");
  718. }
  719. ChkSum=0;
  720. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  721. {
  722. ChkSum+=buf[wrd];
  723. }
  724. memcpy(&ChkSumOrg,buf+(MtdBlockSize-4),sizeof(ChkSumOrg));
  725. //================================================
  726. // Load configuration from mtdblock12 (Factory default)
  727. //================================================
  728. if(ChkSum!=ChkSumOrg)
  729. {
  730. DEBUG_WARN("backup SysConfigData checksum NG, read Factory default\n");
  731. system("nanddump /dev/mtd12 -f /mnt/EvseConfig.bin");
  732. fd = open("/mnt/EvseConfig.bin", O_RDWR);
  733. if (fd < 0)
  734. {
  735. DEBUG_ERROR("open mtdblock12 (Factory default) NG,rebooting..\n");
  736. free(buf);
  737. if(ShmStatusCodeData!=NULL)
  738. {
  739. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  740. }
  741. sleep(5);
  742. system("reboot -f");
  743. sleep(5);
  744. system("reboot -f");
  745. }
  746. memset(buf, 0, MtdBlockSize);
  747. wrd=read(fd, buf,MtdBlockSize);
  748. close(fd);
  749. if(wrd<MtdBlockSize)
  750. {
  751. DEBUG_ERROR("read factory default SysConfigData data NG,rebooting..\n");
  752. free(buf);
  753. if(ShmStatusCodeData!=NULL)
  754. {
  755. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  756. }
  757. sleep(5);
  758. system("reboot -f");
  759. sleep(5);
  760. system("reboot -f");
  761. }
  762. ChkSum=0;
  763. for(wrd=0;wrd<MtdBlockSize-4;wrd++)
  764. {
  765. ChkSum+=buf[wrd];
  766. }
  767. memcpy(&ChkSumOrg,buf+(MtdBlockSize-4),sizeof(ChkSumOrg));
  768. if(ChkSum!=ChkSumOrg)
  769. {
  770. DEBUG_WARN("factory default SysConfigData checksum NG, restore factory default\n");
  771. free(buf);
  772. system("cd /root;./Module_FactoryConfig -m");
  773. system("rm -f /Storage/OCPP/OCPPConfiguration");
  774. system("sync");
  775. sleep(5);
  776. system("reboot -f");
  777. sleep(5);
  778. system("reboot -f");
  779. return FAIL;
  780. }
  781. }
  782. }
  783. //load OK
  784. memcpy((struct SysConfigData *)ptr,buf,sizeof(struct SysConfigData));
  785. free(buf);
  786. system("rm -f /mnt/EvseConfig.bin");
  787. DEBUG_INFO("Load SysConfigData OK\n");
  788. ShmCharger->isCcsEnable = OFF;
  789. for(uint8_t idx=0;idx<3;idx++)
  790. {
  791. if(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == '7')
  792. ShmCharger->isCcsEnable = ON;
  793. }
  794. return PASS;
  795. }
  796. int StoreUsrConfigData(struct SysConfigData *UsrData)
  797. {
  798. int result = PASS;
  799. int fd,wrd;
  800. unsigned int i,Chk;
  801. unsigned char *ptr, *BufTmp;
  802. Chk=0;
  803. ptr=(unsigned char *)UsrData;
  804. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  805. {
  806. memset(BufTmp,0,MtdBlockSize);
  807. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  808. for(i=0;i<MtdBlockSize-4;i++)
  809. Chk+=*(BufTmp+i);
  810. memcpy(BufTmp+MtdBlockSize-4, &Chk, 4);
  811. // Output configuration to file.
  812. fd = open("/mnt/EvseConfig.bin", O_RDWR|O_CREAT);
  813. if (fd < 0)
  814. {
  815. DEBUG_ERROR("open /mnt/EvseConfig.bin NG\n");
  816. free(BufTmp);
  817. return 0;
  818. }
  819. wrd=write(fd, BufTmp, MtdBlockSize);
  820. close(fd);
  821. if(wrd<MtdBlockSize)
  822. {
  823. DEBUG_ERROR("write /mnt/EvseConfig.bin NG\n");
  824. free(BufTmp);
  825. return 0;
  826. }
  827. DEBUG_INFO("EvseConfig write to file in /mnt OK.\n");
  828. DEBUG_INFO("Erase /dev/mtd10.\n");
  829. runShellCmd("flash_erase /dev/mtd10 0 12");
  830. DEBUG_INFO("Write /dev/mtd10.\n");
  831. runShellCmd("nandwrite -p /dev/mtd10 /mnt/EvseConfig.bin");
  832. DEBUG_INFO("Erase /dev/mtd11.\n");
  833. runShellCmd("flash_erase /dev/mtd11 0 12");
  834. DEBUG_INFO("Write /dev/mtd11.\n");
  835. runShellCmd("nandwrite -p /dev/mtd11 /mnt/EvseConfig.bin");
  836. system("rm -f /mnt/EvseConfig.bin");
  837. DEBUG_INFO("EvseConfig write to flash OK\n");
  838. }
  839. else
  840. {
  841. DEBUG_ERROR("alloc BlockSize NG\r\n");
  842. result = FAIL;
  843. }
  844. if(BufTmp!=NULL)
  845. free(BufTmp);
  846. return result;
  847. }
  848. void InitEthernet()
  849. {
  850. pid_t pid;
  851. uint8_t cnt_pingDNS_Fail;
  852. char tmpbuf[256];
  853. unsigned int natInterface = 0;
  854. //Init Eth0 for internet
  855. memset(tmpbuf,0,256);
  856. sprintf(tmpbuf,"/sbin/ifconfig eth0 %s netmask %s up &",
  857. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,
  858. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  859. DEBUG_INFO("eth0 config as ip: %s, netmask: %s\n", ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,
  860. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  861. system(tmpbuf);
  862. memset(tmpbuf,0,256);
  863. sprintf(tmpbuf,"route add default gw %s eth0 &",
  864. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
  865. system(tmpbuf);
  866. system("ifconfig lo up &");
  867. system("/sbin/ifconfig eth0:1 192.168.201.201 netmask 255.255.255.248 up &");
  868. //Run DHCP client if enabled
  869. system("killall udhcpc");
  870. system("rm -rf /etc/resolv.conf");
  871. system("echo nameserver 8.8.8.8 >> /etc/resolv.conf"); //Google DNS server
  872. system("echo nameserver 180.76.76.76 >> /etc/resolv.conf"); //Baidu DNS server
  873. if(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient==0)
  874. {
  875. sprintf(tmpbuf, "/sbin/udhcpc -i eth0 -x hostname:CSU3_%s -s /root/dhcp_script/eth0.script > /dev/null &", ShmSysConfigAndInfo->SysConfig.SystemId);
  876. system(tmpbuf);
  877. }
  878. // Upgrade system id to /etc/hostname
  879. sprintf(tmpbuf, "echo %s > /etc/hostname", ShmSysConfigAndInfo->SysConfig.SystemId);
  880. system(tmpbuf);
  881. //check internet status
  882. pid = fork();
  883. if(pid == 0)
  884. {
  885. for(;;)
  886. {
  887. if(isRouteFail())
  888. {
  889. DEBUG_ERROR("eth0 not in route, restart eth0.\n");
  890. system("/sbin/ifconfig eth0 down;/sbin/ifconfig eth0 up");
  891. if((ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient==0))
  892. {
  893. system("pgrep -f \"udhcpc -i eth0\" | xargs kill");
  894. sprintf(tmpbuf, "/sbin/udhcpc -i eth0 -x hostname:CSU3_%s -s /root/dhcp_script/eth0.script > /dev/null &", ShmSysConfigAndInfo->SysConfig.SystemId);
  895. system(tmpbuf);
  896. }
  897. }
  898. if(isReachableInternet() == PASS)
  899. {
  900. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet=OFF;
  901. cnt_pingDNS_Fail = 0;
  902. }
  903. else
  904. {
  905. if(cnt_pingDNS_Fail >= 3)
  906. {
  907. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet=ON;
  908. }
  909. else
  910. {
  911. cnt_pingDNS_Fail++;
  912. }
  913. }
  914. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet &&
  915. ((ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == 0) || ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi) &&
  916. ((ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled == 0) || ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi) &&
  917. (ShmOCPP16Data->OcppConnStatus != PASS))
  918. {
  919. ShmSysConfigAndInfo->SysInfo.InternetConn = OFF;
  920. }
  921. else
  922. {
  923. ShmSysConfigAndInfo->SysInfo.InternetConn = ON;
  924. }
  925. //============================================================
  926. // Priority for internet 0 : First / 1 : Second / 2: Third
  927. //============================================================
  928. if(!ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet)
  929. {
  930. system("/sbin/ifmetric eth0 0");
  931. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  932. {
  933. system("/sbin/ifmetric mlan0 1");
  934. }
  935. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  936. {
  937. system("/sbin/ifmetric ppp0 2");
  938. }
  939. if(isKernelSupportNAT() == YES)
  940. {
  941. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == 2)
  942. {
  943. if(natInterface != 1)
  944. {
  945. system("/sbin/iptables -t nat -F");
  946. system("/sbin/iptables -A POSTROUTING -t nat -s 192.168.10.0/24 -o eth0 -j MASQUERADE");
  947. natInterface = 1;
  948. }
  949. }
  950. else
  951. {
  952. system("/sbin/iptables -t nat -F");
  953. }
  954. }
  955. }
  956. else if(!ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi)
  957. {
  958. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  959. {
  960. system("/sbin/ifmetric eth0 1");
  961. system("/sbin/ifmetric mlan0 0");
  962. }
  963. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  964. {
  965. system("/sbin/ifmetric ppp0 2");
  966. }
  967. }
  968. else if(!ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi)
  969. {
  970. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  971. {
  972. system("/sbin/ifmetric mlan0 2");
  973. }
  974. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  975. {
  976. system("/sbin/ifmetric eth0 1");
  977. system("/sbin/ifmetric ppp0 0");
  978. }
  979. if(isKernelSupportNAT() == YES)
  980. {
  981. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == 2)
  982. {
  983. if(natInterface != 2)
  984. {
  985. system("/sbin/iptables -t nat -F");
  986. system("/sbin/iptables -A POSTROUTING -t nat -s 192.168.10.0/24 -o ppp0 -j MASQUERADE");
  987. natInterface = 2;
  988. }
  989. }
  990. else
  991. {
  992. system("/sbin/iptables -t nat -F");
  993. }
  994. }
  995. }
  996. else
  997. {
  998. if(isKernelSupportNAT() == YES)
  999. {
  1000. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == 2)
  1001. {
  1002. system("/sbin/iptables -t nat -F");
  1003. natInterface = 0;
  1004. }
  1005. }
  1006. }
  1007. sleep(5);
  1008. }
  1009. }
  1010. DEBUG_INFO("Initial Ethernet OK\n");
  1011. }
  1012. int SpawnTask()
  1013. {
  1014. system ("pkill Module_4g");
  1015. system ("pkill Module_Wifi");
  1016. system ("pkill Module_EventLogging");
  1017. system ("pkill OcppBackend");
  1018. system ("pkill Module_AlarmDetect");
  1019. system ("pkill Module_InternalComm");
  1020. system ("pkill Module_Speaker");
  1021. system ("pkill Module_ProduceUtils");
  1022. system ("pkill Module_LcmControl");
  1023. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  1024. {
  1025. system("/root/Module_4g &");
  1026. }
  1027. else if(ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W')
  1028. {
  1029. system("/root/Module_Wifi &");
  1030. }
  1031. system("/root/Module_EventLogging &");
  1032. if(strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0)
  1033. {
  1034. system("/root/OcppBackend &");
  1035. }
  1036. else
  1037. {
  1038. DEBUG_INFO("OCPP URL is empty, need to create a configuration table !!!\n");
  1039. system("/root/OcppBackend &");
  1040. }
  1041. system ("/root/Module_AlarmDetect &");
  1042. system ("/root/Module_InternalComm &");
  1043. system ("/root/Module_Speaker &");
  1044. system ("/root/Module_ProduceUtils &");
  1045. system ("/root/Module_LcmControl &");
  1046. return PASS;
  1047. }
  1048. int InitQca7000()
  1049. {
  1050. int result = PASS;
  1051. if(isKernelSupportNAT() == YES)
  1052. system("/sbin/insmod /lib/qcaspi_nat.ko");
  1053. else
  1054. system("/sbin/insmod /lib/qcaspi.ko");
  1055. sleep(2);
  1056. system("/sbin/ifconfig eth1 192.168.253.11 netmask 255.255.255.0 up");
  1057. sleep(1);
  1058. return result;
  1059. }
  1060. int Initialization()
  1061. {
  1062. int result = PASS;
  1063. LoadSysConfigAndInfo(&ShmSysConfigAndInfo->SysConfig);
  1064. InitGPIO();
  1065. InitEthernet();
  1066. if(InitQca7000() != PASS)
  1067. {
  1068. DEBUG_ERROR("QCA7000 initial fail.\n");
  1069. result = FAIL;
  1070. }
  1071. if(DB_Open(localDb) != PASS)
  1072. {
  1073. DEBUG_ERROR("Local database initial fail.\n");
  1074. result = FAIL;
  1075. }
  1076. for(int gun_index=0;gun_index< AC_QUANTITY;gun_index++)
  1077. ShmCharger->gun_info[gun_index].isOperactive = DB_Get_Operactive(localDb, gun_index);
  1078. if((rfidFd = InitRfidPort()) == FAIL)
  1079. {
  1080. DEBUG_ERROR("RFID port initial fail.\n");
  1081. result = FAIL;
  1082. }
  1083. if((wtdFd = InitWatchDog()) == FAIL)
  1084. {
  1085. DEBUG_ERROR("Watchdog initial fail.\n");
  1086. result = FAIL;
  1087. }
  1088. if(result == PASS)
  1089. DEBUG_INFO("Initialization OK.\n");
  1090. else
  1091. DEBUG_INFO("Initialization Fail.\n");
  1092. return result;
  1093. }
  1094. //=====================================================
  1095. // Common routine
  1096. //=====================================================
  1097. char* getSystemModeName(unsigned char mode)
  1098. {
  1099. char* result;
  1100. switch(mode)
  1101. {
  1102. case SYS_MODE_BOOTING:
  1103. result = "booting";
  1104. break;
  1105. case SYS_MODE_IDLE:
  1106. result = "idle";
  1107. break;
  1108. case SYS_MODE_AUTHORIZING:
  1109. result = "authorizing";
  1110. break;
  1111. case SYS_MODE_PREPARING:
  1112. result = "preparing";
  1113. break;
  1114. case SYS_MODE_CHARGING:
  1115. result = "charging";
  1116. break;
  1117. case SYS_MODE_TERMINATING:
  1118. result = "terminating";
  1119. break;
  1120. case SYS_MODE_COMPLETE:
  1121. result = "complete";
  1122. break;
  1123. case SYS_MODE_ALARM:
  1124. result = "alarm";
  1125. break;
  1126. case SYS_MODE_FAULT:
  1127. result = "fault";
  1128. break;
  1129. case SYS_MODE_MAINTAIN:
  1130. result = "maintain";
  1131. break;
  1132. case SYS_MODE_RESERVATION:
  1133. result = "reservation";
  1134. break;
  1135. case SYS_MODE_BOOKING:
  1136. result = "booking";
  1137. break;
  1138. case SYS_MODE_DEBUG:
  1139. result = "debug";
  1140. break;
  1141. case SYS_MODE_UPDATE:
  1142. result = "upgrade";
  1143. break;
  1144. default:
  1145. result = "unknown";
  1146. break;
  1147. }
  1148. return result;
  1149. }
  1150. void setChargerMode(unsigned char gun_index, unsigned char mode)
  1151. {
  1152. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus;
  1153. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus = mode;
  1154. DEBUG_INFO("Gun-%02d mode switch from %s to %s\n", gun_index, getSystemModeName(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus), getSystemModeName(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus));
  1155. }
  1156. unsigned char isMode(unsigned char gun_index, unsigned char mode)
  1157. {
  1158. return ((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus == mode)?YES:NO);
  1159. }
  1160. unsigned char isModeChange(unsigned char gun_index)
  1161. {
  1162. unsigned char result = NO;
  1163. if(!isMode(gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus))
  1164. {
  1165. result = YES;
  1166. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus;
  1167. }
  1168. return result;
  1169. }
  1170. void gpio_set_value(unsigned int gpio, unsigned int value)
  1171. {
  1172. int fd;
  1173. char buf[256];
  1174. sprintf(buf, "/sys/class/gpio/gpio%d/value", gpio);
  1175. fd = open(buf, O_WRONLY);
  1176. if (fd < 0)
  1177. {
  1178. DEBUG_ERROR("GPIO-%d set %d fail.\n", gpio, value);
  1179. return;
  1180. }
  1181. if (value)
  1182. write(fd, "1", 2);
  1183. else
  1184. write(fd, "0", 2);
  1185. close(fd);
  1186. }
  1187. int gpio_get_value(unsigned int gpio)
  1188. {
  1189. int fd;
  1190. char buf[256];
  1191. char ch;
  1192. int8_t result = FAIL;
  1193. sprintf(buf, "/sys/class/gpio/gpio%d/value", gpio);
  1194. fd = open(buf, O_RDONLY);
  1195. if (fd < 0)
  1196. {
  1197. DEBUG_ERROR("GPIO-%d get fail\n", gpio);
  1198. return result;
  1199. }
  1200. read(fd, &ch, 1);
  1201. if (ch != '0')
  1202. result = 1;
  1203. else
  1204. result = 0;
  1205. close(fd);
  1206. return result;
  1207. }
  1208. //===============================================
  1209. // Get firmware version
  1210. //===============================================
  1211. void get_firmware_version(unsigned char gun_index)
  1212. {
  1213. FILE *fp;
  1214. char cmd[512];
  1215. char buf[512];
  1216. // Get CSU hardware version
  1217. sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuHwRev, "REV.XXXXXXX");
  1218. // Get CSU boot loader version
  1219. memcpy(ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, ShmSysConfigAndInfo->SysConfig.CsuBootLoadFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.CsuBootLoadFwRev));
  1220. // Get CSU kernel version
  1221. sprintf(cmd, "/bin/uname -r");
  1222. fp = popen(cmd, "r");
  1223. if(fp == NULL)
  1224. sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "Unknown version");
  1225. else
  1226. {
  1227. while(fgets(buf, sizeof(buf), fp) != NULL)
  1228. {
  1229. memcpy(ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, buf, strlen(buf)-1);
  1230. }
  1231. }
  1232. // Get MCU firmware version
  1233. strcpy((char*)ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ShmCharger->gun_info[gun_index].ver.Version_FW);
  1234. // Get CSU root file system version
  1235. sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "D0.42.00.0000.00");
  1236. // Get AC connector type from model name
  1237. for(uint8_t idx=0;idx<3;idx++)
  1238. {
  1239. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1240. {
  1241. case '1':
  1242. // J1772 Plug
  1243. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '4';
  1244. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '4';
  1245. break;
  1246. case '2':
  1247. // J1772 Socket
  1248. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '1';
  1249. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '1';
  1250. break;
  1251. case '3':
  1252. // CE Plug
  1253. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '5';
  1254. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '5';
  1255. break;
  1256. case '4':
  1257. // CE Socket
  1258. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '2';
  1259. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '2';
  1260. break;
  1261. case '5':
  1262. // GB Plug
  1263. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '6';
  1264. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '6';
  1265. break;
  1266. case '6':
  1267. // GB Socket
  1268. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[6] = '3';
  1269. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[6] = '3';
  1270. break;
  1271. }
  1272. }
  1273. // Get network option from model name
  1274. switch(ShmSysConfigAndInfo->SysConfig.ModelName[10])
  1275. {
  1276. case 'B':
  1277. case 'U':
  1278. //Blue tooth
  1279. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '3';
  1280. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[9] = '3';
  1281. break;
  1282. case 'W':
  1283. // WIFI
  1284. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '1';
  1285. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[9] = '1';
  1286. break;
  1287. case 'T':
  1288. // 3G/4G
  1289. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '2';
  1290. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[9] = '2';
  1291. break;
  1292. default:
  1293. // LAN
  1294. ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[9] = '0';
  1295. ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[9] = '0';
  1296. break;
  1297. }
  1298. // Get rating power from model name
  1299. memcpy(&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[10], &ShmSysConfigAndInfo->SysConfig.ModelName[4], 0x03);
  1300. memcpy(&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[10], &ShmSysConfigAndInfo->SysConfig.ModelName[4], 0x03);
  1301. // Get vender code from model name
  1302. memcpy(&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev[14], &ShmSysConfigAndInfo->SysConfig.ModelName[12], 0x02);
  1303. memcpy(&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev[14], &ShmSysConfigAndInfo->SysConfig.ModelName[12], 0x02);
  1304. DEBUG_INFO("========================================\n");
  1305. DEBUG_INFO("Model: %s\n", ShmSysConfigAndInfo->SysConfig.ModelName);
  1306. DEBUG_INFO("CSU hardware version: %s\n", ShmSysConfigAndInfo->SysInfo.CsuHwRev);
  1307. DEBUG_INFO("CSU boot loader version: %s\n", ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev);
  1308. DEBUG_INFO("CSU kernel version: %s\n", ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev);
  1309. DEBUG_INFO("CSU root file system version: %s\n", ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  1310. DEBUG_INFO("CSU MCU-%2d firmware version: %s\n", gun_index, ShmCharger->gun_info[gun_index].ver.Version_FW);
  1311. DEBUG_INFO("========================================\n");
  1312. }
  1313. //===============================================
  1314. // Upgrade firmware
  1315. //===============================================
  1316. int upgrade_check()
  1317. {
  1318. int result = PASS;
  1319. int fd;
  1320. DIR *dir;
  1321. struct dirent *file;
  1322. char cmd[512];
  1323. long int MaxLen=48*1024*1024;
  1324. if ((dir = opendir ("/mnt")) != NULL)
  1325. {
  1326. /* print all the files and directories within directory */
  1327. while ((file = readdir (dir)) != NULL)
  1328. {
  1329. if(strlen(file->d_name)>2)
  1330. {
  1331. memset(&ShmCharger->fwUpgradeInfo, 0xFF, sizeof(Fw_Upgrade_Info));
  1332. DEBUG_INFO("New firmware file: %s\n", file->d_name);
  1333. sprintf(ShmCharger->fwUpgradeInfo.location, "/mnt/%s", file->d_name);
  1334. if((fd=open(ShmCharger->fwUpgradeInfo.location, O_RDONLY)) >= 0)
  1335. {
  1336. unsigned char *ptr = malloc(MaxLen); //-48 is take out the header
  1337. memset(ptr, 0xFF, MaxLen); //-48 is take out the header
  1338. read(fd, ptr, MaxLen);
  1339. close(fd);
  1340. ShmCharger->fwUpgradeInfo.fwType = ((ptr[0x13]<<0) | (ptr[0x12]<<8) | (ptr[0x11]<<16) | (ptr[0x10]<<24));
  1341. substr(ShmCharger->fwUpgradeInfo.modelName, (char *)ptr, 0, 0x10);
  1342. DEBUG_INFO("New firmware type: %X\n", ShmCharger->fwUpgradeInfo.fwType);
  1343. DEBUG_INFO("New firmware model name: %s, %s\n", ShmCharger->fwUpgradeInfo.modelName, ShmSysConfigAndInfo->SysConfig.ModelName);
  1344. if((strcmp(ShmCharger->fwUpgradeInfo.modelName, (char*)ShmSysConfigAndInfo->SysConfig.ModelName)==0) && (ShmCharger->fwUpgradeInfo.fwType>0))
  1345. {
  1346. switch(ShmCharger->fwUpgradeInfo.fwType)
  1347. {
  1348. case CSU_BOOTLOADER:
  1349. case CSU_KERNEL_CONFIGURATION:
  1350. case CSU_KERNEL_IMAGE:
  1351. case CSU_ROOT_FILE_SYSTEM:
  1352. case CSU_USER_CONFIGURATION:
  1353. case CSU_PRIMARY_CONTROLLER:
  1354. if(Upgrade_Flash(ShmCharger->fwUpgradeInfo.fwType, ShmCharger->fwUpgradeInfo.location, ShmCharger->fwUpgradeInfo.modelName) != PASS)
  1355. {
  1356. result = FAIL;
  1357. }
  1358. else
  1359. {
  1360. if(ShmCharger->fwUpgradeInfo.fwType == CSU_USER_CONFIGURATION)
  1361. {
  1362. DEBUG_INFO("Restore model name & serial number.\n");
  1363. memcpy(&SysConfigOrg, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  1364. if(LoadSysConfigAndInfo(&ShmSysConfigAndInfo->SysConfig) != PASS)
  1365. {
  1366. DEBUG_INFO("Re-load configuration fail.\n");
  1367. result = FAIL;
  1368. }
  1369. else
  1370. {
  1371. memcpy(&ShmSysConfigAndInfo->SysConfig.ModelName, &SysConfigOrg.ModelName, ARRAY_SIZE(SysConfigOrg.ModelName));
  1372. memcpy(&ShmSysConfigAndInfo->SysConfig.SerialNumber, &SysConfigOrg.SerialNumber, ARRAY_SIZE(SysConfigOrg.SerialNumber));
  1373. memcpy(&ShmSysConfigAndInfo->SysConfig.SystemId, &SysConfigOrg.SystemId, ARRAY_SIZE(SysConfigOrg.SystemId));
  1374. if(StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig) != PASS)
  1375. {
  1376. DEBUG_INFO("Re-write configuration fail.\n");
  1377. result = FAIL;
  1378. }
  1379. else
  1380. DEBUG_INFO("Re-write configuration OK.\n");
  1381. }
  1382. }
  1383. }
  1384. sprintf(cmd, "yes|rm %s", ShmCharger->fwUpgradeInfo.location);
  1385. system(cmd);
  1386. break;
  1387. case AC_WALLMOUNT_CONTROLLER:
  1388. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  1389. ShmCharger->gun_info[gun_index].mcuFlag.isMcuUpgradeReq = ON;
  1390. break;
  1391. default:
  1392. result = FAIL;
  1393. DEBUG_WARN("Image file is unknown type.\n");
  1394. sprintf(cmd, "yes|rm %s", ShmCharger->fwUpgradeInfo.location);
  1395. system(cmd);
  1396. break;
  1397. }
  1398. }
  1399. else
  1400. {
  1401. result = FAIL;
  1402. DEBUG_ERROR("Model name and Firmware type error.\n");
  1403. }
  1404. free(ptr);
  1405. }
  1406. else
  1407. {
  1408. result = FAIL;
  1409. DEBUG_ERROR("New firmware open error.\n");
  1410. }
  1411. }
  1412. else
  1413. {
  1414. if(strlen(file->d_name) >= 3)
  1415. {
  1416. result = FAIL;
  1417. DEBUG_ERROR("File name error.\n");
  1418. }
  1419. else
  1420. {
  1421. DEBUG_ERROR("Searching file.\n");
  1422. }
  1423. }
  1424. }
  1425. closedir (dir);
  1426. }
  1427. else
  1428. {
  1429. result = FAIL;
  1430. DEBUG_ERROR("/mnt does not valid.\n");
  1431. }
  1432. return result;
  1433. }
  1434. //===============================================
  1435. // Check RFID is match with start user
  1436. //===============================================
  1437. int isMatchStartUser(unsigned char gun_index)
  1438. {
  1439. uint8_t tmpUser[32];
  1440. if(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian)
  1441. {
  1442. // Big endian
  1443. switch(rfid.snType)
  1444. {
  1445. case RFID_SN_TYPE_6BYTE:
  1446. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5]);
  1447. break;
  1448. case RFID_SN_TYPE_7BYTE:
  1449. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6]);
  1450. break;
  1451. case RFID_SN_TYPE_10BYTE:
  1452. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6], rfid.currentCard[7], rfid.currentCard[8], rfid.currentCard[9]);
  1453. break;
  1454. case RFID_SN_TYPE_4BYTE:
  1455. default:
  1456. sprintf((char*)tmpUser, "%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3]);
  1457. break;
  1458. }
  1459. }
  1460. else
  1461. {
  1462. // Little endian
  1463. switch(rfid.snType)
  1464. {
  1465. case RFID_SN_TYPE_6BYTE:
  1466. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  1467. break;
  1468. case RFID_SN_TYPE_7BYTE:
  1469. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  1470. break;
  1471. case RFID_SN_TYPE_10BYTE:
  1472. sprintf((char*)tmpUser, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[9], rfid.currentCard[8], rfid.currentCard[7], rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  1473. break;
  1474. case RFID_SN_TYPE_4BYTE:
  1475. default:
  1476. sprintf((char*)tmpUser, "%02X%02X%02X%02X", rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  1477. break;
  1478. }
  1479. }
  1480. return ((strcmp((char*)tmpUser, (char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId)==0)?YES:NO);
  1481. }
  1482. //===============================================
  1483. // Read RFID Serial Number
  1484. //===============================================
  1485. int GetCardSerialNumber()
  1486. {
  1487. int isSuccess = FAIL;
  1488. int module_type = MODULE_EWT;
  1489. if(getRequestCardSN(rfidFd,module_type,&rfid))
  1490. {
  1491. if(rfid.cardType == ISO14443A)
  1492. {
  1493. if(rfid.snType == RFID_SN_TYPE_4BYTE)
  1494. {
  1495. isSuccess = PASS;
  1496. }
  1497. else if (rfid.snType == RFID_SN_TYPE_7BYTE)
  1498. {
  1499. isSuccess = PASS;
  1500. }
  1501. sethaltCard(rfidFd,module_type);
  1502. }
  1503. else if(rfid.cardType == IS014443B)
  1504. {
  1505. isSuccess = PASS;
  1506. }
  1507. else if(rfid.cardType == FELICA)
  1508. {
  1509. isSuccess = PASS;
  1510. }
  1511. else
  1512. {}
  1513. }
  1514. else
  1515. {}
  1516. return isSuccess;
  1517. }
  1518. //===============================================
  1519. // Set led motion
  1520. //===============================================
  1521. void setLedMotion(unsigned char gun_index,unsigned char led_mode)
  1522. {
  1523. switch(led_mode)
  1524. {
  1525. case LED_ACTION_INIT:
  1526. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_INIT;
  1527. break;
  1528. case LED_ACTION_IDLE:
  1529. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_IDLE;
  1530. break;
  1531. case LED_ACTION_AUTHED:
  1532. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_AUTHED;
  1533. break;
  1534. case LED_ACTION_CONNECTED:
  1535. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_CONNECTED;
  1536. break;
  1537. case LED_ACTION_CHARGING:
  1538. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_CHARGING;
  1539. break;
  1540. case LED_ACTION_STOP:
  1541. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_STOP;
  1542. break;
  1543. case LED_ACTION_ALARM:
  1544. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_ALARM;
  1545. break;
  1546. case LED_ACTION_MAINTAIN:
  1547. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_MAINTAIN;
  1548. break;
  1549. case LED_ACTION_RFID_PASS:
  1550. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_RFID_PASS;
  1551. break;
  1552. case LED_ACTION_RFID_FAIL:
  1553. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_RFID_FAIL;
  1554. break;
  1555. case LED_ACTION_BLE_CONNECT:
  1556. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_BLE_CONNECT;
  1557. break;
  1558. case LED_ACTION_BLE_DISABLE:
  1559. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_BLE_DISABLE;
  1560. break;
  1561. case LED_ACTION_DEBUG:
  1562. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_DEBUG;
  1563. break;
  1564. case LED_ACTION_ALL_OFF:
  1565. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_ALL_OFF;
  1566. break;
  1567. case LED_RELAY_ON:
  1568. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_RELAY_ON;
  1569. break;
  1570. case LED_RELAY_OFF:
  1571. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_RELAY_OFF;
  1572. break;
  1573. case LED_ACTION_HANDSHAKE_FAIL:
  1574. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_HANDSHAKE_FAIL;
  1575. break;
  1576. case LED_ACTION_INTERNET_DISCONNECT:
  1577. ShmCharger->gun_info[gun_index].primaryMcuLed.mode = LED_ACTION_INTERNET_DISCONNECT;
  1578. break;
  1579. }
  1580. }
  1581. //===============================================
  1582. // Request on/off set
  1583. //===============================================
  1584. void setRequest(unsigned char gun_index,unsigned char isOn)
  1585. {
  1586. if(isOn == ON)
  1587. {
  1588. if(ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest == OFF)
  1589. {
  1590. ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest = ON;
  1591. DEBUG_INFO("Gun-%d Output relay sts: ON \n",gun_index);
  1592. }
  1593. }
  1594. else
  1595. {
  1596. if(ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest == ON)
  1597. {
  1598. ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest = OFF;
  1599. DEBUG_INFO("Gun-%d Output relay sts: OFF \n",gun_index);
  1600. }
  1601. }
  1602. }
  1603. //===============================================
  1604. // Request on/off get
  1605. //===============================================
  1606. int getRequest(unsigned char gun_index)
  1607. {
  1608. return ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest;
  1609. }
  1610. //===============================================
  1611. // Relay on/off set
  1612. //===============================================
  1613. void setRelay(unsigned char gun_index,unsigned char isOn)
  1614. {
  1615. if(isOn == ON)
  1616. {
  1617. if(ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn == OFF)
  1618. {
  1619. ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn = ON;
  1620. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][0] = 0x01;
  1621. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][1] = 0x01;
  1622. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][2] = 0x01;
  1623. DEBUG_INFO("Gun-%d Output relay sts: ON \n",gun_index);
  1624. }
  1625. }
  1626. else
  1627. {
  1628. if(ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn == ON)
  1629. {
  1630. ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn = OFF;
  1631. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][0] = 0;
  1632. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][1] = 0;
  1633. ShmCharger->gun_info[gun_index].primaryMcuState.relayState.relay_status[0][2] = 0;
  1634. DEBUG_INFO("Gun-%d Output relay sts: OFF \n",gun_index);
  1635. }
  1636. }
  1637. }
  1638. //===============================================
  1639. // Relay on/off get
  1640. //===============================================
  1641. int getRelay(unsigned char gun_index)
  1642. {
  1643. return ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn;
  1644. }
  1645. //===============================================
  1646. // Set speaker on/off request
  1647. //===============================================
  1648. void setSpeaker(unsigned char isOn, unsigned char speaker_mode)
  1649. {
  1650. if(isOn == ON)
  1651. {
  1652. ShmCharger->isSpeakerOn = ON;
  1653. ShmCharger->speaker_type = speaker_mode;
  1654. }
  1655. }
  1656. //===============================================
  1657. // Initialization RFID communication port
  1658. //===============================================
  1659. int InitRfidPort()
  1660. {
  1661. int uartO2 = open(rfidPortName, O_RDWR);
  1662. struct termios tios;
  1663. if (uartO2 != FAIL)
  1664. {
  1665. ioctl (uartO2, TCGETS, &tios);
  1666. tios.c_cflag = B19200 | CS8 | CLOCAL | CREAD;
  1667. tios.c_lflag = 0;
  1668. tios.c_iflag = 0;
  1669. tios.c_oflag = 0;
  1670. tios.c_cc[VMIN] = 0;
  1671. tios.c_cc[VTIME] = (unsigned char) 1;
  1672. tios.c_lflag = 0;
  1673. tcflush(uartO2, TCIFLUSH);
  1674. ioctl(uartO2, TCSETS, &tios);
  1675. }
  1676. if (uartO2 < 0)
  1677. {
  1678. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RfidModuleCommFail = 1;
  1679. }
  1680. return uartO2;
  1681. }
  1682. //===============================================
  1683. // Check internet access status
  1684. //===============================================
  1685. int isReachableInternet()
  1686. {
  1687. int result = FAIL;
  1688. FILE *fp;
  1689. char cmd[256];
  1690. char buf[512];
  1691. char tmp[512];
  1692. strcpy(cmd, "ifconfig eth0");
  1693. fp = popen(cmd, "r");
  1694. if (fp != NULL)
  1695. {
  1696. while(fgets(buf, sizeof(buf), fp) != NULL)
  1697. {
  1698. if (strstr(buf, "inet addr:") > 0)
  1699. {
  1700. sscanf(buf, "%*s%s", tmp);
  1701. substr(tmp, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  1702. if (strcmp(tmp, (char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress) != 0)
  1703. {
  1704. strcpy((char *) ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress, tmp);
  1705. }
  1706. }
  1707. }
  1708. }
  1709. pclose(fp);
  1710. memset(buf, 0x00, sizeof(buf));
  1711. for(int idx=0;idx<ARRAY_SIZE(valid_Internet);idx++)
  1712. {
  1713. sprintf(cmd, "ping -c 1 -w 3 -I eth0 %s", valid_Internet[idx]);
  1714. fp = popen(cmd, "r");
  1715. if(fp != NULL)
  1716. {
  1717. while(fgets(buf, sizeof(buf), fp) != NULL)
  1718. {
  1719. if(strstr(buf, "transmitted") > 0)
  1720. {
  1721. //sscanf(buf, "%*s%*s%*s%*s%*s%*s%s", tmp);
  1722. if(strstr(buf,"100%") != NULL)
  1723. {
  1724. }
  1725. else
  1726. {
  1727. result = PASS;
  1728. }
  1729. //DEBUG_INFO("%s",buf);
  1730. //DEBUG_INFO("%s\n",tmp);
  1731. }
  1732. }
  1733. }
  1734. pclose(fp);
  1735. }
  1736. return result;
  1737. }
  1738. int isRouteFail()
  1739. {
  1740. int result = YES;
  1741. FILE *fp;
  1742. char buf[512];
  1743. fp = popen("route -n", "r");
  1744. if(fp != NULL)
  1745. {
  1746. while(fgets(buf, sizeof(buf), fp) != NULL)
  1747. {
  1748. if(strstr(buf, "eth0") != NULL)
  1749. result = NO;
  1750. }
  1751. }
  1752. pclose(fp);
  1753. return result;
  1754. }
  1755. //===============================================
  1756. // Check reservation date is expired
  1757. //===============================================
  1758. int isReservationExpired(unsigned char gun_index)
  1759. {
  1760. int result = NO;
  1761. struct tm expiredDate;
  1762. struct timeb expiredTime;
  1763. if(sscanf((char*)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%4d-%2d-%2dT%2d:%2d:%2d", &expiredDate.tm_year, &expiredDate.tm_mon, &expiredDate.tm_mday, &expiredDate.tm_hour, &expiredDate.tm_min, &expiredDate.tm_sec) == 6)
  1764. {
  1765. expiredDate.tm_year -= 1900;
  1766. expiredDate.tm_mon -= 1;
  1767. expiredTime.time = mktime(&expiredDate);
  1768. if(DiffTimebWithNow(expiredTime)>=0)
  1769. {
  1770. result = YES;
  1771. }
  1772. }
  1773. else
  1774. {
  1775. DEBUG_WARN("Expired date parsing error.\n");
  1776. DEBUG_INFO("Date expired.\n");
  1777. result = YES;
  1778. }
  1779. return result;
  1780. }
  1781. //===============================================
  1782. // Check charging profile related date routine
  1783. //===============================================
  1784. int isProfileValid(uint8_t gun_index)
  1785. {
  1786. int result = NO;
  1787. struct tm tmFrom, tmTo;
  1788. struct timeb tbFrom, tbTo;
  1789. if((sscanf((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ValidFrom, "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) &&
  1790. (sscanf((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ValidTo, "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6))
  1791. {
  1792. tmFrom.tm_year -= 1900;
  1793. tmFrom.tm_mon -= 1;
  1794. tbFrom.time = mktime(&tmFrom);
  1795. tmTo.tm_year -= 1900;
  1796. tmTo.tm_mon -= 1;
  1797. tbTo.time = mktime(&tmTo);
  1798. DEBUG_INFO("Valid from compare Now: %d\n", DiffTimebWithNow(tbFrom));
  1799. DEBUG_INFO("Valid to compare Now: %d\n", DiffTimebWithNow(tbTo));
  1800. if((DiffTimebWithNow(tbFrom)>=0) && (DiffTimebWithNow(tbTo)<=0))
  1801. {
  1802. result = YES;
  1803. }
  1804. }
  1805. else
  1806. {
  1807. DEBUG_WARN("ValidFrom or ValidTo date parsing error.\n");
  1808. }
  1809. return result;
  1810. }
  1811. int getScheduleStart(int gun_index)
  1812. {
  1813. int result = -1;
  1814. struct tm tmScheduleStart;;
  1815. struct timeb tbScheduleStart;
  1816. if((sscanf((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.StartSchedule, "%4d-%2d-%2dT%2d:%2d:%2d", &tmScheduleStart.tm_year, &tmScheduleStart.tm_mon, &tmScheduleStart.tm_mday, &tmScheduleStart.tm_hour, &tmScheduleStart.tm_min, &tmScheduleStart.tm_sec) == 6))
  1817. {
  1818. tmScheduleStart.tm_year -= 1900;
  1819. tmScheduleStart.tm_mon -= 1;
  1820. tbScheduleStart.time = mktime(&tmScheduleStart);
  1821. tbScheduleStart.millitm = 0;
  1822. result = DiffTimebWithNow(tbScheduleStart)/1000;
  1823. //DEBUG_INFO("Schedule start compare Now(seconds): %d\n", result);
  1824. }
  1825. else
  1826. {
  1827. DEBUG_WARN("Schedule start date parsing error.\n");
  1828. }
  1829. return result;
  1830. }
  1831. int getStartSinceToday()
  1832. {
  1833. int result = -1;
  1834. time_t t;
  1835. struct tm *tmStartToday;
  1836. struct timeb tbStartToday;
  1837. t=time(NULL);
  1838. tmStartToday=localtime(&t);
  1839. tmStartToday->tm_hour = 0;
  1840. tmStartToday->tm_min = 0;
  1841. tmStartToday->tm_sec = 0;
  1842. tbStartToday.time = mktime(tmStartToday);
  1843. result = DiffTimebWithNow(tbStartToday)/1000;
  1844. //DEBUG_INFO("Start today compare Now(seconds): %d\n", result);
  1845. return result;
  1846. }
  1847. int getStartSinceWeek()
  1848. {
  1849. int result = -1;
  1850. time_t t;
  1851. struct tm *tmStartWeek;
  1852. struct timeb tbStartWeek;
  1853. t=time(NULL);
  1854. tmStartWeek=localtime(&t);
  1855. t-=86400*tmStartWeek->tm_wday;
  1856. tmStartWeek=localtime(&t);
  1857. tmStartWeek->tm_hour = 0;
  1858. tmStartWeek->tm_min = 0;
  1859. tmStartWeek->tm_sec = 0;
  1860. tbStartWeek.time = mktime(tmStartWeek);
  1861. result = DiffTimebWithNow(tbStartWeek)/1000;
  1862. //DEBUG_INFO("Start week compare Now(seconds): %d\n", result);
  1863. return result;
  1864. }
  1865. //===============================================
  1866. // Valid from local white list
  1867. //===============================================
  1868. int isValidLocalWhiteCard()
  1869. {
  1870. uint8_t result = FAIL;
  1871. for(uint8_t idx=0;idx<ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.LocalWhiteCard);idx++)
  1872. {
  1873. if(strcmp((char*)ShmSysConfigAndInfo->SysConfig.UserId, (char*)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[idx]) == 0)
  1874. {
  1875. result = PASS;
  1876. }
  1877. }
  1878. return result;
  1879. }
  1880. //==========================================
  1881. // Get Ethernet MAC address
  1882. //==========================================
  1883. int getEth0MacAddress()
  1884. {
  1885. int result = PASS;
  1886. FILE *fp;
  1887. char cmd[256];
  1888. char buf[512];
  1889. char tmp[512];
  1890. strcpy(cmd, "ifconfig eth0");
  1891. fp = popen(cmd, "r");
  1892. if(fp != NULL)
  1893. {
  1894. while(fgets(buf, sizeof(buf), fp) != NULL)
  1895. {
  1896. if(strstr(buf, "eth0") > 0)
  1897. {
  1898. result = PASS;
  1899. }
  1900. if(strstr(buf, "eth0 Link encap:Ethernet HWaddr") > 0)
  1901. {
  1902. sscanf(buf, "%*s%*s%*s%*s%s", tmp);
  1903. strcpy((char*)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress, tmp);
  1904. }
  1905. }
  1906. }
  1907. pclose(fp);
  1908. return result;
  1909. }
  1910. //==========================================
  1911. // Check task processing
  1912. //==========================================
  1913. void checkTask()
  1914. {
  1915. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'T') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  1916. {
  1917. if(system("pidof -s Module_4g > /dev/null") != 0)
  1918. {
  1919. DEBUG_INFO("Module_4g not running, restart it.\n");
  1920. system("/root/Module_4g &");
  1921. }
  1922. }
  1923. if((ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[10] == 'D'))
  1924. {
  1925. if(system("pidof -s Module_Wifi > /dev/null") != 0)
  1926. {
  1927. DEBUG_INFO("Module_Wifi not running, restart it.\n");
  1928. system("/root/Module_Wifi &");
  1929. }
  1930. }
  1931. if(system("pidof -s Module_EventLogging > /dev/null") != 0)
  1932. {
  1933. DEBUG_INFO("Module_EventLogging not running, restart it.\n");
  1934. system("/root/Module_EventLogging &");
  1935. }
  1936. if(strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0)
  1937. {
  1938. if(system("pidof -s OcppBackend > /dev/null") != 0)
  1939. {
  1940. DEBUG_INFO("OcppBackend not running, restart it.\n");
  1941. system("/root/OcppBackend &");
  1942. }
  1943. }
  1944. if(system("pidof -s Module_AlarmDetect > /dev/null") != 0)
  1945. {
  1946. DEBUG_INFO("Module_AlarmDetect not running, restart it.\n");
  1947. system("/root/Module_AlarmDetect &");
  1948. }
  1949. if(system("pidof -s Module_InternalComm > /dev/null") != 0)
  1950. {
  1951. DEBUG_INFO("Module_InternalComm not running, restart it.\n");
  1952. system("/root/Module_InternalComm &");
  1953. }
  1954. if(system("pidof -s Module_Speaker > /dev/null") != 0)
  1955. {
  1956. DEBUG_INFO("Module_Speaker not running, restart it.\n");
  1957. system("/root/Module_Speaker &");
  1958. }
  1959. if(system("pidof -s Module_ProduceUtils > /dev/null") != 0)
  1960. {
  1961. DEBUG_INFO("Module_ProduceUtils not running, restart it.\n");
  1962. system ("/root/Module_ProduceUtils &");
  1963. }
  1964. if(system("pidof -s Module_LcmControl > /dev/null") != 0)
  1965. {
  1966. DEBUG_INFO("Module_LcmControl not running, restart it.\n");
  1967. system ("/root/Module_LcmControl &");
  1968. }
  1969. }
  1970. //===============================================
  1971. // Check Connection Timeout
  1972. //===============================================
  1973. void checkConnectionTimeout()
  1974. {
  1975. if(system("pidof -s OcppBackend > /dev/null") != 0)
  1976. {
  1977. ShmCharger->timeoutSpec.Present_Timeout_Spec = TIMEOUT_SPEC_HANDSHAKING;
  1978. //DEBUG_INFO("Handshaking timeout specification follow by initial setting : %d s \n", TIMEOUT_SPEC_HANDSHAKING/1000);
  1979. }
  1980. else
  1981. {
  1982. if(strcmp((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData,"") != 0)
  1983. {
  1984. ShmCharger->timeoutSpec.Setting_Timeout_Spec = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  1985. if((ShmCharger->timeoutSpec.Setting_Timeout_Spec*1000) < TIMEOUT_SPEC_BS_HLC_HANDSHAKE)
  1986. {
  1987. ShmCharger->timeoutSpec.Present_Timeout_Spec = (TIMEOUT_SPEC_BS_HLC_HANDSHAKE+10000);
  1988. //DEBUG_INFO("Handshaking timeout specification follow by OCPP Configuration : Fail. Value can't be zero or less than zero.\n.");
  1989. }
  1990. else
  1991. {
  1992. ShmCharger->timeoutSpec.Present_Timeout_Spec = (ShmCharger->timeoutSpec.Setting_Timeout_Spec*1000);
  1993. //DEBUG_INFO("Handshaking timeout specification follow by OCPP Configuration : Pass...\n.");
  1994. }
  1995. //DEBUG_INFO("Handshaking timeout specification follow by OCPP Configuration : %s s \n.",ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  1996. }
  1997. else
  1998. {
  1999. ShmCharger->timeoutSpec.Present_Timeout_Spec = TIMEOUT_SPEC_HANDSHAKING;
  2000. //DEBUG_INFO("Handshaking timeout specification follow by OCPP Configuration : Fail. Table is blank...\n.");
  2001. }
  2002. //DEBUG_INFO("Present timeout spec : %d \n", ShmCharger->timeoutSpec.Present_Timeout_Spec);
  2003. }
  2004. }
  2005. //===============================================
  2006. // Main process
  2007. //===============================================
  2008. int main(void)
  2009. {
  2010. //Create all share memory
  2011. if(CreatShareMemory()==0)
  2012. {
  2013. DEBUG_ERROR("CreatShareMemory NG\n");
  2014. if(ShmStatusCodeData!=NULL)
  2015. {
  2016. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  2017. }
  2018. sleep(5);
  2019. system("reboot -f");
  2020. sleep(5);
  2021. system("reboot -f");
  2022. }
  2023. else
  2024. {
  2025. DEBUG_INFO("CreatShareMemory OK\n");
  2026. }
  2027. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  2028. {
  2029. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus = 0xff;
  2030. ShmCharger->gun_info[gun_index].primaryMcuState.rotatory_switch = 0xff;
  2031. ShmCharger->gun_info[gun_index].mcuResetRequest.isMcuResetRequest = ON;
  2032. ShmCharger->gun_info[gun_index].isInitialPass = NO;
  2033. ShmCharger->gun_info[gun_index].isSetBreatheLedTiming = OFF;
  2034. ShmCharger->gun_info[gun_index].isSetLedBrightness = OFF;
  2035. }
  2036. // Main loop
  2037. for(;;)
  2038. {
  2039. //==========================================
  2040. // Synchronize share memory from OCPP struct
  2041. //==========================================
  2042. ShmSysConfigAndInfo->SysInfo.OcppConnStatus = ShmOCPP16Data->OcppConnStatus;
  2043. //==========================================
  2044. // Ethernet MAC address
  2045. //==========================================
  2046. getEth0MacAddress();
  2047. //==========================================
  2048. // Check task processing
  2049. //==========================================
  2050. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus != SYS_MODE_BOOTING)
  2051. checkTask();
  2052. //==========================================
  2053. // Check connection timeout specification
  2054. //==========================================
  2055. checkConnectionTimeout();
  2056. //==========================================
  2057. // Something need run in Idle mode
  2058. //==========================================
  2059. if(((ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus==SYS_MODE_IDLE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus==SYS_MODE_ALARM)) &&
  2060. (AC_QUANTITY>1?((ShmSysConfigAndInfo->SysInfo.AcChargingData[1].SystemStatus==SYS_MODE_IDLE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[1].SystemStatus==SYS_MODE_ALARM)):true))
  2061. {
  2062. //======================================
  2063. // Check restore factory setting request
  2064. //======================================
  2065. if(ShmSysConfigAndInfo->SysInfo.FactoryConfiguration)
  2066. {
  2067. // Set led to initial
  2068. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  2069. {
  2070. setLedMotion(gun_index,LED_ACTION_INIT);
  2071. }
  2072. system("cd /root;./Module_FactoryConfig -m");
  2073. system("rm -f /Storage/OCPP/OCPPConfiguration");
  2074. system("sync");
  2075. sleep(5);
  2076. system("reboot -f");
  2077. sleep(5);
  2078. system("reboot -f");
  2079. }
  2080. //======================================
  2081. // Check upgrade firmware request
  2082. //======================================
  2083. if(ShmSysConfigAndInfo->SysInfo.FirmwareUpdate ||
  2084. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq)
  2085. {
  2086. // If available memory too small, free memory cache first
  2087. if(getAvailableMemory() < (200*1024*1024))
  2088. {
  2089. DEBUG_INFO("Available memory (%.2f Bytes) less than 200 MBytes, free cache first.\n", getAvailableMemory()/(1024*1024.0));
  2090. system("echo 3 > /proc/sys/vm/drop_caches");
  2091. }
  2092. ShmCharger->isUpdateSuccess = NO;
  2093. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  2094. {
  2095. setLedMotion(gun_index,LED_ACTION_MAINTAIN);
  2096. setChargerMode(gun_index, SYS_MODE_UPDATE);
  2097. }
  2098. }
  2099. }
  2100. //==========================================
  2101. // Check remote reset request
  2102. //==========================================
  2103. if(ShmOCPP16Data->MsMsg.bits.ResetReq)
  2104. {
  2105. if((!isMode(0, SYS_MODE_CHARGING) && !isMode(0, SYS_MODE_TERMINATING) && !isMode(0, SYS_MODE_COMPLETE)) &&
  2106. (AC_QUANTITY>1?(!isMode(1, SYS_MODE_CHARGING) && !isMode(1, SYS_MODE_TERMINATING) && !isMode(0, SYS_MODE_COMPLETE)):true))
  2107. {
  2108. ShmOCPP16Data->MsMsg.bits.ResetReq = OFF;
  2109. sprintf((char*)ShmOCPP16Data->Reset.ResponseStatus, "Accepted");
  2110. ShmOCPP16Data->MsMsg.bits.ResetConf = ON;
  2111. if(strcmp((char*)ShmOCPP16Data->Reset.Type, "Hard") == 0)
  2112. {
  2113. system("sync");
  2114. sleep(5);
  2115. system("reboot -f");
  2116. sleep(5);
  2117. system("reboot -f");
  2118. }
  2119. else
  2120. {
  2121. sleep(5);
  2122. close(wtdFd);
  2123. system("/usr/bin/run_evse_restart.sh");
  2124. }
  2125. }
  2126. }
  2127. //==========================================
  2128. // Check RFID
  2129. //==========================================
  2130. if(!ShmCharger->gun_info[ShmCharger->gun_selectd].rfidReq)
  2131. {
  2132. if(GetCardSerialNumber()!= FAIL)
  2133. {
  2134. ShmCharger->gun_info[ShmCharger->gun_selectd].rfidReq = ON;
  2135. }
  2136. }
  2137. //==========================================
  2138. // Connector loop
  2139. //==========================================
  2140. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  2141. {
  2142. //==========================================
  2143. // Power saving logic
  2144. //==========================================
  2145. /*
  2146. * TODO:
  2147. * 1. Power saving logic
  2148. */
  2149. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD]) > TIMEOUT_SPEC_POWERSAVING_LCD)
  2150. {
  2151. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD]) < (TIMEOUT_SPEC_POWERSAVING_LCD+600))
  2152. DEBUG_INFO("LCD into power saving...%d\n", DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD]));
  2153. }
  2154. else
  2155. {
  2156. if((0 < DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD])) && (DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD]) < 600))
  2157. DEBUG_INFO("LCD exit power saving...%d\n", DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_LCD]));
  2158. }
  2159. if(DiffTimebWithNow(startTime[ShmCharger->gun_selectd][TMR_IDX_POWERSAVING_RFID]) > TIMEOUT_SPEC_POWERSAVING_RFID)
  2160. {
  2161. if(gpio_get_value(GPIO_OUT_RST_RFID) == ON)
  2162. {
  2163. DEBUG_INFO("RFID into power saving...%d\n", DiffTimebWithNow(startTime[ShmCharger->gun_selectd][TMR_IDX_POWERSAVING_RFID]));
  2164. gpio_set_value(GPIO_OUT_RST_RFID, OFF);
  2165. }
  2166. }
  2167. else
  2168. {
  2169. if(gpio_get_value(GPIO_OUT_RST_RFID) == OFF)
  2170. {
  2171. DEBUG_INFO("RFID exit power saving...%d\n", DiffTimebWithNow(startTime[ShmCharger->gun_selectd][TMR_IDX_POWERSAVING_RFID]));
  2172. gpio_set_value(GPIO_OUT_RST_RFID, ON);
  2173. }
  2174. }
  2175. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_METER]) > TIMEOUT_SPEC_POWERSAVING_METER)
  2176. {
  2177. if(ShmCharger->gun_info[gun_index].isMeterOn )
  2178. {
  2179. DEBUG_INFO("Meter into power saving...%d\n", DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_METER]));
  2180. ShmCharger->gun_info[gun_index].isMeterOn = OFF;
  2181. }
  2182. }
  2183. else
  2184. {
  2185. if(!ShmCharger->gun_info[gun_index].isMeterOn )
  2186. {
  2187. DEBUG_INFO("Meter exit power saving...%d\n", DiffTimebWithNow(startTime[gun_index][TMR_IDX_POWERSAVING_METER]));
  2188. ShmCharger->gun_info[gun_index].isMeterOn = ON;
  2189. }
  2190. }
  2191. // Synchronize current rating value from MCU
  2192. ShmSysConfigAndInfo->SysConfig.RatingCurrent = ShmCharger->gun_info[gun_index].primaryMcuState.rating_current;
  2193. // Assign connector location index for OCPP
  2194. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].Index = gun_index;
  2195. // Synchronize present charging power
  2196. if(ShmCharger->gun_info[gun_index].primaryMcuState.relay_state == ON)
  2197. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingPower = (ShmSysConfigAndInfo->SysInfo.InputVoltageR* ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingCurrent)/1000;
  2198. else
  2199. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingPower = 0;
  2200. // The system switch to Booting mode
  2201. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus == 0XFF)
  2202. {
  2203. setChargerMode(gun_index, SYS_MODE_BOOTING);
  2204. }
  2205. // Check initialization "PASS" or "FAIL"
  2206. if(ShmCharger->gun_info[gun_index].isInitialPass == YES)
  2207. {
  2208. // Alarm event check
  2209. if((ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode>0))
  2210. {
  2211. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus != SYS_MODE_ALARM)
  2212. {
  2213. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus == SYS_MODE_UPDATE)
  2214. {
  2215. }
  2216. else
  2217. {
  2218. setChargerMode(gun_index, SYS_MODE_ALARM);
  2219. }
  2220. }
  2221. }
  2222. else
  2223. {
  2224. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus == SYS_MODE_ALARM)
  2225. {
  2226. }
  2227. }
  2228. }
  2229. // Reservation request check
  2230. if(ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowReq)
  2231. {
  2232. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowReq = OFF;
  2233. if(isMode(gun_index, SYS_MODE_IDLE) && !isReservationExpired(gun_index))
  2234. {
  2235. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].ReservationId = ShmOCPP16Data->ReserveNow[gun_index].ReservationId;
  2236. setChargerMode(gun_index, SYS_MODE_RESERVATION);
  2237. }
  2238. DEBUG_INFO("Reservation request on connector-%d.\n", gun_index);
  2239. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = ON;
  2240. }
  2241. // Change availability check
  2242. if(ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityReq)
  2243. {
  2244. if(strcmp((char*)ShmOCPP16Data->ChangeAvailability[gun_index].Type, "Operative") == 0)
  2245. {
  2246. DB_Update_Operactive(localDb, gun_index, true);
  2247. ShmCharger->gun_info[gun_index].isOperactive = DB_Get_Operactive(localDb, gun_index);
  2248. }
  2249. else
  2250. {
  2251. DB_Update_Operactive(localDb, gun_index, false);
  2252. ShmCharger->gun_info[gun_index].isOperactive = DB_Get_Operactive(localDb, gun_index);
  2253. }
  2254. ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityReq = OFF;
  2255. }
  2256. if(ShmCharger->gun_info[gun_index].isOperactive)
  2257. {
  2258. if(isMode(gun_index, SYS_MODE_MAINTAIN))
  2259. {
  2260. setChargerMode(gun_index, SYS_MODE_IDLE);
  2261. }
  2262. }
  2263. else
  2264. {
  2265. if(isMode(gun_index, SYS_MODE_IDLE))
  2266. {
  2267. setChargerMode(gun_index, SYS_MODE_MAINTAIN);
  2268. }
  2269. }
  2270. // Unlock Connector signal check
  2271. if(ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorReq == ON)
  2272. {
  2273. ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorReq = OFF;
  2274. sprintf((char*)ShmOCPP16Data->UnlockConnector[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].ResponseStatus, "NotSupported");
  2275. ShmOCPP16Data->CsMsg.bits[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].UnlockConnectorConf = ON;
  2276. ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor = ON;
  2277. }
  2278. // Connector process
  2279. switch(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].SystemStatus)
  2280. {
  2281. case SYS_MODE_BOOTING:
  2282. if(isModeChange(gun_index))
  2283. {
  2284. setLedMotion(gun_index,LED_ACTION_INIT);
  2285. //CSU Initialization & task spawn
  2286. if((Initialization() != PASS) ||
  2287. (SpawnTask() != PASS))
  2288. {
  2289. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = ON;
  2290. }
  2291. ftime(&startTime[gun_index][TMR_IDX_POWERSAVING_LCD]);
  2292. ftime(&startTime[gun_index][TMR_IDX_POWERSAVING_RFID]);
  2293. ftime(&startTime[gun_index][TMR_IDX_POWERSAVING_METER]);
  2294. }
  2295. if(ShmCharger->gun_info[gun_index].mcuFlag.isReadFwVerPass &&
  2296. ShmCharger->gun_info[gun_index].mcuFlag.isSetModelNamePass &&
  2297. ShmCharger->gun_info[gun_index].mcuFlag.isSetSerialNumberPass)
  2298. {
  2299. ShmCharger->gun_selectd = 0;
  2300. // Firmware version
  2301. get_firmware_version(gun_index);
  2302. // OCPP BootNotification info set
  2303. memcpy((char*)ShmOCPP16Data->OcppServerURL, (char*)ShmSysConfigAndInfo->SysConfig.OcppServerURL, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.OcppServerURL));
  2304. memcpy((char*)ShmOCPP16Data->ChargeBoxId, (char*)ShmSysConfigAndInfo->SysConfig.ChargeBoxId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ChargeBoxId));
  2305. sprintf((char*)ShmOCPP16Data->BootNotification.CpFwVersion, (char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  2306. sprintf((char*)ShmOCPP16Data->BootNotification.CpMeterSerialNumber, "N/A");
  2307. sprintf((char*)ShmOCPP16Data->BootNotification.CpMeterType, "AC");
  2308. DEBUG_INFO("==========================================\n");
  2309. DEBUG_INFO("System ID: %s\n",ShmSysConfigAndInfo->SysConfig.SystemId);
  2310. DEBUG_INFO("==========================================\n");
  2311. DEBUG_INFO("=== OCPP BootNotification information ====\n");
  2312. DEBUG_INFO("OcppServerURL: %s\n",ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  2313. DEBUG_INFO("ChargeBoxId: %s\n",ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  2314. DEBUG_INFO("ChargePointVendor: %s\n",ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  2315. DEBUG_INFO("CpFwVersion: %s\n",ShmOCPP16Data->BootNotification.CpFwVersion);
  2316. DEBUG_INFO("CpMeterSerialNumber: %s\n",ShmOCPP16Data->BootNotification.CpMeterSerialNumber);
  2317. DEBUG_INFO("CpMeterType: %s\n",ShmOCPP16Data->BootNotification.CpMeterType);
  2318. DEBUG_INFO("==========================================\n");
  2319. DEBUG_INFO("========== Set Wifi information ==========\n");
  2320. DEBUG_INFO("Wifi mode: %d\n", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  2321. DEBUG_INFO("Wifi SSID: %s\n", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  2322. DEBUG_INFO("Wifi password: %s\n", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  2323. DEBUG_INFO("==========================================\n");
  2324. // Flag for initialization system success
  2325. ShmCharger->gun_info[gun_index].isInitialPass = YES;
  2326. // Set max current to rating current
  2327. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ShmCharger->gun_info[gun_index].primaryMcuState.rating_current;
  2328. // Default Ethernet / Wifi / 4G to 1:disconnected
  2329. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet = ON;
  2330. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi = ON;
  2331. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi = ON;
  2332. // If Web Server OPCC URL is empty kill Module_OcppBackend
  2333. if(strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") == 0)
  2334. {
  2335. DEBUG_INFO("URL is empty kill Module_OcppBackend...\n");
  2336. system ("pkill OcppBackend");
  2337. }
  2338. // If rotate switch equal zero, the system needs to change Debug mode
  2339. if(ShmCharger->gun_info[gun_index].primaryMcuState.rotatory_switch == 0)
  2340. setChargerMode(gun_index, SYS_MODE_DEBUG);
  2341. else
  2342. setChargerMode(gun_index, SYS_MODE_IDLE);
  2343. ShmSysConfigAndInfo->SysConfig.AcPhaseCount = ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') ||
  2344. (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D') ||
  2345. (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W')
  2346. ?3:1);
  2347. }
  2348. break;
  2349. case SYS_MODE_IDLE:
  2350. if(isModeChange(gun_index))
  2351. {
  2352. setLedMotion(gun_index,LED_ACTION_IDLE);
  2353. setRelay(gun_index, OFF);
  2354. setRequest(gun_index,OFF);
  2355. ShmCharger->gun_info[gun_index].isGunPlugged = NO;
  2356. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2357. ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart = OFF;
  2358. ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop = OFF;
  2359. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = OFF;
  2360. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = OFF;
  2361. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode = 0x00;
  2362. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration = 0;
  2363. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy = 0;
  2364. ShmCharger->gun_info[gun_index].targetCurrent = 0xFF;
  2365. ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor = OFF;
  2366. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].ReservationId = -1;
  2367. // Response StopTransactionConf
  2368. if(ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf == ON)
  2369. {
  2370. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = OFF;
  2371. }
  2372. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_IDLE;
  2373. ShmCharger->gun_info[gun_index].chargingMode = CHARGING_MODE_BS;
  2374. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_100;
  2375. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2376. ShmCharger->gun_info[gun_index].isDoEvReadyOnce = OFF;
  2377. if(ShmCharger->isCcsEnable)system("pkill Module_CCS");
  2378. }
  2379. if(((ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_B)) ||
  2380. ((ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C)) ||
  2381. (ShmCharger->gun_info[gun_index].rfidReq == ON) ||
  2382. (ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart == ON) ||
  2383. (ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq == ON) ||
  2384. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStart == ON))
  2385. {
  2386. // Clean User id & Card Number
  2387. memset(ShmSysConfigAndInfo->SysConfig.UserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  2388. if((ShmCharger->gun_info[gun_index].rfidReq == ON))
  2389. {
  2390. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_RFID;
  2391. DEBUG_INFO("Start Method : RFID...\n");
  2392. if(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian)
  2393. {
  2394. // Big endian
  2395. switch(rfid.snType)
  2396. {
  2397. case RFID_SN_TYPE_6BYTE:
  2398. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5]);
  2399. break;
  2400. case RFID_SN_TYPE_7BYTE:
  2401. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6]);
  2402. break;
  2403. case RFID_SN_TYPE_10BYTE:
  2404. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6], rfid.currentCard[7], rfid.currentCard[8], rfid.currentCard[9]);
  2405. break;
  2406. case RFID_SN_TYPE_4BYTE:
  2407. default:
  2408. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3]);
  2409. break;
  2410. }
  2411. }
  2412. else
  2413. {
  2414. // Little endian
  2415. switch(rfid.snType)
  2416. {
  2417. case RFID_SN_TYPE_6BYTE:
  2418. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2419. break;
  2420. case RFID_SN_TYPE_7BYTE:
  2421. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2422. break;
  2423. case RFID_SN_TYPE_10BYTE:
  2424. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[9], rfid.currentCard[8], rfid.currentCard[7], rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2425. break;
  2426. case RFID_SN_TYPE_4BYTE:
  2427. default:
  2428. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2429. break;
  2430. }
  2431. }
  2432. DEBUG_INFO("Start request User Id : %s\n", ShmSysConfigAndInfo->SysConfig.UserId);
  2433. }
  2434. else if(ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq)
  2435. {
  2436. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_BACKEND;
  2437. memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag, ARRAY_SIZE(ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag));
  2438. DEBUG_INFO("Start Method : BACKEND...\n");
  2439. }
  2440. else if(ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart == ON)
  2441. {
  2442. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_BLE;
  2443. memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmCharger->gun_info[gun_index].bleLoginCentralId.id, ARRAY_SIZE(ShmCharger->gun_info[gun_index].bleLoginCentralId.id));
  2444. DEBUG_INFO("Start Method : BLE...\n");
  2445. }
  2446. else
  2447. {
  2448. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_FREE;
  2449. memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmSysConfigAndInfo->SysConfig.SerialNumber, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
  2450. DEBUG_INFO("Start Method : FREE...\n");
  2451. }
  2452. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2453. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = OFF;
  2454. ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart = OFF;
  2455. ShmCharger->gun_info[gun_index].isGunPlugged = NO;
  2456. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStart = OFF;
  2457. setChargerMode(gun_index, SYS_MODE_AUTHORIZING);
  2458. }
  2459. else
  2460. {}
  2461. break;
  2462. case SYS_MODE_AUTHORIZING:
  2463. if(isModeChange(gun_index))
  2464. {
  2465. ftime(&startTime[gun_index][TMR_IDX_AUTH]);
  2466. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_RFID)
  2467. {
  2468. memset(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, 0x00, ARRAY_SIZE(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status));
  2469. switch(ShmSysConfigAndInfo->SysConfig.AuthorisationMode)
  2470. {
  2471. case AUTH_MODE_ENABLE:
  2472. if(ShmOCPP16Data->OcppConnStatus)
  2473. {
  2474. // On line
  2475. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  2476. setLedMotion(gun_index,LED_ACTION_AUTHED);
  2477. }
  2478. else
  2479. {
  2480. // Off line
  2481. switch(ShmSysConfigAndInfo->SysConfig.OfflinePolicy)
  2482. {
  2483. case OFF_POLICY_LOCALLIST:
  2484. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  2485. break;
  2486. case OFF_POLICY_PH_RFID:
  2487. break;
  2488. case OFF_POLICY_FREE:
  2489. break;
  2490. case OFF_POLICY_NOCHARGE:
  2491. default:
  2492. break;
  2493. }
  2494. }
  2495. break;
  2496. case AUTH_MODE_DISABLE:
  2497. default:
  2498. break;
  2499. }
  2500. }
  2501. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = YES;
  2502. if(ShmCharger->isCcsEnable)system("/root/Module_CCS &");
  2503. }
  2504. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_AUTH]) > TIMEOUT_SPEC_AUTH)
  2505. {
  2506. // Authorization timeout process.
  2507. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2508. setChargerMode(gun_index, SYS_MODE_IDLE);
  2509. DEBUG_WARN("Authorize timeout !!!\n");
  2510. }
  2511. else
  2512. {
  2513. switch(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod)
  2514. {
  2515. case START_METHOD_RFID:
  2516. if((ShmOCPP16Data->SpMsg.bits.AuthorizeConf) ||
  2517. (!ShmOCPP16Data->OcppConnStatus && ((ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE) || ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_NOCHARGE)) ||
  2518. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST) && (strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") == 0)) )
  2519. {
  2520. if((strcmp((char*)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Accepted")==0) ||
  2521. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE)) ||
  2522. (!ShmOCPP16Data->OcppConnStatus && (isValidLocalWhiteCard() == PASS) && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST)))
  2523. {
  2524. memcpy((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ShmSysConfigAndInfo->SysConfig.UserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  2525. DEBUG_INFO("Authorize pass.\n");
  2526. setSpeaker(ON,SPEAKER_SHORT);
  2527. setLedMotion(gun_index,LED_ACTION_RFID_PASS);
  2528. sleep(3);
  2529. setChargerMode(gun_index, SYS_MODE_PREPARING);
  2530. }
  2531. else
  2532. {
  2533. DEBUG_INFO("Authorize fail.\n");
  2534. setSpeaker(ON,SPEAKER_INTERVAL_3COUNT);
  2535. setLedMotion(gun_index,LED_ACTION_RFID_FAIL);
  2536. sleep(3);
  2537. setChargerMode(gun_index, SYS_MODE_IDLE);
  2538. }
  2539. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2540. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = OFF;
  2541. }
  2542. break;
  2543. case START_METHOD_BACKEND:
  2544. case START_METHOD_BLE:
  2545. case START_METHOD_FREE:
  2546. default:
  2547. setSpeaker(ON,SPEAKER_SHORT);
  2548. setChargerMode(gun_index, SYS_MODE_PREPARING);
  2549. break;
  2550. }
  2551. }
  2552. break;
  2553. case SYS_MODE_PREPARING:
  2554. if(isModeChange(gun_index))
  2555. {
  2556. ftime(&startTime[gun_index][TMR_IDX_HANDSHAKING]);
  2557. setLedMotion(gun_index,LED_ACTION_AUTHED);
  2558. if(ShmCharger->isCcsEnable)
  2559. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_DUTY_5;
  2560. else
  2561. {
  2562. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_CP_STATE_E;
  2563. ShmCharger->gun_info[gun_index].chargingMode = CHARGING_MODE_BS;
  2564. setRequest(gun_index, ON);
  2565. }
  2566. }
  2567. // If control pilot detect Bx, skip watch dog time out.
  2568. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_B) ||
  2569. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C))
  2570. {
  2571. ShmCharger->gun_info[gun_index].isGunPlugged = YES;
  2572. switch(ShmCharger->gun_info[gun_index].ccsHandshakeState)
  2573. {
  2574. case HANDSHAKE_DUTY_5:
  2575. if(!getRequest(gun_index))
  2576. {
  2577. setRequest(gun_index, ON);
  2578. setLedMotion(gun_index,LED_ACTION_CONNECTED);
  2579. ftime(&startTime[gun_index][TMR_IDX_HANDSHAKING]);
  2580. DEBUG_INFO("Set Request On.\n");
  2581. //Let CCS task start to negotiate
  2582. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = ON;
  2583. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_NONE;
  2584. }
  2585. // Set CCS 5% PWM duty
  2586. if(ShmCharger->gun_info[gun_index].acCcsInfo.CpSetPWMDuty == CCS_PWM_DUTY_5)
  2587. {
  2588. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_5;
  2589. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_DUTY_5_CHECK;
  2590. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2591. }
  2592. break;
  2593. case HANDSHAKE_DUTY_5_CHECK:
  2594. if((ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF))
  2595. {
  2596. //2 secs timeout
  2597. ftime(&startTime[gun_index][TMR_IDX_BS_HLC_HANDSHAKE]);
  2598. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_CCS;
  2599. }
  2600. break;
  2601. case HANDSHAKE_CCS:
  2602. //CCS handshake timeout
  2603. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_BS_HLC_HANDSHAKE]) > TIMEOUT_SPEC_BS_HLC_HANDSHAKE)
  2604. {
  2605. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  2606. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  2607. DEBUG_INFO("BS/HLC %d secs handshake timeout.\n", (TIMEOUT_SPEC_BS_HLC_HANDSHAKE/1000));
  2608. }
  2609. if((ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission == OFF) && (ShmCharger->gun_info[gun_index].acCcsInfo.CpSetPWMDuty != CCS_PWM_DUTY_5))
  2610. {
  2611. DEBUG_INFO("Wait CCS give up negotiagting.\n");
  2612. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_CP_STATE_F;
  2613. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2614. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_CP_STATE_E;
  2615. ShmCharger->gun_info[gun_index].chargingMode = CHARGING_MODE_BS;
  2616. }
  2617. //CCS status check
  2618. if((16 < ShmCharger->gun_info[gun_index].acCcsInfo.PresentMsgFlowStatus) && (ShmCharger->gun_info[gun_index].acCcsInfo.PresentMsgFlowStatus < 254))
  2619. {
  2620. ShmCharger->gun_info[gun_index].chargingMode = CHARGING_MODE_HLC;
  2621. DEBUG_INFO("Enter HLC Mode charging.\n");
  2622. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_HLC_MODE;
  2623. ftime(&startTime[gun_index][TMR_IDX_HANDSHAKING]);
  2624. }
  2625. break;
  2626. case HANDSHAKE_CP_STATE_E:
  2627. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF)
  2628. {
  2629. if(ShmCharger->isCcsEnable)
  2630. {
  2631. DEBUG_INFO("Change to CP STATE E for 4 secs.\n");
  2632. //CP STATE E for 4 secs
  2633. sleep(4);
  2634. }
  2635. //restore normal CP PWM duty
  2636. // Determine max charging current to MCU
  2637. DEBUG_INFO("Determine max charging current to MCU.\n");
  2638. if(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent == 0)
  2639. {
  2640. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  2641. if(ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current)
  2642. {
  2643. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  2644. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2645. }
  2646. }
  2647. else
  2648. {
  2649. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  2650. if(ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current)
  2651. {
  2652. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  2653. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2654. }
  2655. }
  2656. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2657. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_SET_MAX_CURRENT;
  2658. ftime(&startTime[gun_index][TMR_IDX_BS_HLC_HANDSHAKE]);
  2659. }
  2660. break;
  2661. case HANDSHAKE_SET_MAX_CURRENT:
  2662. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF)
  2663. {
  2664. ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_BS_MODE;
  2665. DEBUG_INFO("Enter BS Mode charging.\n");
  2666. //for EV READY 30 secs didn't start charging to STATE E
  2667. ftime(&startTime[gun_index][TMR_IDX_HANDSHAKING]);
  2668. }
  2669. break;
  2670. case HANDSHAKE_BS_MODE:
  2671. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C)
  2672. setRelay(gun_index,ON);
  2673. if((ShmCharger->gun_info[gun_index].primaryMcuState.relay_state == ON))
  2674. {
  2675. ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor = OFF;
  2676. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy = 0;
  2677. getDateTimeString((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartDateTime);
  2678. ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption;
  2679. ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption;
  2680. ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption;
  2681. ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption;
  2682. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount==1)
  2683. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption = (ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption/100);
  2684. else
  2685. {
  2686. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[0] = (ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption/100);
  2687. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[1] = (ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption/100);
  2688. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[2] = (ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption/100);
  2689. }
  2690. memcpy((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ShmSysConfigAndInfo->SysConfig.UserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  2691. memcpy((char*)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ARRAY_SIZE(ShmOCPP16Data->StartTransaction[gun_index].IdTag));
  2692. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = ON;
  2693. setChargerMode(gun_index, SYS_MODE_CHARGING);
  2694. }
  2695. //EV READY CHECK
  2696. /*
  2697. if((DiffTimebWithNow(startTime[gun_index][TMR_IDX_BS_HLC_HANDSHAKE]) > TIMEOUT_SPEC_EV_READY) && (ShmCharger->gun_info[gun_index].isEvReady2StateE == OFF))
  2698. {
  2699. if(ShmCharger->gun_info[gun_index].isDoEvReadyOnce == OFF)
  2700. {
  2701. DEBUG_INFO("EV READY STATE E 4sec.\n");
  2702. ShmCharger->gun_info[gun_index].isEvReady2StateE = ON;
  2703. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_CP_STATE_E;
  2704. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2705. ShmCharger->gun_info[gun_index].evReadyState = EV_READY_STAT_E;
  2706. }
  2707. }
  2708. if(ShmCharger->gun_info[gun_index].isEvReady2StateE == ON)
  2709. {
  2710. switch(ShmCharger->gun_info[gun_index].evReadyState)
  2711. {
  2712. case EV_READY_STAT_E:
  2713. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF)
  2714. {
  2715. sleep(4);
  2716. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_100;
  2717. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2718. ShmCharger->gun_info[gun_index].evReadyState = EV_READY_STAT_C;
  2719. }
  2720. break;
  2721. case EV_READY_STAT_C:
  2722. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF)
  2723. {
  2724. usleep(500000);
  2725. DEBUG_INFO("EV READY Determine max charging current to MCU.\n");
  2726. if(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent == 0)
  2727. {
  2728. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  2729. if(ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current)
  2730. {
  2731. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  2732. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2733. }
  2734. }
  2735. else
  2736. {
  2737. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  2738. if(ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current)
  2739. {
  2740. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  2741. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2742. }
  2743. }
  2744. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2745. ShmCharger->gun_info[gun_index].evReadyState = EV_READY_SET_MAX_CURRENT;
  2746. }
  2747. break;
  2748. case EV_READY_SET_MAX_CURRENT:
  2749. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == OFF)
  2750. {
  2751. ShmCharger->gun_info[gun_index].isEvReady2StateE = OFF;
  2752. ShmCharger->gun_info[gun_index].isDoEvReadyOnce = ON;
  2753. }
  2754. break;
  2755. default:
  2756. break;
  2757. }
  2758. }*/
  2759. break;
  2760. case HANDSHAKE_HLC_MODE:
  2761. if(ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_START_MODE)
  2762. {
  2763. setRelay(gun_index,ON);
  2764. ShmCharger->gun_info[gun_index].isCCSStartTransation = ON;
  2765. }
  2766. if((ShmCharger->gun_info[gun_index].primaryMcuState.relay_state == ON) &&
  2767. (ShmCharger->gun_info[gun_index].isCCSStartTransation == ON))
  2768. {
  2769. ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor = OFF;
  2770. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy = 0;
  2771. getDateTimeString((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartDateTime);
  2772. ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption;
  2773. ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption;
  2774. ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption;
  2775. ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption_at_start = ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption;
  2776. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount==1)
  2777. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption = (ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption/100);
  2778. else
  2779. {
  2780. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[0] = (ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption/100);
  2781. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[1] = (ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption/100);
  2782. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[2] = (ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption/100);
  2783. }
  2784. memcpy((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ShmSysConfigAndInfo->SysConfig.UserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  2785. memcpy((char*)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ARRAY_SIZE(ShmOCPP16Data->StartTransaction[gun_index].IdTag));
  2786. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = ON;
  2787. ShmCharger->gun_info[gun_index].isCCSStartTransation = OFF;
  2788. setChargerMode(gun_index, SYS_MODE_CHARGING);
  2789. ftime(&startTime[gun_index][TMR_IDX_CCS_HEARTBEAT_COUNT_RESET]);
  2790. }
  2791. //120 sec timeout
  2792. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_HANDSHAKING]) > TIMEOUT_SPEC_CCS_HANDSHAKE)
  2793. {
  2794. setLedMotion(gun_index, LED_ACTION_HANDSHAKE_FAIL);
  2795. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_HANDSHAKING]) > TIMEOUT_SPEC_CCS_HANDSHAKE+5000)
  2796. {
  2797. DEBUG_INFO("CCS 120 secs handshake timeout.\n");
  2798. //Cancel CCS task negotiating
  2799. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  2800. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  2801. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = ON;
  2802. }
  2803. }
  2804. if((ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty == ON) && ShmCharger->gun_info[gun_index].acCcsInfo.CpSetPWMDuty == CCS_PWM_DUTY_100)
  2805. {
  2806. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_100;
  2807. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2808. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = OFF;
  2809. setChargerMode(gun_index, SYS_MODE_IDLE);
  2810. }
  2811. break;
  2812. default:
  2813. break;
  2814. }
  2815. }
  2816. // Unplug charging gun to Idle mode
  2817. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A) && (ShmCharger->gun_info[gun_index].isGunPlugged == YES))
  2818. {
  2819. DEBUG_INFO("Charging gun is plugged before.\n");
  2820. //setChargerMode(gun_index, SYS_MODE_IDLE);
  2821. //Cancel CCS task negotiating
  2822. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  2823. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  2824. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = ON;
  2825. }
  2826. // Use RFID card to stop handshaking
  2827. if((ShmCharger->gun_info[gun_index].rfidReq == ON) && isMatchStartUser(gun_index))
  2828. {
  2829. DEBUG_INFO("Use RFID card to stop handshaking.\n");
  2830. setSpeaker(ON,SPEAKER_SHORT);
  2831. //setChargerMode(gun_index, SYS_MODE_IDLE);
  2832. //Cancel CCS task negotiating
  2833. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  2834. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  2835. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = ON;
  2836. }
  2837. else
  2838. {
  2839. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2840. }
  2841. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_HANDSHAKING]) > ShmCharger->timeoutSpec.Present_Timeout_Spec)
  2842. {
  2843. setLedMotion(gun_index, LED_ACTION_HANDSHAKE_FAIL);
  2844. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_HANDSHAKING]) > (ShmCharger->timeoutSpec.Present_Timeout_Spec+5000))
  2845. {
  2846. DEBUG_INFO("Handshaking timeout...\n");
  2847. //Cancel CCS task negotiating
  2848. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  2849. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  2850. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = ON;
  2851. }
  2852. }
  2853. if((ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty == ON) && ShmCharger->gun_info[gun_index].acCcsInfo.CpSetPWMDuty != CCS_PWM_DUTY_5)
  2854. {
  2855. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_100;
  2856. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  2857. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = OFF;
  2858. setChargerMode(gun_index, SYS_MODE_IDLE);
  2859. }
  2860. break;
  2861. case SYS_MODE_CHARGING:
  2862. if(isModeChange(gun_index))
  2863. {
  2864. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2865. ftime(&startChargingTime[gun_index]);
  2866. ftime(&startTime[gun_index][TMR_IDX_LOGPPRINTOUT]);
  2867. ftime(&startTime[gun_index][TMR_IDX_PROFILE_PREPARE]);
  2868. ftime(&startTime[gun_index][TMR_IDX_PWN_CHANGE]);
  2869. startTime[gun_index][TMR_IDX_AUTH].time -= TIMEOUT_SPEC_AUTH;
  2870. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = OFF;
  2871. ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileId = 0;
  2872. ShmCharger->gun_info[gun_index].isChargerStopByCondition = NO;
  2873. ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq = ON;
  2874. }
  2875. //if time up, clear CCS MSG count
  2876. if((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) &&
  2877. (DiffTimebWithNow(startTime[gun_index][TMR_IDX_CCS_HEARTBEAT_COUNT_RESET]) > TIMEOUT_SPEC_CCS_HEARTBEAT_COUNT_RESET))
  2878. {
  2879. ftime(&startTime[gun_index][TMR_IDX_CCS_HEARTBEAT_COUNT_RESET]);
  2880. if(ShmCharger->gun_info[gun_index].acCcsInfo.CcsHeartBeat > 0)
  2881. {
  2882. ShmCharger->gun_info[gun_index].acCcsInfo.CcsHeartBeat = 0;
  2883. }
  2884. else
  2885. {
  2886. DEBUG_INFO("CCS could not get MSG from car.\n");
  2887. //setChargerMode(gun_index, SYS_MODE_TERMINATING);
  2888. //setRelay(gun_index, OFF);
  2889. }
  2890. }
  2891. if((ShmCharger->gun_info[gun_index].rfidReq == ON) ||
  2892. (ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop == ON) ||
  2893. (ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq == ON)||
  2894. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState != CP_STATE_C) ||
  2895. (ShmOCPP16Data->MsMsg.bits.ResetReq) ||
  2896. (ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor == ON) ||
  2897. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStop == ON) ||
  2898. ((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) && (ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_STOP_MODE)) ||
  2899. ((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) && ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_RENEGOTIATE_MODE) ||
  2900. ((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) && ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_STANDBY_MODE))
  2901. {
  2902. if(ShmCharger->gun_info[gun_index].rfidReq)
  2903. {
  2904. // If RFID SN different with start user, it need to authorize ID
  2905. if((ShmCharger->gun_info[gun_index].rfidReq == ON) && !isMatchStartUser(gun_index))
  2906. {
  2907. if((DiffTimebWithNow(startTime[gun_index][TMR_IDX_AUTH]) > TIMEOUT_SPEC_AUTH) && !ShmOCPP16Data->SpMsg.bits.AuthorizeReq)
  2908. {
  2909. // Request authorization
  2910. ftime(&startTime[gun_index][TMR_IDX_AUTH]);
  2911. memset(ShmSysConfigAndInfo->SysConfig.UserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  2912. if(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian)
  2913. {
  2914. // Big endian
  2915. switch(rfid.snType)
  2916. {
  2917. case RFID_SN_TYPE_6BYTE:
  2918. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5]);
  2919. break;
  2920. case RFID_SN_TYPE_7BYTE:
  2921. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6]);
  2922. break;
  2923. case RFID_SN_TYPE_10BYTE:
  2924. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6], rfid.currentCard[7], rfid.currentCard[8], rfid.currentCard[9]);
  2925. break;
  2926. case RFID_SN_TYPE_4BYTE:
  2927. default:
  2928. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3]);
  2929. break;
  2930. }
  2931. }
  2932. else
  2933. {
  2934. // Little endian
  2935. switch(rfid.snType)
  2936. {
  2937. case RFID_SN_TYPE_6BYTE:
  2938. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2939. break;
  2940. case RFID_SN_TYPE_7BYTE:
  2941. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2942. break;
  2943. case RFID_SN_TYPE_10BYTE:
  2944. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[9], rfid.currentCard[8], rfid.currentCard[7], rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2945. break;
  2946. case RFID_SN_TYPE_4BYTE:
  2947. default:
  2948. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  2949. break;
  2950. }
  2951. }
  2952. DEBUG_INFO("End request User Id: %s\n", ShmSysConfigAndInfo->SysConfig.UserId);
  2953. DEBUG_INFO("Start method: %d...\n ", ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod);
  2954. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_RFID) ||
  2955. //(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BACKEND) ||
  2956. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BLE))
  2957. {
  2958. switch(ShmSysConfigAndInfo->SysConfig.AuthorisationMode)
  2959. {
  2960. case AUTH_MODE_ENABLE:
  2961. if(ShmOCPP16Data->OcppConnStatus)
  2962. {
  2963. // On line
  2964. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  2965. }
  2966. else
  2967. {
  2968. // Off line
  2969. switch(ShmSysConfigAndInfo->SysConfig.OfflinePolicy)
  2970. {
  2971. case OFF_POLICY_LOCALLIST:
  2972. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  2973. break;
  2974. case OFF_POLICY_PH_RFID:
  2975. break;
  2976. case OFF_POLICY_FREE:
  2977. break;
  2978. case OFF_POLICY_NOCHARGE:
  2979. default:
  2980. break;
  2981. }
  2982. }
  2983. break;
  2984. case AUTH_MODE_DISABLE:
  2985. default:
  2986. break;
  2987. }
  2988. }
  2989. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BACKEND)
  2990. {
  2991. DEBUG_INFO("Should be remote stop charger... \n");
  2992. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  2993. }
  2994. }
  2995. else
  2996. {
  2997. if(ShmOCPP16Data->SpMsg.bits.AuthorizeConf ||
  2998. (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) ||
  2999. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST) && (strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") == 0)) ||
  3000. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE)))
  3001. {
  3002. if((strcmp((char*)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Accepted")==0) ||
  3003. (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) ||
  3004. (!ShmOCPP16Data->OcppConnStatus && (isValidLocalWhiteCard() == PASS) && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST)) ||
  3005. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE)))
  3006. {
  3007. ShmCharger->gun_info[gun_index].isAuthPassEnd = ON;
  3008. }
  3009. else
  3010. {
  3011. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  3012. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = OFF;
  3013. DEBUG_INFO("Authorize fail.\n");
  3014. setSpeaker(ON,SPEAKER_INTERVAL_3COUNT);
  3015. setLedMotion(gun_index,LED_ACTION_RFID_FAIL);
  3016. sleep(3);
  3017. }
  3018. startTime[gun_index][TMR_IDX_AUTH].time -= TIMEOUT_SPEC_AUTH;
  3019. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = OFF;
  3020. }
  3021. }
  3022. }
  3023. // If Authorize is accpted or Rfid card match with start User, The system should terminating to the end
  3024. if(ShmCharger->gun_info[gun_index].isAuthPassEnd || isMatchStartUser(gun_index))
  3025. {
  3026. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3027. setRelay(gun_index, OFF);
  3028. }
  3029. }
  3030. else
  3031. {
  3032. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3033. setRelay(gun_index, OFF);
  3034. }
  3035. }
  3036. else
  3037. {
  3038. setLedMotion(gun_index,LED_ACTION_CHARGING);
  3039. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount==1)
  3040. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption = (ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption/100);
  3041. else
  3042. {
  3043. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[0] = (ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption/100);
  3044. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[1] = (ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption/100);
  3045. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption[2] = (ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption/100);
  3046. }
  3047. ftime(&endChargingTime[gun_index]);
  3048. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index])/1000;
  3049. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount==1)
  3050. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy = ((float)(ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption - ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption_at_start))/100;
  3051. else
  3052. {
  3053. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy[0] = ((float)(ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption - ShmCharger->gun_info[gun_index].powerConsumption[0].power_consumption_at_start))/100;
  3054. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy[1] = ((float)(ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption - ShmCharger->gun_info[gun_index].powerConsumption[1].power_consumption_at_start))/100;
  3055. //ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy[2] = ((float)(ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption - ShmCharger->gun_info[gun_index].powerConsumption[2].power_consumption_at_start))/100;
  3056. }
  3057. // Response StartTransactionConf
  3058. if(ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf == ON)
  3059. {
  3060. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = OFF;
  3061. }
  3062. // Charging profile preparation
  3063. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_PROFILE_PREPARE]) > TIMEOUT_SPEC_PROFILE_PREPARE)
  3064. {
  3065. if(!ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileConf)
  3066. {
  3067. ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq = ON;
  3068. ftime(&startTime[gun_index][TMR_IDX_PROFILE_PREPARE]);
  3069. }
  3070. else
  3071. {
  3072. ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileConf = OFF;
  3073. }
  3074. }
  3075. // Checking profile id > 0 and current time is between charging profile validFrom & validTo
  3076. if((ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileId>0) &&
  3077. (ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq != ON) &&
  3078. (((strlen((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ValidFrom)>0) && (strlen((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ValidTo)>0)) ? isProfileValid(gun_index) : ON))
  3079. {
  3080. // Debug information
  3081. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_LOGPPRINTOUT]) > TIMEOUT_SPEC_LOGPPRINTOUT)
  3082. {
  3083. DEBUG_INFO("Profile ID found: %d\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileId);
  3084. DEBUG_INFO("Valid from: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ValidFrom);
  3085. DEBUG_INFO("Valid to: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ValidTo);
  3086. DEBUG_INFO("Start schedule: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.StartSchedule);
  3087. DEBUG_INFO("Profile kind: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileKind);
  3088. DEBUG_INFO("RecurrencyKind: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].RecurrencyKind);
  3089. DEBUG_INFO("Profile purpose: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfilePurpose);
  3090. DEBUG_INFO("Transaction ID: %d\n", ShmOCPP16Data->SmartChargingProfile[gun_index].TransactionId);
  3091. DEBUG_INFO("ChargingRateUnit: %s\n", ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingRateUnit);
  3092. DEBUG_INFO("===============================================================\n");
  3093. }
  3094. // Checking profile kind
  3095. if((mystrcmp((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileKind, "Absolute") == PASS))
  3096. {
  3097. // Absolute profile
  3098. if(((mystrcmp((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfilePurpose, "TxProfile") == PASS) && (ShmOCPP16Data->SmartChargingProfile[gun_index].TransactionId == ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)) ||
  3099. (mystrcmp((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfilePurpose, "TxProfile") == FAIL))
  3100. {
  3101. // Checking limitation
  3102. for(uint8_t idx_period=0;idx_period<ARRAY_SIZE(ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingSchedulePeriod);idx_period++)
  3103. {
  3104. if((getScheduleStart(gun_index) > ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingSchedulePeriod[idx_period].StartPeriod) &&
  3105. ((idx_period == 0) || (ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingSchedulePeriod[idx_period].StartPeriod > 0))
  3106. )
  3107. {
  3108. ShmCharger->gun_info[gun_index].targetCurrent = (mystrcmp((char*)ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingRateUnit,"W")==PASS?ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingSchedulePeriod[idx_period].Limit/220:ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingSchedule.ChargingSchedulePeriod[idx_period].Limit);
  3109. DEBUG_INFO("ShmCharger->gun_info[%d].targetCurrent on period[%d]: %d\n", gun_index, idx_period, ShmCharger->gun_info[gun_index].targetCurrent);
  3110. }
  3111. else
  3112. break;
  3113. }
  3114. }
  3115. }
  3116. }
  3117. else if((ShmOCPP16Data->SmartChargingProfile[gun_index].ChargingProfileId == 0) && (ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq != ON))
  3118. {
  3119. ShmCharger->gun_info[gun_index].targetCurrent = ShmCharger->gun_info[gun_index].primaryMcuState.rating_current;
  3120. }
  3121. // Determine max charging current to MCU
  3122. if(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent == 0)
  3123. {
  3124. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  3125. if((ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current) ||
  3126. (ShmCharger->gun_info[gun_index].primaryMcuState.current_limit != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current))
  3127. {
  3128. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3129. {
  3130. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_PWN_CHANGE]) > TIMEOUT_SPEC_PWN_CHANGE)
  3131. {
  3132. if(ShmCharger->gun_info[gun_index].targetCurrent>0)
  3133. {
  3134. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  3135. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = YES;
  3136. }
  3137. ftime(&startTime[gun_index][TMR_IDX_PWN_CHANGE]);
  3138. }
  3139. }
  3140. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3141. {
  3142. ShmCharger->gun_info[gun_index].acCcsInfo.EVSEMaxCurrent = (float)((ShmCharger->gun_info[gun_index].targetCurrent > ShmCharger->gun_info[gun_index].primaryMcuState.rating_current)?ShmCharger->gun_info[gun_index].primaryMcuState.rating_current:ShmCharger->gun_info[gun_index].targetCurrent);
  3143. }
  3144. }
  3145. }
  3146. else
  3147. {
  3148. ShmCharger->gun_info[gun_index].targetCurrent = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  3149. if((ShmCharger->gun_info[gun_index].targetCurrent != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current) ||
  3150. (ShmCharger->gun_info[gun_index].primaryMcuState.current_limit != ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current))
  3151. {
  3152. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3153. {
  3154. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_PWN_CHANGE]) > TIMEOUT_SPEC_PWN_CHANGE)
  3155. {
  3156. if(ShmCharger->gun_info[gun_index].targetCurrent>0)
  3157. {
  3158. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  3159. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = YES;
  3160. }
  3161. ftime(&startTime[gun_index][TMR_IDX_PWN_CHANGE]);
  3162. }
  3163. }
  3164. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3165. {
  3166. ShmCharger->gun_info[gun_index].acCcsInfo.EVSEMaxCurrent = (float)((ShmCharger->gun_info[gun_index].targetCurrent > ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)?ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent:ShmCharger->gun_info[gun_index].targetCurrent);
  3167. }
  3168. }
  3169. }
  3170. // Debug information
  3171. if(DiffTimebWithNow(startTime[gun_index][TMR_IDX_LOGPPRINTOUT]) > TIMEOUT_SPEC_LOGPPRINTOUT)
  3172. {
  3173. DEBUG_INFO("===============================================================\n");
  3174. DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent: %d \n", ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
  3175. DEBUG_INFO("ShmCharger->gun_info[%d].primaryMcuCp_Pwn_Duty.max_current: %d\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current);
  3176. DEBUG_INFO("ShmCharger->gun_info[%d].targetCurrent: %d\n", gun_index, ShmCharger->gun_info[gun_index].targetCurrent);
  3177. DEBUG_INFO("===============================================================\n");
  3178. ftime(&startTime[gun_index][TMR_IDX_LOGPPRINTOUT]);
  3179. }
  3180. if(ShmOCPP16Data->OcppConnStatus)
  3181. {
  3182. // On-line max condition check
  3183. if((ShmSysConfigAndInfo->SysConfig.MaxChargingDuration > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60)))
  3184. {
  3185. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3186. {
  3187. setRelay(gun_index, OFF);
  3188. setRequest(gun_index, OFF);
  3189. ShmCharger->gun_info[gun_index].isChargerStopByCondition = YES;
  3190. }
  3191. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3192. {
  3193. setRelay(gun_index, OFF);
  3194. }
  3195. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3196. DEBUG_INFO("Connector-%d charging duration(%d) already over max duration(%d) in second.\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration, (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60));
  3197. }
  3198. else if((ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy)))
  3199. {
  3200. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3201. {
  3202. setRelay(gun_index, OFF);
  3203. setRequest(gun_index, OFF);
  3204. ShmCharger->gun_info[gun_index].isChargerStopByCondition = YES;
  3205. }
  3206. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3207. {
  3208. setRelay(gun_index, OFF);
  3209. }
  3210. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3211. DEBUG_INFO("Connector-%d charging energy(%.2f) already over max energy(%.2f) in KWH.\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy, ((float)ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy));
  3212. }
  3213. else
  3214. {
  3215. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3216. {
  3217. ShmCharger->gun_info[gun_index].isChargerStopByCondition = NO;
  3218. if(ShmCharger->gun_info[gun_index].targetCurrent>0)
  3219. setRelay(gun_index, ON);
  3220. else
  3221. setRelay(gun_index, OFF);
  3222. }
  3223. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3224. {
  3225. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C)
  3226. setRelay(gun_index, ON);
  3227. }
  3228. }
  3229. }
  3230. else
  3231. {
  3232. // Off-line max condition check
  3233. if((ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) ||
  3234. ((ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_ENABLE) && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy != OFF_POLICY_NOCHARGE)))
  3235. {
  3236. if(((ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration > 0) ? (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration*60)) : (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60))))
  3237. {
  3238. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3239. {
  3240. setRelay(gun_index, OFF);
  3241. setRequest(gun_index, OFF);
  3242. ShmCharger->gun_info[gun_index].isChargerStopByCondition = YES;
  3243. }
  3244. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3245. {
  3246. setRelay(gun_index, OFF);
  3247. }
  3248. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3249. DEBUG_INFO("Connector-%d charging duration(%d) already over off-line max duration(%d) in second.\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration, (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60));
  3250. }
  3251. else if(((ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy > 0) ? (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy)) : (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy))))
  3252. {
  3253. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3254. {
  3255. setRelay(gun_index, OFF);
  3256. setRequest(gun_index, OFF);
  3257. ShmCharger->gun_info[gun_index].isChargerStopByCondition = YES;
  3258. }
  3259. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3260. {
  3261. setRelay(gun_index, OFF);
  3262. }
  3263. setChargerMode(gun_index, SYS_MODE_TERMINATING);
  3264. DEBUG_INFO("Connector-%d charging energy(%.2f) already over off-line max energy(%.2f) in KWH.\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy, ((float)ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy));
  3265. }
  3266. else
  3267. {
  3268. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3269. {
  3270. ShmCharger->gun_info[gun_index].isChargerStopByCondition = NO;
  3271. if(ShmCharger->gun_info[gun_index].targetCurrent>0)
  3272. setRelay(gun_index, ON);
  3273. else
  3274. setRelay(gun_index, OFF);
  3275. }
  3276. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3277. {
  3278. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C)
  3279. setRelay(gun_index, ON);
  3280. }
  3281. }
  3282. }
  3283. else
  3284. {
  3285. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3286. {
  3287. setRequest(gun_index, OFF);
  3288. }
  3289. setRelay(gun_index, OFF);
  3290. DEBUG_INFO("Connector-%d can not charging in off line\n", gun_index);
  3291. }
  3292. }
  3293. }
  3294. break;
  3295. case SYS_MODE_TERMINATING:
  3296. if(isModeChange(gun_index))
  3297. {
  3298. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration != 0)
  3299. {
  3300. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index])/1000;
  3301. }
  3302. if(!ShmCharger->gun_info[gun_index].primaryMcuState.relay_state)
  3303. {
  3304. setLedMotion(gun_index, LED_ACTION_STOP);
  3305. }
  3306. else
  3307. {}
  3308. getDateTimeString((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StopDateTime);
  3309. }
  3310. // End authorize pass
  3311. if(((ShmCharger->gun_info[gun_index].rfidReq == ON) && isMatchStartUser(gun_index)) ||
  3312. (ShmCharger->gun_info[gun_index].isAuthPassEnd) ||
  3313. (ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop == ON) ||
  3314. (ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq == ON) ||
  3315. ((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A) && (strcmp((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE") == 0)) ||
  3316. (ShmOCPP16Data->MsMsg.bits.ResetReq) ||
  3317. (ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor == ON) ||
  3318. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStop == ON) ||
  3319. ((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) && (ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_STOP_MODE)))
  3320. {
  3321. if(ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest == ON)
  3322. {
  3323. if(((ShmCharger->gun_info[gun_index].rfidReq == ON) && isMatchStartUser(gun_index)) ||
  3324. (ShmCharger->gun_info[gun_index].isAuthPassEnd))
  3325. {
  3326. DEBUG_INFO("Authorize pass.\n");
  3327. setSpeaker(ON,SPEAKER_SHORT);
  3328. setLedMotion(gun_index,LED_ACTION_RFID_PASS);
  3329. sleep(3);
  3330. }
  3331. }
  3332. else
  3333. {}
  3334. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3335. setRequest(gun_index, OFF);
  3336. setRelay(gun_index, OFF);
  3337. setLedMotion(gun_index, LED_ACTION_STOP);
  3338. if(!ShmCharger->gun_info[gun_index].primaryMcuState.relay_state)
  3339. {
  3340. if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS)
  3341. {
  3342. setChargerMode(gun_index, SYS_MODE_COMPLETE);
  3343. }
  3344. else if(ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC)
  3345. {
  3346. //setChargerMode(gun_index, SYS_MODE_COMPLETE);
  3347. //Cancel CCS task negotiating
  3348. ShmCharger->gun_info[gun_index].acCcsInfo.ChargingPermission = OFF;
  3349. ShmCharger->gun_info[gun_index].acCcsInfo.EVSENotification = NOTIFICATION_STOP;
  3350. setRelay(gun_index,OFF);
  3351. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = ON;
  3352. }
  3353. }
  3354. }
  3355. else
  3356. {
  3357. // If the charger stops charging, the led should be stoped blink
  3358. if(!ShmCharger->gun_info[gun_index].primaryMcuState.relay_state)
  3359. {
  3360. setLedMotion(gun_index, LED_ACTION_STOP);
  3361. }
  3362. if(ShmCharger->gun_info[gun_index].rfidReq)
  3363. {
  3364. DEBUG_INFO("Certified in terminating mode... \n");
  3365. // If RFID SN different with start user, it need to authorize ID
  3366. if((ShmCharger->gun_info[gun_index].rfidReq == ON) && !isMatchStartUser(gun_index))
  3367. {
  3368. if((DiffTimebWithNow(startTime[gun_index][TMR_IDX_AUTH]) > TIMEOUT_SPEC_AUTH) && !ShmOCPP16Data->SpMsg.bits.AuthorizeReq)
  3369. {
  3370. // Request authorization
  3371. ftime(&startTime[gun_index][TMR_IDX_AUTH]);
  3372. memset(ShmSysConfigAndInfo->SysConfig.UserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  3373. if(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian)
  3374. {
  3375. // Big endian
  3376. switch(rfid.snType)
  3377. {
  3378. case RFID_SN_TYPE_6BYTE:
  3379. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5]);
  3380. break;
  3381. case RFID_SN_TYPE_7BYTE:
  3382. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6]);
  3383. break;
  3384. case RFID_SN_TYPE_10BYTE:
  3385. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6], rfid.currentCard[7], rfid.currentCard[8], rfid.currentCard[9]);
  3386. break;
  3387. case RFID_SN_TYPE_4BYTE:
  3388. default:
  3389. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3]);
  3390. break;
  3391. }
  3392. }
  3393. else
  3394. {
  3395. // Little endian
  3396. switch(rfid.snType)
  3397. {
  3398. case RFID_SN_TYPE_6BYTE:
  3399. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3400. break;
  3401. case RFID_SN_TYPE_7BYTE:
  3402. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3403. break;
  3404. case RFID_SN_TYPE_10BYTE:
  3405. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[9], rfid.currentCard[8], rfid.currentCard[7], rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3406. break;
  3407. case RFID_SN_TYPE_4BYTE:
  3408. default:
  3409. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3410. break;
  3411. }
  3412. }
  3413. DEBUG_INFO("End request User Id : %s... \n", ShmSysConfigAndInfo->SysConfig.UserId);
  3414. DEBUG_INFO("Start method : %d... \n ", ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod);
  3415. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_RFID) ||
  3416. //(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BACKEND) ||
  3417. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BLE))
  3418. {
  3419. switch(ShmSysConfigAndInfo->SysConfig.AuthorisationMode)
  3420. {
  3421. case AUTH_MODE_ENABLE:
  3422. if(ShmOCPP16Data->OcppConnStatus)
  3423. {
  3424. // On line
  3425. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  3426. }
  3427. else
  3428. {
  3429. // Off line
  3430. switch(ShmSysConfigAndInfo->SysConfig.OfflinePolicy)
  3431. {
  3432. case OFF_POLICY_LOCALLIST:
  3433. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = ON;
  3434. break;
  3435. case OFF_POLICY_PH_RFID:
  3436. break;
  3437. case OFF_POLICY_FREE:
  3438. break;
  3439. case OFF_POLICY_NOCHARGE:
  3440. default:
  3441. break;
  3442. }
  3443. }
  3444. break;
  3445. case AUTH_MODE_DISABLE:
  3446. default:
  3447. break;
  3448. }
  3449. }
  3450. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod == START_METHOD_BACKEND)
  3451. {
  3452. DEBUG_INFO("Should be remote stop charger... \n");
  3453. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  3454. }
  3455. }
  3456. else
  3457. {
  3458. if(ShmOCPP16Data->SpMsg.bits.AuthorizeConf ||
  3459. (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) ||
  3460. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST)) ||
  3461. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE)))
  3462. {
  3463. if((strcmp((char*)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Accepted")==0) ||
  3464. (ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) ||
  3465. (!ShmOCPP16Data->OcppConnStatus && (isValidLocalWhiteCard() == PASS) && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_LOCALLIST) && (strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") == 0)) ||
  3466. (!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy == OFF_POLICY_FREE)))
  3467. {
  3468. ShmCharger->gun_info[gun_index].isAuthPassEnd = ON;
  3469. }
  3470. else
  3471. {
  3472. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  3473. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = OFF;
  3474. DEBUG_INFO("Authorize fail... \n");
  3475. setSpeaker(ON,SPEAKER_INTERVAL_3COUNT);
  3476. setLedMotion(gun_index,LED_ACTION_RFID_FAIL);
  3477. sleep(3);
  3478. }
  3479. startTime[gun_index][TMR_IDX_AUTH].time -= TIMEOUT_SPEC_AUTH;
  3480. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = OFF;
  3481. }
  3482. }
  3483. }
  3484. }
  3485. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C) &&
  3486. (ShmCharger->gun_info[gun_index].rfidReq != ON) &&
  3487. (ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop != ON) &&
  3488. (ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq != ON) &&
  3489. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStop != ON) &&
  3490. !ShmOCPP16Data->MsMsg.bits.ResetReq &&
  3491. !(ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60))) &&
  3492. !(ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy))) &&
  3493. !(!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy != OFF_POLICY_NOCHARGE) && ((ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration > 0) ? (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration*60)) : (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration >= (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60)))) &&
  3494. !(!ShmOCPP16Data->OcppConnStatus && (ShmSysConfigAndInfo->SysConfig.OfflinePolicy != OFF_POLICY_NOCHARGE) && ((ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy > 0) ? (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy)) : (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy > 0) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedEnergy >= ((float)ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy)))) &&
  3495. (((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) && (ShmCharger->gun_info[gun_index].acCcsInfo.EVChargeProgress == HLC_START_MODE)) || (ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_BS))
  3496. )
  3497. {
  3498. setChargerMode(gun_index, SYS_MODE_CHARGING);
  3499. }
  3500. }
  3501. if((ShmCharger->gun_info[gun_index].chargingMode == CHARGING_MODE_HLC) &&
  3502. (ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty == ON) &&
  3503. (ShmCharger->gun_info[gun_index].acCcsInfo.CpSetPWMDuty == CCS_PWM_DUTY_100))
  3504. {
  3505. DEBUG_INFO("Set PWM duty 100% go to SYS_MODE_TERMINATING.\n");
  3506. ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = CCS_PWM_DUTY_100;
  3507. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = ON;
  3508. ShmCharger->gun_info[gun_index].isCCSWaitChangeDuty = OFF;
  3509. setChargerMode(gun_index, SYS_MODE_COMPLETE);
  3510. }
  3511. break;
  3512. case SYS_MODE_COMPLETE:
  3513. if(isModeChange(gun_index))
  3514. {
  3515. setLedMotion(gun_index, LED_ACTION_STOP);
  3516. setRelay(gun_index, OFF);
  3517. setRequest(gun_index, OFF);
  3518. }
  3519. if(ShmOCPP16Data->MsMsg.bits.ResetReq)
  3520. {
  3521. if(strcmp((char*)ShmOCPP16Data->Reset.Type, "Hard")==0)
  3522. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "HardReset");
  3523. else
  3524. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "SoftReset");
  3525. }
  3526. else if(ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq)
  3527. {
  3528. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "Remote");
  3529. }
  3530. else if(ShmCharger->gun_info[gun_index].rfidReq || ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop)
  3531. {
  3532. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "Local");
  3533. }
  3534. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A)
  3535. {
  3536. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "EVDisconnected");
  3537. }
  3538. else if(ShmCharger->gun_info[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].isUnlockerConnetor == ON)
  3539. {
  3540. sprintf((char*)ShmOCPP16Data->StopTransaction[ShmOCPP16Data->UnlockConnector[gun_index].ConnectorId-1].StopReason, "UnlockCommand");
  3541. }
  3542. else
  3543. {
  3544. sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "Other");
  3545. }
  3546. DEBUG_INFO("Gun-%d : StopReason [ %s ]...\n.",gun_index,ShmOCPP16Data->StopTransaction[gun_index].StopReason);
  3547. memcpy((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ARRAY_SIZE(ShmOCPP16Data->StopTransaction[gun_index].IdTag));
  3548. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PowerConsumption = (ShmCharger->gun_info[gun_index].powerConsumptionTotal.power_consumption/100);
  3549. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = ON;
  3550. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  3551. ShmCharger->gun_info[gun_index].isAuthPassEnd = OFF;
  3552. ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop = OFF;
  3553. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = OFF;
  3554. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].schedule.isTriggerStop = OFF;
  3555. DB_Insert_Record(localDb, gun_index);
  3556. setChargerMode(gun_index, SYS_MODE_IDLE);
  3557. break;
  3558. case SYS_MODE_ALARM:
  3559. setLedMotion(gun_index,LED_ACTION_ALARM);
  3560. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus == SYS_MODE_CHARGING) ||
  3561. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus == SYS_MODE_TERMINATING))
  3562. {}
  3563. else
  3564. {
  3565. setRelay(gun_index, OFF);
  3566. setRequest(gun_index, OFF);
  3567. }
  3568. if((ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode == 0))
  3569. {
  3570. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus == SYS_MODE_CHARGING) ||
  3571. (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus == SYS_MODE_TERMINATING))
  3572. {
  3573. setChargerMode(gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PreviousSystemStatus);
  3574. }
  3575. else
  3576. {
  3577. setChargerMode(gun_index, SYS_MODE_IDLE);
  3578. }
  3579. }
  3580. break;
  3581. case SYS_MODE_FAULT:
  3582. if(isModeChange(gun_index))
  3583. {}
  3584. break;
  3585. case SYS_MODE_MAINTAIN:
  3586. if(isModeChange(gun_index))
  3587. {
  3588. setLedMotion(gun_index,LED_ACTION_MAINTAIN);
  3589. }
  3590. break;
  3591. case SYS_MODE_UPDATE:
  3592. if(isModeChange(gun_index))
  3593. {
  3594. setLedMotion(gun_index,LED_ACTION_MAINTAIN);
  3595. }
  3596. //======================================
  3597. // Check local upgrade firmware request
  3598. //======================================
  3599. if(ShmSysConfigAndInfo->SysInfo.FirmwareUpdate)
  3600. {
  3601. DEBUG_INFO("Firmware local upgrading...\n");
  3602. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = OFF;
  3603. int value = upgrade_check();
  3604. DEBUG_INFO("Local update Value: %s... \n",((value == PASS)?"Pass": "Fail"));
  3605. if(value == PASS)
  3606. {
  3607. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail == ON)
  3608. ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail = OFF;
  3609. ShmCharger->isUpdateSuccess = YES;
  3610. DEBUG_INFO("Local update success...\n");
  3611. }
  3612. else
  3613. {
  3614. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail == OFF)
  3615. ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail = ON;
  3616. ShmCharger->isUpdateSuccess = NO;
  3617. DEBUG_INFO("Local update unsuccess...\n");
  3618. }
  3619. }
  3620. else if(ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq)
  3621. {
  3622. //======================================
  3623. // Check remote upgrade firmware request
  3624. //======================================
  3625. if(strcmp((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "DownloadFailed")==0)
  3626. {
  3627. DEBUG_INFO("Firmware remote upgraded fail...\n");
  3628. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = OFF;
  3629. ShmCharger->isUpdateSuccess = NO;
  3630. }
  3631. else if(strcmp((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "Downloaded")==0)
  3632. {
  3633. DEBUG_INFO("Firmware remote upgrading...\n");
  3634. sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installing");
  3635. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = ON;
  3636. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = OFF;
  3637. int result = upgrade_check();
  3638. DEBUG_INFO("Remote update Result: %s... \n",((result == PASS)?"Pass": "Fail"));
  3639. if(result == PASS)
  3640. {
  3641. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail == ON)
  3642. ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail = OFF;
  3643. ShmCharger->isUpdateSuccess = YES;
  3644. DEBUG_INFO("Remote update success...\n");
  3645. }
  3646. else
  3647. {
  3648. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail == OFF)
  3649. ShmStatusCodeData->InfoCode.InfoEvents.bits.CsuFimrwareUpdateFail = ON;
  3650. ShmCharger->isUpdateSuccess = NO;
  3651. DEBUG_INFO("Remote update unsuccess...\n");
  3652. }
  3653. }
  3654. else
  3655. {}
  3656. }
  3657. else
  3658. {
  3659. //======================================
  3660. // Upgrade complete reboot system
  3661. //======================================
  3662. if(!ShmCharger->gun_info[gun_index].mcuFlag.isMcuUpgradeReq && ((AC_QUANTITY>1)?!ShmCharger->gun_info[gun_index^1].mcuFlag.isMcuUpgradeReq:YES))
  3663. {
  3664. if(ShmCharger->isUpdateSuccess == YES)
  3665. {
  3666. sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  3667. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = ON;
  3668. DEBUG_WARN("Firmware upgrade success.\n");
  3669. sleep(5);
  3670. DEBUG_INFO("Firmware upgraded, reboot...\n");
  3671. system("reboot -f");
  3672. sleep(5);
  3673. system("reboot -f");
  3674. }
  3675. else
  3676. {
  3677. sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  3678. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = ON;
  3679. DEBUG_WARN("Firmware upgrade fail.\n");
  3680. close(wtdFd);
  3681. system("/usr/bin/run_evse_restart.sh");
  3682. }
  3683. }
  3684. }
  3685. break;
  3686. case SYS_MODE_RESERVATION:
  3687. if(isModeChange(gun_index))
  3688. {
  3689. setLedMotion(gun_index,LED_ACTION_MAINTAIN);
  3690. }
  3691. if(isReservationExpired(gun_index))
  3692. {
  3693. DEBUG_INFO("Reservation: Time's up...\n");
  3694. setChargerMode(gun_index, SYS_MODE_IDLE);
  3695. }
  3696. else if(ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq)
  3697. {
  3698. DEBUG_INFO("Reservation: Cancel reservation...\n");
  3699. setChargerMode(gun_index, SYS_MODE_IDLE);
  3700. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = OFF;
  3701. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf = ON;
  3702. }
  3703. else
  3704. {
  3705. // Check is there RFID or back end request start
  3706. if((ShmCharger->gun_info[gun_index].rfidReq == ON) ||
  3707. (ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq == ON))
  3708. {
  3709. if((ShmCharger->gun_info[gun_index].rfidReq == ON))
  3710. {
  3711. memset(ShmSysConfigAndInfo->SysConfig.UserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
  3712. if(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian)
  3713. {
  3714. // Big endian
  3715. switch(rfid.snType)
  3716. {
  3717. case RFID_SN_TYPE_6BYTE:
  3718. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5]);
  3719. break;
  3720. case RFID_SN_TYPE_7BYTE:
  3721. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6]);
  3722. break;
  3723. case RFID_SN_TYPE_10BYTE:
  3724. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3], rfid.currentCard[4], rfid.currentCard[5], rfid.currentCard[6], rfid.currentCard[7], rfid.currentCard[8], rfid.currentCard[9]);
  3725. break;
  3726. case RFID_SN_TYPE_4BYTE:
  3727. default:
  3728. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[0], rfid.currentCard[1], rfid.currentCard[2], rfid.currentCard[3]);
  3729. break;
  3730. }
  3731. }
  3732. else
  3733. {
  3734. // Little endian
  3735. switch(rfid.snType)
  3736. {
  3737. case RFID_SN_TYPE_6BYTE:
  3738. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X", rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3739. break;
  3740. case RFID_SN_TYPE_7BYTE:
  3741. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3742. break;
  3743. case RFID_SN_TYPE_10BYTE:
  3744. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", rfid.currentCard[9], rfid.currentCard[8], rfid.currentCard[7], rfid.currentCard[6], rfid.currentCard[5], rfid.currentCard[4], rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3745. break;
  3746. case RFID_SN_TYPE_4BYTE:
  3747. default:
  3748. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%02X%02X%02X%02X", rfid.currentCard[3], rfid.currentCard[2], rfid.currentCard[1], rfid.currentCard[0]);
  3749. break;
  3750. }
  3751. }
  3752. if(strcmp((char*)ShmSysConfigAndInfo->SysConfig.UserId, (char*)ShmOCPP16Data->ReserveNow[gun_index].IdTag) == 0)
  3753. {
  3754. DEBUG_INFO("Start Method in reservation : RFID...\n");
  3755. DEBUG_INFO("Start request User Id : %s\n", ShmSysConfigAndInfo->SysConfig.UserId);
  3756. DEBUG_INFO("Reservation User Id : %s\n", ShmOCPP16Data->ReserveNow[gun_index].IdTag);
  3757. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_RFID;
  3758. setChargerMode(gun_index, SYS_MODE_AUTHORIZING);
  3759. }
  3760. ShmCharger->gun_info[gun_index].rfidReq = OFF;
  3761. }
  3762. else if(ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq)
  3763. {
  3764. if(strcmp((char*)ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag, (char*)ShmOCPP16Data->ReserveNow[gun_index].IdTag) == 0)
  3765. {
  3766. DEBUG_INFO("Start Method in reservation: BACKEND...\n");
  3767. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_BACKEND;
  3768. memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag, ARRAY_SIZE(ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag));
  3769. setChargerMode(gun_index, SYS_MODE_AUTHORIZING);
  3770. }
  3771. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = OFF;
  3772. }
  3773. }
  3774. }
  3775. break;
  3776. case SYS_MODE_BOOKING:
  3777. if(isModeChange(gun_index))
  3778. {}
  3779. break;
  3780. case SYS_MODE_DEBUG:
  3781. if(isModeChange(gun_index))
  3782. {
  3783. setLedMotion(gun_index,LED_ACTION_DEBUG);
  3784. }
  3785. break;
  3786. }
  3787. }
  3788. // System watch dog reset
  3789. write(wtdFd, "a", 1);
  3790. usleep(50000);
  3791. }
  3792. return FAIL;
  3793. }