main.c 190 KB

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