main.c 159 KB

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