main.c 146 KB

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