main.c 148 KB

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