main.c 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821
  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <sys/time.h>
  4. #include <sys/timeb.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/mman.h>
  11. #include <linux/wireless.h>
  12. #include <arpa/inet.h>
  13. #include <netinet/in.h>
  14. #include <unistd.h>
  15. #include <stdarg.h>
  16. #include <stdio.h> /*標準輸入輸出定義*/
  17. #include <stdlib.h> /*標準函數庫定義*/
  18. #include <unistd.h> /*Unix 標準函數定義*/
  19. #include <fcntl.h> /*檔控制定義*/
  20. #include <termios.h> /*PPSIX 終端控制定義*/
  21. #include <errno.h> /*錯誤號定義*/
  22. #include <errno.h>
  23. #include <string.h>
  24. #include <stdint.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include <stdbool.h>
  30. #include <dirent.h>
  31. #include <signal.h>
  32. #include "../Config.h"
  33. #include "main.h"
  34. #include "../common.h"
  35. #include "../timeout.h"
  36. #include "../Log/log.h"
  37. #include "../DataBase/DataBase.h"
  38. #include "../Define/define.h"
  39. #include "../ShareMemory/shmMem.h"
  40. #include "../SelectGun/SelectGun.h"
  41. //------------------------------------------------------------------------------
  42. static struct SysInfoData *pSysInfo = NULL;
  43. static struct SysConfigData *pSysConfig = NULL;
  44. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  45. static struct AlarmCodeData *pAlarmCode = NULL;
  46. static struct FaultCodeData *pFaultCode = NULL;
  47. static struct InfoCodeData *pInfoCode = NULL;
  48. static struct PsuData *ShmPsuData = NULL;
  49. static struct CHAdeMOData *ShmCHAdeMOData = NULL;
  50. static struct GBTData *ShmGBTData = NULL;
  51. static struct CcsData *ShmCcsData = NULL;
  52. static struct PrimaryMcuData *ShmPrimaryMcuData = NULL;
  53. static struct FanModuleData *ShmFanModuleData = NULL;
  54. static struct RelayModuleData *ShmRelayModuleData = NULL;
  55. static struct LedModuleData *ShmLedModuleData = NULL;
  56. static struct OCPP16Data *ShmOCPP16Data = NULL;
  57. static DcCommonInfo *ShmDcCommonData = NULL;
  58. static struct ChargingInfoData *pDcChargingInfo = NULL;
  59. static struct ChargingInfoData *pAcChargingInfo = NULL;
  60. static struct timeb startChargingTime[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  61. static struct timeb endChargingTime[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  62. static SelectGunInfo *ShmSelectGunInfo = NULL; //Jerry add
  63. static EvBoardErrMsg gEvBoardErr = {0};
  64. static ChillerTempErr gChillerTempErr = {0};
  65. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  66. struct StatusCodeData *ShmStatusCodeData;
  67. // for initial index to check EV board type is correct
  68. uint8_t bd0_1_status = 0;
  69. uint8_t bd0_2_status = 0;
  70. uint8_t bd1_1_status = 0;
  71. uint8_t bd1_2_status = 0;
  72. char *fwVersion = "V2.10.00.0000.00"; // Phihong version
  73. char* DebugVersion = "v2.10.00"; // Software debug version
  74. //sqlite3 *localDb;
  75. bool isDb_ready;
  76. //------------------------------------------------------------------------------
  77. void ClearDetectPluginFlag();
  78. long long DiffTimebWithNow(struct timeb ST);
  79. uint8_t DetectBitValue(uint8_t _byte, uint8_t _bit);
  80. void SetBitValue(uint8_t *_byte, uint8_t _bit, uint8_t value);
  81. unsigned long GetTimeoutValue(struct timeval _sour_time);
  82. void GetClockTime(struct timespec *_now_time, void *null);
  83. unsigned long GetClockTimeoutValue(struct timespec _start_time);
  84. void gpio_set_value(unsigned int gpio, unsigned int value);
  85. void InformOcppErrOccur(uint8_t codeType);
  86. void RecordAlarmCode(uint8_t gunIndex, char *code);
  87. void ReleaseAlarmCode(uint8_t gunIndex);
  88. void ResetChargerAlarmCode(uint8_t gunIndex, char *code);
  89. void AdjustChargerCurrent(void);
  90. void UpdateErrorCodeToOcpp(uint8_t index);
  91. //------------------------------------------------------------------------------
  92. //Primary.c
  93. extern void ChkPrimaryStatus(void);
  94. //RFID.c
  95. extern void CreateRfidFork(void);
  96. extern void ScannerCardProcess(void);
  97. extern bool RfidStopCharging(void);
  98. extern bool GetIsCardScan(void);
  99. extern void SetIsCardScan(bool value);
  100. //SelfTest.c
  101. extern void SelfTestRun(void);
  102. //UpgradeFW.c
  103. /*extern void CheckFwUpdateFunction(void);*/
  104. //Ethernet.c
  105. extern void InitEthernet(void);
  106. extern void GetMacAddress(void);
  107. //WatchDog.c
  108. extern void CreateWatchdog(void);
  109. extern void TryCloseWatchdog(void);
  110. extern void TryFeedWatchdog(void);
  111. //ZipFile.c
  112. extern void zipLogFiles(void);
  113. //------------------------------------------------------------------------------
  114. //--- share memory value ---
  115. //------------------------------------------------------------------------------
  116. static void changeLcmPage(uint8_t index)
  117. {
  118. pSysInfo->SystemPage = index;
  119. }
  120. static uint8_t getCurLcmPage(void)
  121. {
  122. return pSysInfo->SystemPage;
  123. }
  124. static void systemPageRestoreInit(void)
  125. {
  126. pSysInfo->SystemPage = _PAGE_IDLE;
  127. }
  128. //------------------------------------------------------------------------------
  129. void destroySelGun(uint8_t curGun)
  130. {
  131. uint8_t i = 0;
  132. uint8_t totalGun = pSysConfig->TotalConnectorCount;
  133. //for status timeout
  134. if (curGun == DESTROY_ALL_SEL) {
  135. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_RELEASE;
  136. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
  137. log_info("destroy all gun = %d, %d",
  138. ShmSelectGunInfo->SelGunInfo.LeftGun,
  139. ShmSelectGunInfo->SelGunInfo.RightGun);
  140. for (i = 0; i < totalGun; i++) {
  141. StopGunInfoTimeoutDet(i);
  142. memset(&ShmSelectGunInfo->PricesInfo[i], 0, sizeof(PricesInfo));
  143. }
  144. pSysInfo->CurGunSelected = 0;
  145. strcpy((char *)pSysConfig->UserId, "");
  146. //changeLcmPage(_LCM_VIEW);
  147. return;
  148. }
  149. //for charging timeout or complete
  150. if ((curGun == LEFT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.LeftGun != SEL_GUN_RELEASE)) {
  151. if (ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_CONFIRM ||
  152. ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_ATHOR) {
  153. changeLcmPage(_PAGE_SELECT_GUN);
  154. }
  155. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
  156. StopGunInfoTimeoutDet(LEFT_GUN_NUM);
  157. if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf != NO) {
  158. ClearAuthorizedFlag();
  159. }
  160. log_info("destroy left gun, cur page = %d", getCurLcmPage());
  161. if (getCurLcmPage() == pSysInfo->SystemPage) {
  162. log_info("clear left balance");
  163. memset(&ShmSelectGunInfo->PricesInfo[curGun], 0, sizeof(PricesInfo));
  164. ShmSelectGunInfo->PricesInfo[curGun].Balance = FAIL_BALANCE_PRICES;
  165. }
  166. }
  167. if ((curGun == RIGHT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.RightGun != SEL_GUN_RELEASE)) {
  168. if (ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_CONFIRM ||
  169. ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_ATHOR) {
  170. changeLcmPage(_PAGE_SELECT_GUN);
  171. }
  172. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_RELEASE;
  173. StopGunInfoTimeoutDet(RIGHT_GUN_NUM);
  174. if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf != NO) {
  175. ClearAuthorizedFlag();
  176. }
  177. log_info("destroy right gun, cur page = %d", getCurLcmPage());
  178. if (getCurLcmPage() == pSysInfo->SystemPage) {
  179. log_info("clear right balance");
  180. memset(&ShmSelectGunInfo->PricesInfo[curGun], 0, sizeof(PricesInfo));
  181. ShmSelectGunInfo->PricesInfo[curGun].Balance = FAIL_BALANCE_PRICES;
  182. }
  183. }
  184. }
  185. static int waitRightGunPlugIt(uint8_t curGun)
  186. {
  187. if ((curGun == RIGHT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_ATHOR)) {
  188. return PASS;
  189. }
  190. return FAIL;
  191. }
  192. static int waitLeftGunPlugIt(uint8_t curGun)
  193. {
  194. if ((curGun == LEFT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_ATHOR)) {
  195. return PASS;
  196. }
  197. return FAIL;
  198. }
  199. void setSelGunWaitToAuthor(uint8_t curSel)
  200. {
  201. if (curSel == LEFT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_CONFIRM) {
  202. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_ATHOR;
  203. log_info("setSelGunWaitToAuthor left");
  204. StopGunInfoTimeoutDet(curSel);
  205. } else if (curSel == RIGHT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_CONFIRM) {
  206. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_ATHOR;
  207. log_info("setSelGunWaitToAuthor right");
  208. StopGunInfoTimeoutDet(curSel);
  209. }
  210. }
  211. int getConfirmSelectedGun(uint8_t curSel)
  212. {
  213. if (((curSel == LEFT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.LeftGun >= SEL_GUN_CONFIRM)) ||
  214. ((curSel == RIGHT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.RightGun >= SEL_GUN_CONFIRM))) {
  215. return PASS;
  216. }
  217. return FAIL;
  218. }
  219. void confirmSelGun(uint8_t selGun)
  220. {
  221. if (selGun == LEFT_GUN_NUM) {
  222. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_CONFIRM;
  223. //printf("confirmSelGun left");
  224. } else if (selGun == RIGHT_GUN_NUM) {
  225. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_CONFIRM;
  226. //printf("confirmSelGun right");
  227. }
  228. //changeLcmPage(_PAGE_PLUGIN);
  229. //StartGunInfoTimeoutDet(selGun, Timeout_SelectGun);
  230. //StartSystemTimeoutDet(Timeout_ReturnViewPage);
  231. }
  232. static void GetFirmwareVersion(void)
  233. {
  234. // Get CSU root file system version
  235. sprintf((char *)pSysInfo->CsuRootFsFwRev, fwVersion);
  236. uint8_t count = 0, chademo = 0, ccs = 0, gb = 0;
  237. for (uint8_t idx = 0; idx < 3; idx++) {
  238. if (pSysConfig->ModelName[7 + idx] == 'J') {
  239. chademo++;
  240. count++;
  241. } else if (pSysConfig->ModelName[7 + idx] == 'G') {
  242. gb++;
  243. count++;
  244. } else if (pSysConfig->ModelName[7 + idx] == 'U' ||
  245. pSysConfig->ModelName[7 + idx] == 'V' ||
  246. pSysConfig->ModelName[7 + idx] == 'E') {
  247. ccs++;
  248. count++;
  249. }
  250. }
  251. if (count == 1) {
  252. if (chademo > 0) {
  253. pSysInfo->CsuRootFsFwRev[7] = '1';
  254. } else if (ccs > 0) {
  255. pSysInfo->CsuRootFsFwRev[7] = '2';
  256. } else if (gb > 0) {
  257. pSysInfo->CsuRootFsFwRev[7] = '3';
  258. }
  259. } else {
  260. if (chademo > 0 && ccs > 0) {
  261. pSysInfo->CsuRootFsFwRev[7] = '4';
  262. } else if (chademo > 0 && gb > 0) {
  263. pSysInfo->CsuRootFsFwRev[7] = '5';
  264. } else if (ccs > 0 && gb > 0) {
  265. pSysInfo->CsuRootFsFwRev[7] = '6';
  266. }
  267. }
  268. // Get network option from model name
  269. switch (pSysConfig->ModelName[10]) {
  270. case 'B':
  271. case 'U':
  272. //Blue tooth
  273. pSysInfo->CsuRootFsFwRev[9] = '3';
  274. break;
  275. case 'W':
  276. // WIFI
  277. pSysInfo->CsuRootFsFwRev[9] = '1';
  278. break;
  279. case 'T':
  280. // 3G/4G
  281. pSysInfo->CsuRootFsFwRev[9] = '2';
  282. break;
  283. case 'D': //DS60-120 add
  284. pSysInfo->CsuRootFsFwRev[9] = '5';
  285. break;
  286. default:
  287. // LAN
  288. pSysInfo->CsuRootFsFwRev[9] = '0';
  289. break;
  290. }
  291. // Get rating power from model name
  292. memcpy(&pSysInfo->CsuRootFsFwRev[10], &pSysConfig->ModelName[4], 0x03);
  293. // Get IEC or UL
  294. char _buf[3] = {0};
  295. memcpy(_buf, &pSysConfig->ModelName[2], 2);
  296. if (strcmp(_buf, "YE") == EQUAL || strcmp(_buf, "YC") == EQUAL) {
  297. pSysInfo->ChargerType = _CHARGER_TYPE_IEC;
  298. log_info("IEC model");
  299. } else if (strcmp(_buf, "WU") == EQUAL) {
  300. pSysInfo->ChargerType = _CHARGER_TYPE_UL;
  301. log_info("UL model");
  302. }
  303. }
  304. static void checkGunOTPState(uint8_t gunIndex)
  305. {
  306. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  307. //水冷機溫度檢測
  308. if (((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) >> 7) == YES) {
  309. if (pDcChargingInfo->ChillerTemp != UNDEFINED_TEMP) {
  310. if (pDcChargingInfo->ChillerTemp >= GUN_OTP_VALUE) {
  311. if (((gunIndex == 0) &&
  312. ((strncmp((char *)&pSysConfig->ModelName[7], "V", 1) == 0) ||
  313. (strncmp((char *)&pSysConfig->ModelName[7], "F", 1) == 0)))
  314. ||
  315. ((gunIndex == 1) &&
  316. ((strncmp((char *)&pSysConfig->ModelName[9], "V", 1) == 0) ||
  317. (strncmp((char *)&pSysConfig->ModelName[9], "F", 1) == 0)))
  318. ) {
  319. RecordAlarmCode(gunIndex, "012323");
  320. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerOTP = YES;
  321. }
  322. else
  323. {
  324. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerOTP = NO;
  325. }
  326. } else if (pDcChargingInfo->ChillerTemp != 0 &&
  327. pDcChargingInfo->ChillerTemp < GUN_OTP_RECOVERY) {
  328. //ResetChargerAlarmCode(gunIndex, "012323");
  329. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerOTP = NO;
  330. }
  331. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerTempSensorFail = NO;
  332. } else {
  333. // 沒接上 Sensor or 異常
  334. //RecordAlarmCode(gunIndex, "011038");
  335. //ResetChargerAlarmCode(gunIndex, "012323");
  336. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerOTP = NO;
  337. if (((gunIndex == 0) &&
  338. ((strncmp((char *)&pSysConfig->ModelName[7], "V", 1) == 0) ||
  339. (strncmp((char *)&pSysConfig->ModelName[7], "F", 1) == 0)))
  340. ||
  341. ((gunIndex == 1) &&
  342. ((strncmp((char *)&pSysConfig->ModelName[9], "V", 1) == 0) ||
  343. (strncmp((char *)&pSysConfig->ModelName[9], "F", 1) == 0)))
  344. ) {
  345. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerTempSensorFail = YES;
  346. }
  347. else
  348. {
  349. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerTempSensorFail = NO;
  350. }
  351. }
  352. if(pFaultCode->FaultEvents.bits.CcsLiquidChillerWaterLevelFault == YES)
  353. {
  354. RecordAlarmCode(gunIndex, "011037");
  355. }
  356. }
  357. switch (pDcChargingInfo->Type) {
  358. case _Type_Chademo:
  359. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  360. if (pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) {
  361. RecordAlarmCode(gunIndex, "012229");
  362. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = YES;
  363. } else if (pDcChargingInfo->ConnectorTemp != 0 &&
  364. pDcChargingInfo->ConnectorTemp < GUN_OTP_RECOVERY) {
  365. //ResetChargerAlarmCode(gunIndex, "012229");
  366. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = NO;
  367. }
  368. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectTempSensorFail = NO;
  369. } else {
  370. // 沒接上 Sensor or 異常
  371. //RecordAlarmCode(gunIndex, "011018");
  372. //ResetChargerAlarmCode(gunIndex, "012229");
  373. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = NO;
  374. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectTempSensorFail = YES;
  375. if ((gunIndex == 0) &&
  376. (strncmp((char *)&pSysConfig->ModelName[7], "J", 1) == 0)) {
  377. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = NO;
  378. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectTempSensorFail = NO;
  379. } else if ((gunIndex == 1) &&
  380. ((strncmp((char *)&pSysConfig->ModelName[9], "J", 1) == 0) )) {
  381. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = NO;
  382. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectTempSensorFail = NO;
  383. }
  384. }
  385. break;
  386. case _Type_CCS_2:
  387. // CCS 不管甚麼輸出都會有槍溫偵測!!~
  388. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  389. //ResetChargerAlarmCode(gunIndex, "011019");
  390. if (pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) {
  391. RecordAlarmCode(gunIndex, "012230");
  392. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP = YES;
  393. } else if (pDcChargingInfo->ConnectorTemp != 0 &&
  394. pDcChargingInfo->ConnectorTemp < GUN_OTP_RECOVERY) {
  395. //ResetChargerAlarmCode(gunIndex, "012230");
  396. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP = NO;
  397. }
  398. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectTempSensorFail = NO;
  399. //ResetChargerAlarmCode(gunIndex, "011019");
  400. } else {
  401. // 沒接上 Sensor or 異常
  402. //RecordAlarmCode(gunIndex, "011019");
  403. //ResetChargerAlarmCode(gunIndex, "012230");
  404. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP = NO;
  405. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectTempSensorFail = YES;
  406. }
  407. break;
  408. case _Type_GB:
  409. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  410. if (pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) {
  411. RecordAlarmCode(gunIndex, "012231");
  412. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP = YES;
  413. } else if (pDcChargingInfo->ConnectorTemp != 0 &&
  414. pDcChargingInfo->ConnectorTemp < GUN_OTP_RECOVERY) {
  415. //ResetChargerAlarmCode(gunIndex, "012231");
  416. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP = NO;
  417. }
  418. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectTempSensorFail = NO;
  419. } else {
  420. // 沒接上 Sensor or 異常
  421. //RecordAlarmCode(gunIndex, "011020");
  422. //ResetChargerAlarmCode(gunIndex, "012231");
  423. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP = NO;
  424. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectTempSensorFail = YES;
  425. }
  426. break;
  427. }
  428. }
  429. static void collectError(uint8_t gunIndex)
  430. {
  431. gEvBoardErr.GunErrMessage |= ShmDcCommonData->ConnectErrList[gunIndex].GunErrMessage;
  432. gChillerTempErr.TempErrMsg |= ShmDcCommonData->ChillerTempErr[gunIndex].TempErrMsg;
  433. }
  434. static void checkGBTAlarmState(uint8_t gunType)
  435. {
  436. // GFD Trip
  437. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 0)) {
  438. pAlarmCode->AlarmEvents.bits.GbGfdTrip = YES;
  439. } else {
  440. pAlarmCode->AlarmEvents.bits.GbGfdTrip = NO;
  441. }
  442. // UVP
  443. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 1)) {
  444. pAlarmCode->AlarmEvents.bits.GbtOutputUVPFail = YES;
  445. } else {
  446. pAlarmCode->AlarmEvents.bits.GbtOutputUVPFail = NO;
  447. }
  448. // OTP
  449. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 2)) {
  450. pAlarmCode->AlarmEvents.bits.GbConnectorOTP = YES;
  451. } else {
  452. pAlarmCode->AlarmEvents.bits.GbConnectorOTP = NO;
  453. }
  454. // OVP
  455. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 3)) {
  456. pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = YES;
  457. } else {
  458. pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = NO;
  459. }
  460. // GFD Warning
  461. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 4)) {
  462. pAlarmCode->AlarmEvents.bits.GbGroundfaultWarning = YES;
  463. } else {
  464. pAlarmCode->AlarmEvents.bits.GbGroundfaultWarning = NO;
  465. }
  466. // Relay Welding
  467. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 5)) {
  468. pFaultCode->FaultEvents.bits.GbOutputRelayWelding = YES;
  469. } else {
  470. pFaultCode->FaultEvents.bits.GbOutputRelayWelding = NO;
  471. }
  472. // Relay Driving
  473. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 6)) {
  474. pFaultCode->FaultEvents.bits.GbOutputRelayDrivingFault = YES;
  475. } else {
  476. pFaultCode->FaultEvents.bits.GbOutputRelayDrivingFault = NO;
  477. }
  478. // Connect temp Sensor broken
  479. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 7)) {
  480. pFaultCode->FaultEvents.bits.GbConnectorTempSensorBroken = YES;
  481. } else {
  482. pFaultCode->FaultEvents.bits.GbConnectorTempSensorBroken = NO;
  483. }
  484. }
  485. static void checkCCSAlarmState(uint8_t gunType)
  486. {
  487. // GFD Trip
  488. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 0)) {
  489. pAlarmCode->AlarmEvents.bits.CcsGfdTrip = YES;
  490. } else {
  491. pAlarmCode->AlarmEvents.bits.CcsGfdTrip = NO;
  492. }
  493. // UVP
  494. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 1)) {
  495. pAlarmCode->AlarmEvents.bits.CcsOutputUVPFail = YES;
  496. } else {
  497. pAlarmCode->AlarmEvents.bits.CcsOutputUVPFail = NO;
  498. }
  499. // OTP
  500. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 2)) {
  501. pAlarmCode->AlarmEvents.bits.CcsConnectorOTP = YES;
  502. } else {
  503. pAlarmCode->AlarmEvents.bits.CcsConnectorOTP = NO;
  504. }
  505. // OVP
  506. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 3)) {
  507. pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = YES;
  508. } else {
  509. pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = NO;
  510. }
  511. // GFD Warning
  512. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 4)) {
  513. pAlarmCode->AlarmEvents.bits.CcsGroundfaultWarning = YES;
  514. } else {
  515. pAlarmCode->AlarmEvents.bits.CcsGroundfaultWarning = NO;
  516. }
  517. // Relay Welding
  518. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 5)) {
  519. pFaultCode->FaultEvents.bits.CcsOutputRelayWelding = YES;
  520. } else {
  521. pFaultCode->FaultEvents.bits.CcsOutputRelayWelding = NO;
  522. }
  523. // Relay Driving
  524. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 6)) {
  525. pFaultCode->FaultEvents.bits.CcsOutputRelayDrivingFault = YES;
  526. } else {
  527. pFaultCode->FaultEvents.bits.CcsOutputRelayDrivingFault = NO;
  528. }
  529. // Connect temp Sensor broken
  530. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 7)) {
  531. pFaultCode->FaultEvents.bits.CcsConnectorTempSensorBroken = YES;
  532. } else {
  533. pFaultCode->FaultEvents.bits.CcsConnectorTempSensorBroken = NO;
  534. }
  535. }
  536. static void checkChaDeMoAlarmState(uint8_t gunType)
  537. {
  538. // GFD Trip
  539. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 0)) {
  540. pAlarmCode->AlarmEvents.bits.ChademoGfdTrip = YES;
  541. } else {
  542. pAlarmCode->AlarmEvents.bits.ChademoGfdTrip = NO;
  543. }
  544. // UVP
  545. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 1)) {
  546. pAlarmCode->AlarmEvents.bits.ChademoOutputUVPFail = YES;
  547. } else {
  548. pAlarmCode->AlarmEvents.bits.ChademoOutputUVPFail = NO;
  549. }
  550. // OTP
  551. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 2)) {
  552. pAlarmCode->AlarmEvents.bits.ChademoConnectorOTP = YES;
  553. } else {
  554. pAlarmCode->AlarmEvents.bits.ChademoConnectorOTP = NO;
  555. }
  556. // OVP
  557. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 3)) {
  558. pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = YES;
  559. } else {
  560. pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = NO;
  561. }
  562. // GFD Warning
  563. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 4)) {
  564. pAlarmCode->AlarmEvents.bits.ChademoGroundWarning = YES;
  565. } else {
  566. pAlarmCode->AlarmEvents.bits.ChademoGroundWarning = NO;
  567. }
  568. // Relay Welding
  569. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 5)) {
  570. pFaultCode->FaultEvents.bits.ChademoOutputRelayWelding = YES;
  571. } else {
  572. pFaultCode->FaultEvents.bits.ChademoOutputRelayWelding = NO;
  573. }
  574. // Relay Driving
  575. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 6)) {
  576. pFaultCode->FaultEvents.bits.ChademoOutputRelayDrivingFault = YES;
  577. } else {
  578. pFaultCode->FaultEvents.bits.ChademoOutputRelayDrivingFault = NO;
  579. }
  580. // Connect temp Sensor broken
  581. if (DetectBitValue(gEvBoardErr.GunErrMessage >> (8 * gunType), 7)) {
  582. pFaultCode->FaultEvents.bits.ChademoConnectorTempSensorBroken = YES;
  583. } else {
  584. pFaultCode->FaultEvents.bits.ChademoConnectorTempSensorBroken = NO;
  585. }
  586. }
  587. static void checkChillerAlarmState(void)
  588. {
  589. if (DetectBitValue(gChillerTempErr.TempErrMsg, 0)) {
  590. pAlarmCode->AlarmEvents.bits.SystemChillerOTP = YES;
  591. } else {
  592. pAlarmCode->AlarmEvents.bits.SystemChillerOTP = NO;
  593. }
  594. if (DetectBitValue(gChillerTempErr.TempErrMsg, 1)) {
  595. pFaultCode->FaultEvents.bits.ChillerTempSensorBroken = YES;
  596. } else {
  597. pFaultCode->FaultEvents.bits.ChillerTempSensorBroken = NO;
  598. }
  599. }
  600. static void checkEvBoardAlarmState(uint8_t gunType)
  601. {
  602. switch (gunType) {
  603. case _Type_Chademo:
  604. checkChaDeMoAlarmState(gunType);
  605. break;
  606. case _Type_CCS_2:
  607. checkCCSAlarmState(gunType);
  608. break;
  609. case _Type_GB:
  610. checkGBTAlarmState(gunType);
  611. break;
  612. }
  613. }
  614. unsigned long GetTimeoutValue(struct timeval _sour_time)
  615. {
  616. struct timeval _end_time;
  617. gettimeofday(&_end_time, NULL);
  618. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  619. }
  620. void GetClockTime(struct timespec *_now_time, void *null)
  621. {
  622. clock_gettime(CLOCK_MONOTONIC, _now_time);
  623. }
  624. // return value unit: 1us
  625. unsigned long GetClockTimeoutValue(struct timespec _start_time)
  626. {
  627. struct timespec ts_end;
  628. unsigned long ret = 0;
  629. clock_gettime(CLOCK_MONOTONIC, &ts_end);
  630. ret = ((unsigned long)(ts_end.tv_sec - _start_time.tv_sec) * 1000000) + ((unsigned long)((ts_end.tv_nsec / 1000) - (_start_time.tv_nsec/ 1000)));
  631. return ret;
  632. }
  633. int DiffTimeb(struct timeb ST, struct timeb ET)
  634. {
  635. //return milli-second
  636. unsigned int StartTime, StopTime;
  637. StartTime = (unsigned int)ST.time;
  638. StopTime = (unsigned int)ET.time;
  639. //return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  640. return (StopTime - StartTime);
  641. }
  642. bool CheckTimeOut(struct timeb ST)
  643. {
  644. struct timeb ET;
  645. unsigned int StartTime, StopTime;
  646. ftime(&ET);
  647. StartTime = (unsigned int) ST.time;
  648. StopTime = (unsigned int) ET.time;
  649. return (StopTime > StartTime) ? YES : NO;
  650. }
  651. void setChargerMode(uint8_t gunIndex, uint8_t mode)
  652. {
  653. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  654. pDcChargingInfo->SystemStatus = mode;
  655. }
  656. long long DiffTimebWithNow(struct timeb ST)
  657. {
  658. //return milli-second
  659. struct timeb ET;
  660. long long StartTime, StopTime;
  661. ftime(&ET);
  662. StartTime = (long long)ST.time;
  663. StopTime = (long long)ET.time;
  664. return ((StopTime - StartTime) * 1000) + (ET.millitm - ST.millitm);
  665. }
  666. //==========================================
  667. // Log
  668. //==========================================
  669. void CheckFwSlotStatusLog(void)
  670. {
  671. if (bd0_1_status == 0 && bd0_2_status == 1) {
  672. log_info("Connector 1 : Chademo");
  673. } else if (bd0_1_status == 1 && bd0_2_status == 0) {
  674. log_info("Connector 1 : CCS");
  675. } else if (bd0_1_status == 1 && bd0_2_status == 1) {
  676. log_info("Connector 1 : GB");
  677. }
  678. if (bd1_1_status == 0 && bd1_2_status == 1) {
  679. log_info("Connector 2 : Chademo");
  680. } else if (bd1_1_status == 1 && bd1_2_status == 0) {
  681. log_info("Connector 2 : CCS");
  682. } else if (bd1_1_status == 1 && bd1_2_status == 1) {
  683. log_info("Connector 2 : GB");
  684. }
  685. }
  686. void CheckHwSlotStatusLog(uint8_t index)
  687. {
  688. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  689. if (pDcChargingInfo->Type == _Type_Chademo) {
  690. log_info("Hw check : Connector %d, Type : Chademo, Evboard_id = %d ",
  691. index, pDcChargingInfo->Evboard_id);
  692. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  693. log_info("Hw check : Connector %d, Type : CCS, Evboard_id = %d ",
  694. index, pDcChargingInfo->Evboard_id);
  695. } else if (pDcChargingInfo->Type == _Type_GB) {
  696. log_info("Hw check : Connector %d, Type : GB, Evboard_id = %d ",
  697. index, pDcChargingInfo->Evboard_id);
  698. }
  699. }
  700. //=================================
  701. // LCM Page
  702. //=================================
  703. void ChangeLcmByIndex(uint8_t page_index)
  704. {
  705. if (pSysWarning->Level != WARN_LV_ER
  706. ) {
  707. pSysInfo->PageIndex = page_index;
  708. //log_info("LCM index:%d",pSysInfo->PageIndex);
  709. }
  710. }
  711. //======================================================
  712. // Peripheral initial
  713. //======================================================
  714. void InitGPIO()
  715. {
  716. /*****************0~3, 4 bank, bank x 32+ num*********************/
  717. /***************************************************************/
  718. /*************** GPIO 0 ***************************************/
  719. /***************************************************************/
  720. /* GPMC_AD8 => GPIO0_22 *//*ID BD1_1*/
  721. system("echo 22 > /sys/class/gpio/export");
  722. system("echo \"in\" > /sys/class/gpio/gpio22/direction");
  723. /* GPMC_AD9 => GPIO0_23 *//*ID BD1_2*/
  724. system("echo 23 > /sys/class/gpio/export");
  725. system("echo \"in\" > /sys/class/gpio/gpio23/direction");
  726. /* GPMC_AD10 => GPIO0_26 *//*IO BD1_1*/
  727. system("echo 26 > /sys/class/gpio/export");
  728. system("echo \"out\" > /sys/class/gpio/gpio26/direction");
  729. system("echo 1 > /sys/class/gpio/gpio26/value");
  730. /* GPMC_AD11 => GPIO0_27 *//*IO BD1_2*/
  731. system("echo 27 > /sys/class/gpio/export");
  732. system("echo \"in\" > /sys/class/gpio/gpio27/direction");
  733. /* RMII1_REF_CLK => GPIO0_29 *//*USB 0 OCP detection*/
  734. system("echo 29 > /sys/class/gpio/export");
  735. system("echo \"in\" > /sys/class/gpio/gpio29/direction");
  736. /*XDMA_EVENT_INTR0 => GPIO0_19 *//*AM_RFID_RST*/
  737. system("echo 19 > /sys/class/gpio/export");
  738. system("echo \"out\" > /sys/class/gpio/gpio19/direction");
  739. system("echo 1 > /sys/class/gpio/gpio19/value");
  740. /*XDMA_EVENT_INTR1 => GPIO0_20 *//*AM_RFID_ICC*/
  741. system("echo 20 > /sys/class/gpio/export");
  742. system("echo \"in\" > /sys/class/gpio/gpio20/direction");
  743. /***************************************************************/
  744. /*************** GPIO 1 ***************************************/
  745. /***************************************************************/
  746. /* GPMC_AD12 => GPIO1_12 *//*ID BD2_1*/
  747. system("echo 44 > /sys/class/gpio/export");
  748. system("echo \"in\" > /sys/class/gpio/gpio44/direction");
  749. /* GPMC_AD13 => GPIO1_13 *//*ID BD2_2*/
  750. system("echo 45 > /sys/class/gpio/export");
  751. system("echo \"in\" > /sys/class/gpio/gpio45/direction");
  752. /* GPMC_AD14 => GPIO1_14 *//*IO BD2_1*/
  753. system("echo 46 > /sys/class/gpio/export");
  754. system("echo \"out\" > /sys/class/gpio/gpio46/direction");
  755. system("echo 0 > /sys/class/gpio/gpio46/value");
  756. /* GPMC_AD15 => GPIO1_15 *//*IO BD2_2*/
  757. system("echo 47 > /sys/class/gpio/export");
  758. system("echo \"in\" > /sys/class/gpio/gpio47/direction");
  759. /***************************************************************/
  760. /*************** GPIO 2 ***************************************/
  761. /***************************************************************/
  762. /*LCD_AC_BIAS_EN => GPIO2_25*//*RS-485 for module DE control*/
  763. system("echo 89 > /sys/class/gpio/export");
  764. system("echo \"out\" > /sys/class/gpio/gpio89/direction");
  765. system("echo 1 > /sys/class/gpio/gpio89/value");
  766. /*LCD_HSYNC => GPIO2_23*//*RS-485 for module RE control*/
  767. system("echo 87 > /sys/class/gpio/export");
  768. system("echo \"out\" > /sys/class/gpio/gpio87/direction");
  769. system("echo 0 > /sys/class/gpio/gpio87/value");
  770. /*LCD_PCLK => GPIO2_24*//*CCS communication board 1 proximity*/
  771. system("echo 88 > /sys/class/gpio/export");
  772. system("echo \"in\" > /sys/class/gpio/gpio88/direction");
  773. /*LCD_VSYNC => GPIO2_22*//*CCS communication board 2 proximity*/
  774. system("echo 86 > /sys/class/gpio/export");
  775. system("echo \"in\" > /sys/class/gpio/gpio86/direction");
  776. /***************************************************************/
  777. /*************** GPIO 3 ***************************************/
  778. /***************************************************************/
  779. /*MCASP0_FSX => GPIO3_15*//*Emergency Stop button detect*/
  780. system("echo 111 > /sys/class/gpio/export");
  781. system("echo \"in\" > /sys/class/gpio/gpio111/direction");
  782. /*MCASP0_ACLKR => GPIO3_18*//*USB1 OCP detect*/
  783. system("echo 114 > /sys/class/gpio/export");
  784. system("echo \"in\" > /sys/class/gpio/gpio114/direction");
  785. /*MCASP0_AHCLKR => GPIO3_17*//*Emergency IO for AM3352 and STM32F407*/
  786. system("echo 113 > /sys/class/gpio/export");
  787. system("echo \"in\" > /sys/class/gpio/gpio113/direction");
  788. /*MCASP0_ACLKX => GPIO3_14*//*Ethernet PHY reset*/
  789. system("echo 110 > /sys/class/gpio/export");
  790. system("echo \"out\" > /sys/class/gpio/gpio110/direction");
  791. system("echo 0 > /sys/class/gpio/gpio110/value");
  792. /* MCASP0_FSR => GPIO3_19 *//*SMR Enable control_1 for Pskill_1*/
  793. system("echo 115 > /sys/class/gpio/export");
  794. system("echo \"out\" > /sys/class/gpio/gpio115/direction");
  795. system("echo 0 > /sys/class/gpio/gpio115/value");
  796. /* MCASP0_AXR0 => GPIO3_16 *//*CSU board function OK indicator.*/
  797. system("echo 112 > /sys/class/gpio/export");
  798. system("echo \"out\" > /sys/class/gpio/gpio112/direction");
  799. system("echo 1 > /sys/class/gpio/gpio112/value");
  800. /* MCASP0_AXR1 => GPIO3_20 *//*SMR Enable control_2 for Pskill_2*/
  801. system("echo 116 > /sys/class/gpio/export");
  802. system("echo \"out\" > /sys/class/gpio/gpio116/direction");
  803. system("echo 0 > /sys/class/gpio/gpio116/value");
  804. log_info("Initial GPIO OK");
  805. return ;
  806. }
  807. int LoadSysConfigAndInfo()
  808. {
  809. int fd, wrd;
  810. unsigned char *buf;
  811. unsigned int ChkSum, ChkSumOrg;
  812. if ((buf = malloc(MtdBlockSize)) == NULL) {
  813. log_error("malloc buffer NG,rebooting..");
  814. if (pAlarmCode != NULL) {
  815. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  816. }
  817. sleep(5);
  818. system("reboot -f");
  819. sleep(5);
  820. system("reboot -f");
  821. }
  822. memset(buf, 0, MtdBlockSize);
  823. //================================================
  824. // Load configuration from mtdblock10
  825. //================================================
  826. system("nanddump /dev/mtd10 -f /mnt/EvseConfig.bin");
  827. fd = open("/mnt/EvseConfig.bin", O_RDWR);
  828. if (fd < 0) {
  829. free(buf);
  830. log_error("open mtdblock10 NG,rebooting..");
  831. if (pAlarmCode != NULL) {
  832. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  833. }
  834. sleep(5);
  835. system("reboot -f");
  836. sleep(5);
  837. system("reboot -f");
  838. }
  839. wrd = read(fd, buf, MtdBlockSize);
  840. close(fd);
  841. if (wrd < MtdBlockSize) {
  842. free(buf);
  843. log_error("read SysConfigData data NG,rebooting..");
  844. if (pAlarmCode != NULL) {
  845. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  846. }
  847. sleep(5);
  848. system("reboot -f");
  849. sleep(5);
  850. system("reboot -f");
  851. }
  852. ChkSum = 0;
  853. for (wrd = ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev); wrd < MtdBlockSize - 4; wrd++) {
  854. ChkSum += buf[wrd];
  855. }
  856. memcpy(&ChkSumOrg, buf + (MtdBlockSize - 4), sizeof(ChkSumOrg));
  857. memcpy(&pSysConfig->ModelName, buf + (ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev)), ARRAY_SIZE(pSysConfig->ModelName));
  858. memcpy(&pSysConfig->SerialNumber, buf + (ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev) + ARRAY_SIZE(pSysConfig->ModelName) + ARRAY_SIZE(pSysConfig->AcModelName)), ARRAY_SIZE(pSysConfig->SerialNumber));
  859. //================================================
  860. // Load configuration from mtdblock11
  861. //================================================
  862. if (ChkSum != ChkSumOrg) {
  863. log_error("Primary SysConfigData checksum NG, read backup");
  864. system("nanddump /dev/mtd11 -f /mnt/EvseConfig.bin");
  865. fd = open("/mnt/EvseConfig.bin", O_RDWR);
  866. if (fd < 0) {
  867. free(buf);
  868. log_error("open mtdblock11 (backup) NG,rebooting..");
  869. if (pAlarmCode != NULL) {
  870. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  871. }
  872. sleep(5);
  873. system("reboot -f");
  874. sleep(5);
  875. system("reboot -f");
  876. }
  877. memset(buf, 0, MtdBlockSize);
  878. wrd = read(fd, buf, MtdBlockSize);
  879. close(fd);
  880. if (wrd < MtdBlockSize) {
  881. free(buf);
  882. log_error("read backup SysConfigData data NG,rebooting..");
  883. if (pAlarmCode != NULL) {
  884. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  885. }
  886. sleep(5);
  887. system("reboot -f");
  888. sleep(5);
  889. system("reboot -f");
  890. }
  891. ChkSum = 0;
  892. for (wrd = ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev); wrd < MtdBlockSize - 4; wrd++) {
  893. ChkSum += buf[wrd];
  894. }
  895. memcpy(&ChkSumOrg, buf + (MtdBlockSize - 4), sizeof(ChkSumOrg));
  896. //================================================
  897. // Load configuration from mtdblock12 (Factory default)
  898. //================================================
  899. if (ChkSum != ChkSumOrg) {
  900. log_warn("backup SysConfigData checksum NG, read Factory default");
  901. system("nanddump /dev/mtd12 -f /mnt/EvseConfig.bin");
  902. fd = open("/mnt/EvseConfig.bin", O_RDWR);
  903. if (fd < 0) {
  904. log_error("open mtdblock12 (Factory default) NG,rebooting..");
  905. free(buf);
  906. if (pAlarmCode != NULL) {
  907. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  908. }
  909. sleep(5);
  910. system("reboot -f");
  911. sleep(5);
  912. system("reboot -f");
  913. }
  914. memset(buf, 0, MtdBlockSize);
  915. wrd = read(fd, buf, MtdBlockSize);
  916. close(fd);
  917. if (wrd < MtdBlockSize) {
  918. log_error("read factory default SysConfigData data NG,rebooting..");
  919. free(buf);
  920. if (pAlarmCode != NULL) {
  921. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  922. }
  923. sleep(5);
  924. system("reboot -f");
  925. sleep(5);
  926. system("reboot -f");
  927. }
  928. ChkSum = 0;
  929. for (wrd = ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev); wrd < MtdBlockSize - 4; wrd++) {
  930. ChkSum += buf[wrd];
  931. }
  932. memcpy(&ChkSumOrg, buf + (MtdBlockSize - 4), sizeof(ChkSumOrg));
  933. memcpy(buf + (ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev)), &pSysConfig->ModelName, ARRAY_SIZE(pSysConfig->ModelName));
  934. memcpy(buf + (ARRAY_SIZE(pSysConfig->CsuBootLoadFwRev) + ARRAY_SIZE(pSysConfig->ModelName) + ARRAY_SIZE(pSysConfig->AcModelName)), &pSysConfig->SerialNumber, ARRAY_SIZE(pSysConfig->SerialNumber));
  935. if (ChkSum != ChkSumOrg) {
  936. log_warn("factory default SysConfigData checksum NG, restore factory default");
  937. free(buf);
  938. system("cd /root;./FactoryConfig -m");
  939. system("rm -f /Storage/OCPP/OCPPConfiguration");
  940. system("sync");
  941. sleep(5);
  942. system("reboot -f");
  943. sleep(5);
  944. system("reboot -f");
  945. return FAIL;
  946. }
  947. }
  948. }
  949. //load OK
  950. memcpy(pSysConfig, buf, sizeof(struct SysConfigData));
  951. free(buf);
  952. system("rm -f /mnt/EvseConfig.bin");
  953. // SysConfig in flash is empty (0xffffffff)
  954. if ((strlen((char *)pSysConfig->ModelName) > ARRAY_SIZE(pSysConfig->ModelName)) ||
  955. (strlen((char *)pSysConfig->SerialNumber) > ARRAY_SIZE(pSysConfig->SerialNumber)) ||
  956. (strlen((char *)pSysConfig->SystemId) > ARRAY_SIZE(pSysConfig->SystemId)) ||
  957. (pSysConfig->Eth0Interface.EthDhcpClient == 0xff)) {
  958. if (strlen((char *)pSysConfig->ModelName) > ARRAY_SIZE(pSysConfig->ModelName)) {
  959. memset(pSysConfig->ModelName, 0x00, ARRAY_SIZE(pSysConfig->ModelName));
  960. }
  961. if (strlen((char *)pSysConfig->SerialNumber) > ARRAY_SIZE(pSysConfig->SerialNumber)) {
  962. memset(pSysConfig->SerialNumber, 0x00, ARRAY_SIZE(pSysConfig->SerialNumber));
  963. }
  964. if (strlen((char *)pSysConfig->SystemId) > ARRAY_SIZE(pSysConfig->SystemId)) {
  965. memset(pSysConfig->SystemId, 0x00, ARRAY_SIZE(pSysConfig->SystemId));
  966. }
  967. if (pSysConfig->Eth0Interface.EthDhcpClient == 0xff) {
  968. log_info("Ethernet dhcp config is null.");
  969. }
  970. if (strlen((char *)pSysConfig->ModelName) == 0x00) {
  971. log_info("Model name over length.");
  972. }
  973. if (strlen((char *)pSysConfig->SerialNumber) == 0x00) {
  974. log_info("Model serial number over length.");
  975. }
  976. if (strlen((char *)pSysConfig->SystemId) == 0x00) {
  977. log_info("SystemId over length.");
  978. }
  979. system("cd /root;./FactoryConfig -m");
  980. sleep(3);
  981. system("/usr/bin/run_evse_restart.sh");
  982. }
  983. log_info("Load SysConfigData OK");
  984. return PASS;
  985. }
  986. int Initialization(void)
  987. {
  988. uint8_t count = 0;
  989. uint8_t pinOut[2] = {116, 115};
  990. // 初始化卡號驗證的 Flag
  991. ClearAuthorizedFlag();
  992. // 初始化插槍驗證的 Flag
  993. ClearDetectPluginFlag();
  994. for (count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  995. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  996. pDcChargingInfo->RemoteStartFlag = NO;
  997. if (pDcChargingInfo->Type == _Type_Chademo) {
  998. gpio_set_value(pinOut[count], 0x00);
  999. ShmCHAdeMOData->evse[pDcChargingInfo->type_index].SelfTest_Comp = NO;
  1000. } else if (pDcChargingInfo->Type == _Type_GB) {
  1001. gpio_set_value(pinOut[count], 0x00);
  1002. ShmGBTData->evse[pDcChargingInfo->type_index].SelfTest_Comp = NO;
  1003. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1004. //if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) { //DS60-120 remove
  1005. if (pSysConfig->TotalConnectorCount == 1) {
  1006. gpio_set_value(pinOut[1], 0x01);
  1007. } else {
  1008. gpio_set_value(pinOut[count], 0x01);
  1009. }
  1010. ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].SelfTest_Comp = NO;
  1011. //}
  1012. }
  1013. strcpy((char *)ShmOCPP16Data->StatusNotification[count].ErrorCode, "NoError");
  1014. }
  1015. for (count = 0; count < pSysConfig->AcConnectorCount; count++) {
  1016. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(count);
  1017. pAcChargingInfo->RemoteStartFlag = NO;
  1018. if (pAcChargingInfo->Type == _Type_AC) {
  1019. pAcChargingInfo->SelfTest_Comp = NO;
  1020. strcpy((char *)ShmOCPP16Data->StatusNotification[count + pSysConfig->TotalConnectorCount].ErrorCode, "NoError");
  1021. }
  1022. }
  1023. return PASS;
  1024. }
  1025. bool InitialSystemDefaultConfig()
  1026. {
  1027. bool result = true;
  1028. LoadSysConfigAndInfo();
  1029. InitGPIO();
  1030. InitEthernet();
  1031. GetMacAddress();
  1032. return result;
  1033. }
  1034. //顯示自檢錯誤原因,觸發對應的flag
  1035. bool DisplaySelfTestFailReason()
  1036. {
  1037. bool result = false;
  1038. uint8_t index = 0;
  1039. // RB、FB、407、EV 小板中有些板子無回應
  1040. if (ShmRelayModuleData->SelfTest_Comp == NO) {
  1041. pAlarmCode->AlarmEvents.bits.RelayboardStestFail = true;
  1042. }
  1043. if (ShmFanModuleData->SelfTest_Comp == NO) {
  1044. pAlarmCode->AlarmEvents.bits.FanboardStestFail = true;
  1045. }
  1046. if (ShmPrimaryMcuData->SelfTest_Comp == NO) {
  1047. pAlarmCode->AlarmEvents.bits.PrimaryStestFail = true;
  1048. }
  1049. if (ShmLedModuleData->SelfTest_Comp == NO) {
  1050. pAlarmCode->AlarmEvents.bits.LedboardStestFail = true;
  1051. }
  1052. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  1053. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  1054. if (pDcChargingInfo->Type == _Type_Chademo) {
  1055. if (ShmCHAdeMOData->evse[pDcChargingInfo->type_index].SelfTest_Comp == NO) {
  1056. pAlarmCode->AlarmEvents.bits.ChademoboardStestFail = true;
  1057. }
  1058. } else if (pDcChargingInfo->Type == _Type_GB) {
  1059. if (ShmGBTData->evse[pDcChargingInfo->type_index].SelfTest_Comp == NO) {
  1060. pAlarmCode->AlarmEvents.bits.GbtboardStestFail = true;
  1061. }
  1062. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1063. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  1064. if (ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].SelfTest_Comp == NO) {
  1065. pAlarmCode->AlarmEvents.bits.CCSboardStestFail = true;
  1066. }
  1067. }
  1068. }
  1069. }
  1070. for (index = 0; index < pSysConfig->AcConnectorCount; index++) {
  1071. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(index);
  1072. // 先借 GBT 顯示
  1073. if (pAcChargingInfo->SelfTest_Comp == NO) {
  1074. pAlarmCode->AlarmEvents.bits.AcConnectorStestFail = true;
  1075. }
  1076. }
  1077. if (pSysInfo->AcContactorStatus == NO) {
  1078. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox &&!defined DD360UCar
  1079. // AC Contact 未搭上
  1080. pAlarmCode->AlarmEvents.bits.AcContactStestFail = true;
  1081. result = true;
  1082. #endif // !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  1083. }
  1084. //else if (pAlarmCode->AlarmEvents.bits.PsuDipSwitchStestFail == YES) { //DS60-120 add
  1085. // result = true;
  1086. //}
  1087. else if (ShmPsuData->SystemAvailablePower <= 0 &&
  1088. ShmPsuData->SystemAvailableCurrent <= 0) {
  1089. // PSU 通訊問題
  1090. pAlarmCode->AlarmEvents.bits.PsuModuleStestFail = true;
  1091. result = true;
  1092. }
  1093. return result;
  1094. }
  1095. //===============================================
  1096. // Common Detect Chk - Stop Charging ?
  1097. //===============================================
  1098. int isEvBoardStopChargeFlag(uint8_t gunIndex)
  1099. {
  1100. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1101. //printf("StopChargeFlag = %d", chargingInfo[gunIndex]->StopChargeFlag);
  1102. return pDcChargingInfo->StopChargeFlag;
  1103. }
  1104. bool isEvBoardNormalStopChargeFlag(uint8_t gunIndex)
  1105. {
  1106. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1107. return pDcChargingInfo->NormalStopChargeFlag;
  1108. }
  1109. //===============================================
  1110. // 掃描插槍狀況
  1111. //===============================================
  1112. void ClearDetectPluginFlag(void)
  1113. {
  1114. uint8_t gunIndex = 0;
  1115. pSysInfo->WaitForPlugit = NO;
  1116. //DS60-120 add
  1117. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  1118. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1119. /*
  1120. if (pDcChargingInfo->RemoteStartFlag == YES) {
  1121. pDcChargingInfo->RemoteStartFlag = NO;
  1122. }
  1123. */
  1124. }
  1125. if (pSysInfo->OrderCharging != NO_DEFINE) {
  1126. pSysInfo->OrderCharging = NO_DEFINE;
  1127. }
  1128. }
  1129. void DetectPluginStart()
  1130. {
  1131. pSysInfo->WaitForPlugit = YES;
  1132. }
  1133. bool isDetectPlugin()
  1134. {
  1135. if (pSysInfo->WaitForPlugit == YES) {
  1136. return true;
  1137. }
  1138. return false;
  1139. }
  1140. //===============================================
  1141. // Common Detect Chk - Chademo
  1142. //===============================================
  1143. bool isEvGunLocked_chademo(uint8_t gunIndex)
  1144. {
  1145. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1146. return (DetectBitValue(pDcChargingInfo->GunLocked , 0) == 0) ? NO : YES;
  1147. }
  1148. bool isEvContactorWelding_chademo(uint8_t gunIndex)
  1149. {
  1150. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1151. return DetectBitValue(ShmCHAdeMOData->ev[pDcChargingInfo->type_index].EvDetection, 3);
  1152. }
  1153. bool isEvStopReq_chademo(uint8_t gunIndex)
  1154. {
  1155. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1156. return DetectBitValue(ShmCHAdeMOData->ev[pDcChargingInfo->type_index].EvDetection, 4);
  1157. }
  1158. bool isEvStopCharging_chademo(uint8_t gunIndex)
  1159. {
  1160. if (isEvGunLocked_chademo(gunIndex) == NO) {
  1161. // 無鎖槍 = 停止
  1162. log_info("gun locked none (%d) ", gunIndex);
  1163. return YES;
  1164. }
  1165. return NO;
  1166. }
  1167. uint8_t isPrechargeStatus_chademo(uint8_t gunIndex)
  1168. {
  1169. uint8_t result = 0x00;
  1170. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1171. result = ShmCHAdeMOData->ev[pDcChargingInfo->type_index].PresentMsgFlowStatus;
  1172. return result;
  1173. }
  1174. //===============================================
  1175. // Common Detect Chk - GB
  1176. //===============================================
  1177. bool isEvGunLocked_gb(uint8_t gunIndex)
  1178. {
  1179. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1180. return (DetectBitValue(pDcChargingInfo->GunLocked , 0) == 0) ? NO : YES;
  1181. }
  1182. bool isEvStopCharging_gb(uint8_t gunIndex)
  1183. {
  1184. if (isEvGunLocked_gb(gunIndex) == NO) {
  1185. // 無鎖槍 = 停止
  1186. log_info("gun locked none. ");
  1187. return YES;
  1188. }
  1189. return NO;
  1190. }
  1191. uint8_t isPrechargeStatus_gb(uint8_t gunIndex)
  1192. {
  1193. uint8_t result = 0x00;
  1194. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1195. result = ShmGBTData->ev[pDcChargingInfo->type_index].PresentMsgFlowStatus;
  1196. return result;
  1197. }
  1198. //===============================================
  1199. // Common Detect Chk - CCS
  1200. //===============================================
  1201. bool isEvGunLocked_ccs(uint8_t gunIndex)
  1202. {
  1203. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1204. return (DetectBitValue(pDcChargingInfo->GunLocked , 0) == 0) ? NO : YES;
  1205. }
  1206. uint8_t isPrechargeStatus_ccs(uint8_t gunIndex)
  1207. {
  1208. uint8_t result = 0x00;
  1209. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1210. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  1211. result = ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].PresentMsgFlowStatus;
  1212. }
  1213. return result;
  1214. }
  1215. bool isEvStopCharging_ccs(uint8_t gunIndex)
  1216. {
  1217. if (isEvGunLocked_ccs(gunIndex) == NO) {
  1218. // 無鎖槍 = 停止
  1219. log_info("gun locked none. ");
  1220. return YES;
  1221. }
  1222. return NO;
  1223. }
  1224. //===============================================
  1225. // Callback
  1226. //===============================================
  1227. void DisplayChargingInfo()
  1228. {
  1229. uint8_t i = 0;
  1230. log_info("*********** DisplayChargingInfo *********** ");
  1231. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1232. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1233. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  1234. pDcChargingInfo->SystemStatus != S_RESERVATION) {
  1235. ChangeGunSelectByIndex(i);
  1236. return;
  1237. }
  1238. }
  1239. if (pSysConfig->AcConnectorCount > 0 &&
  1240. pSysInfo->CurGunSelectedByAc == NO_DEFINE)
  1241. {
  1242. pAcChargingInfo = (struct ChargingInfoData*)GetAcChargingInfoData(0);
  1243. if (pAcChargingInfo->SystemStatus >= S_PREPARNING &&
  1244. pAcChargingInfo->SystemStatus <= S_COMPLETE)
  1245. {
  1246. pSysInfo->CurGunSelectedByAc = DEFAULT_AC_INDEX;
  1247. }
  1248. }
  1249. usleep(50000);
  1250. systemPageRestoreInit();
  1251. }
  1252. void _AutoReturnTimeout(void)
  1253. {
  1254. log_info("*********** _AutoReturnTimeout(%d) *********** ", pSysInfo->PageIndex);
  1255. if (pSysInfo->PageIndex == _PAGE_PRECHARGE) {
  1256. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  1257. pDcChargingInfo->SystemStatus = S_ALARM;
  1258. //pSysInfo->SystemPage = _LCM_ERROR;
  1259. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  1260. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  1261. ShmDcCommonData->PreAuth_Result = 0;
  1262. //pSysInfo->SystemPage = _PAGE_PAYING;
  1263. //StartGunInfoTimeoutDet(pSysInfo->CurGunSelected,Timeout_FinalCost);
  1264. ClearDetectPluginFlag();
  1265. }
  1266. }
  1267. void _SelfTestTimeout(void)
  1268. {
  1269. if (pSysInfo->BootingStatus != BOOT_COMPLETE) {
  1270. for (uint8_t gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  1271. setChargerMode(gunIndex, MODE_ALARM);
  1272. }
  1273. }
  1274. ShmPsuData->Work_Step = _NO_WORKING;
  1275. pSysInfo->SelfTestSeq = _STEST_FAIL;
  1276. log_info("Self test timeout. ");
  1277. }
  1278. void _AuthorizedTimeout(void)
  1279. {
  1280. int i;
  1281. //if (IsAuthorizingMode()) {
  1282. log_info("*********** _AuthorizedTimeout *********** ");
  1283. StopSystemTimeoutDet();
  1284. //isCardScan = false;
  1285. SetIsCardScan(false);
  1286. //StopSystemTimeoutDet();
  1287. StopGunInfoTimeoutDet(pSysInfo->CurGunSelected);
  1288. ShmDcCommonData->TradeCancel = TRUE;
  1289. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  1290. ShmDcCommonData->PreAuth_Result = 0;
  1291. pSysInfo->SystemPage = _PAGE_SENSING;
  1292. StartSystemTimeoutDet(Timeout_TradeCancel);
  1293. for (i = 0; i <= 30; i++) {
  1294. if (ShmDcCommonData->PreAuth_Config == _CREDITCARD_IDLE)
  1295. break;
  1296. sleep(1);
  1297. }
  1298. ShmDcCommonData->PreAuth_Result = 0;
  1299. StopSystemTimeoutDet();
  1300. ClearDetectPluginFlag();
  1301. strcpy((char*)pSysConfig->UserId, "");
  1302. ClearAuthorizedFlag();
  1303. setChargerMode(pSysInfo->CurGunSelected, S_IDLE);
  1304. // StartSystemTimeoutDet(Timeout_ReturnViewPage);
  1305. //}
  1306. }
  1307. void _DetectPlugInTimeout(uint8_t gunIndex)
  1308. {
  1309. int i;
  1310. log_info("*********** _DetectPlugInTimeout *********** ");
  1311. strcpy((char *)pSysConfig->UserId, "");
  1312. //StopSystemTimeoutDet();
  1313. StopGunInfoTimeoutDet(gunIndex);
  1314. ShmDcCommonData->TradeCancel = TRUE;
  1315. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  1316. ShmDcCommonData->PreAuth_Result = 0;
  1317. pSysInfo->SystemPage = _PAGE_SENSING;
  1318. StartSystemTimeoutDet(Timeout_TradeCancel);
  1319. for(i=0;i<=30;i++) {
  1320. if(ShmDcCommonData->PreAuth_Config == _CREDITCARD_IDLE)
  1321. break;
  1322. sleep(1);
  1323. }
  1324. ShmDcCommonData->PreAuth_Result = 0;
  1325. if (pSysInfo->CurGunSelected == gunIndex)
  1326. pSysInfo->SystemPage = _PAGE_IDLE;
  1327. StopSystemTimeoutDet();
  1328. ClearDetectPluginFlag();
  1329. strcpy((char *)pSysConfig->UserId, "");
  1330. setChargerMode(gunIndex, S_IDLE);
  1331. //systemPageRestoreInit();
  1332. }
  1333. void _DetectEvChargingEnableTimeout(uint8_t gunIndex)
  1334. {
  1335. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1336. if (pDcChargingInfo->Type == _Type_Chademo) {
  1337. if (!isEvGunLocked_chademo(gunIndex)) {
  1338. log_info("*********** _DetectEvChargingEnableTimeout (chademo) ***********");
  1339. }
  1340. } else if (pDcChargingInfo->Type == _Type_GB) {
  1341. if (!isEvGunLocked_ccs(gunIndex)) {
  1342. log_info("*********** _DetectEvChargingEnableTimeout (gb) ***********");
  1343. }
  1344. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1345. if (!isEvGunLocked_ccs(gunIndex)) {
  1346. log_info("*********** _DetectEvChargingEnableTimeout (ccs) ***********");
  1347. }
  1348. }
  1349. //pSysInfo->SystemPage = _LCM_ERROR;
  1350. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  1351. ChargingTerminalProcess(gunIndex);
  1352. _AutoReturnTimeout();
  1353. }
  1354. void _DetectEvseChargingEnableTimeout(uint8_t gunIndex)
  1355. {
  1356. log_info("*********** _DetectEvseChargingEnableTimeout (GFD timeout) ***********");
  1357. ChargingTerminalProcess(gunIndex);
  1358. //pSysInfo->SystemPage = _LCM_ERROR;
  1359. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  1360. _AutoReturnTimeout();
  1361. }
  1362. void _PrepareTimeout(uint8_t gunIndex)
  1363. {
  1364. log_info("*********** _PrepareTimeout ***********");
  1365. ChargingTerminalProcess(gunIndex);
  1366. pAlarmCode->AlarmEvents.bits.PsuNoResource = YES;
  1367. //pSysInfo->SystemPage = _LCM_ERROR;
  1368. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  1369. _AutoReturnTimeout();
  1370. }
  1371. void _CcsPrechargeTimeout(uint8_t gunIndex)
  1372. {
  1373. log_info("*********** _CcsPrechargeTimeout ***********");
  1374. ChargingTerminalProcess(gunIndex);
  1375. //pSysInfo->SystemPage = _LCM_ERROR;
  1376. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  1377. }
  1378. void _LinkErrorTimeout(uint8_t gunIndex)
  1379. {
  1380. log_info("*********** _LinkErrorTimeout ***********");
  1381. setChargerMode(pSysInfo->CurGunSelected, S_IDLE);
  1382. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  1383. }
  1384. //===============================================
  1385. // 取得卡號與卡號驗證
  1386. //===============================================
  1387. void AuthorizingStart(void)
  1388. {
  1389. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = YES;
  1390. pSysInfo->AuthorizeFlag = YES;
  1391. }
  1392. void ClearAuthorizedFlag(void)
  1393. {
  1394. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = NO;
  1395. pSysInfo->AuthorizeFlag = NO;
  1396. }
  1397. bool isAuthorizedComplete(void)
  1398. {
  1399. if (pSysInfo->AuthorizeFlag == YES) {
  1400. return false;
  1401. }
  1402. return true;
  1403. }
  1404. bool IsAuthorizingMode()
  1405. {
  1406. if (pSysInfo->AuthorizeFlag == NO) {
  1407. return false;
  1408. }
  1409. return true;
  1410. }
  1411. //===============================================
  1412. // 紀錄 Alarm Code
  1413. //===============================================
  1414. void ResetChargerAlarmCode(uint8_t gunIndex, char *code)
  1415. {
  1416. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1417. if (strcmp(code, "012234") == EQUAL) {
  1418. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  1419. } else if (strcmp(code, "012235") == EQUAL) {
  1420. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  1421. } else if (strcmp(code, "012236") == EQUAL) {
  1422. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  1423. } else if (strcmp(code, "012288") == EQUAL) {
  1424. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSUvpFail = NO;
  1425. } else if (strcmp(code, "012289") == EQUAL) {
  1426. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaUvpFail = NO;
  1427. } else if (strcmp(code, "012290") == EQUAL) {
  1428. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTUvpFail = NO;
  1429. } else if (strcmp(code, "012229") == EQUAL) {
  1430. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP = NO;
  1431. } else if (strcmp(code, "012230") == EQUAL) {
  1432. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP = NO;
  1433. } else if (strcmp(code, "012231") == EQUAL) {
  1434. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP = NO;
  1435. } else if (strcmp(code, "011011") == EQUAL) {
  1436. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayWeldingFault = NO;
  1437. } else if (strcmp(code, "011013") == EQUAL) {
  1438. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayWeldingFault = NO;
  1439. } else if (strcmp(code, "011015") == EQUAL) {
  1440. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayWeldingFault = NO;
  1441. } else if (strcmp(code, "011012") == EQUAL) {
  1442. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayDrivingFault = NO;
  1443. } else if (strcmp(code, "011014") == EQUAL) {
  1444. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayDrivingFault = NO;
  1445. } else if (strcmp(code, "011016") == EQUAL) {
  1446. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayDrivingFault = NO;
  1447. } else if (strcmp(code, "011018") == EQUAL) {
  1448. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectTempSensorFail = NO;
  1449. } else if (strcmp(code, "011019") == EQUAL) {
  1450. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectTempSensorFail = NO;
  1451. } else if (strcmp(code, "011020") == EQUAL) {
  1452. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectTempSensorFail = NO;
  1453. } else if (strcmp(code, "012323") == EQUAL) {
  1454. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerOTP = NO;
  1455. } else if (strcmp(code, "011038") == EQUAL) {
  1456. ShmDcCommonData->ChillerTempErr[gunIndex].StatusBit.ChillerTempSensorFail = NO;
  1457. }
  1458. if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "012229", 6) == EQUAL ||
  1459. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "012230", 6) == EQUAL ||
  1460. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "012231", 6) == EQUAL ||
  1461. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011011", 6) == EQUAL ||
  1462. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011013", 6) == EQUAL ||
  1463. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011015", 6) == EQUAL ||
  1464. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011012", 6) == EQUAL ||
  1465. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011014", 6) == EQUAL ||
  1466. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011016", 6) == EQUAL ||
  1467. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011018", 6) == EQUAL ||
  1468. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011019", 6) == EQUAL ||
  1469. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011020", 6) == EQUAL ||
  1470. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "012323", 6) == EQUAL ||
  1471. strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "011038", 6) == EQUAL) {
  1472. strncpy((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6);
  1473. }
  1474. }
  1475. void RecordAlarmCode(uint8_t gunIndex, char *code)
  1476. {
  1477. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1478. if((pDcChargingInfo->SystemStatus > S_IDLE && pDcChargingInfo->SystemStatus < S_TERMINATING) ||
  1479. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 && pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1))
  1480. {
  1481. if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6) == EQUAL) {
  1482. memcpy(pDcChargingInfo->ConnectorAlarmCode, code, 6);
  1483. }
  1484. if (pDcChargingInfo->StopChargeFlag == NO)
  1485. {
  1486. log_info("RecordAlarmCode set Stop Charge Flag");
  1487. pDcChargingInfo->StopChargeFlag = YES;
  1488. }
  1489. }
  1490. }
  1491. void ReleaseAlarmCode(uint8_t gunIndex)
  1492. {
  1493. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1494. //if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6) == EQUAL) {
  1495. // return;
  1496. //}
  1497. switch (pDcChargingInfo->Type) {
  1498. case _Type_Chademo:
  1499. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  1500. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaUvpFail = NO;
  1501. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOVP = NO;
  1502. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = NO;
  1503. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayWeldingFault = NO;
  1504. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayDrivingFault = NO;
  1505. break;
  1506. case _Type_CCS_2:
  1507. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  1508. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSUvpFail = NO;
  1509. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOVP = NO;
  1510. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = NO;
  1511. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayWeldingFault = NO;
  1512. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayDrivingFault = NO;
  1513. break;
  1514. case _Type_GB:
  1515. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  1516. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTUvpFail = NO;
  1517. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOVP = NO;
  1518. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = NO;
  1519. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayWeldingFault = NO;
  1520. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayDrivingFault = NO;
  1521. break;
  1522. }
  1523. memcpy(pDcChargingInfo->ConnectorAlarmCode, "", 6);
  1524. }
  1525. //===============================================
  1526. // EmergencyStop and Charging Stop
  1527. //===============================================
  1528. void ChargingTerminalProcess(uint8_t gunIndex)
  1529. {
  1530. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
  1531. //if (pDcChargingInfo->SystemStatus == S_CHARGING)
  1532. //ShmDcCommonData->StopCharge[gunIndex] = TRUE;
  1533. setChargerMode(gunIndex, MODE_TERMINATING);
  1534. }
  1535. void ChargingAlarmProcess(uint8_t gunIndex)
  1536. {
  1537. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
  1538. //if (pDcChargingInfo->SystemStatus == S_CHARGING)
  1539. //ShmDcCommonData->StopCharge[gunIndex] = TRUE;
  1540. UpdateErrorCodeToOcpp(gunIndex);
  1541. setChargerMode(gunIndex, MODE_ALARM);
  1542. }
  1543. void AcChargingTerminalProcess(void)
  1544. {
  1545. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  1546. pAcChargingInfo->SystemStatus = MODE_TERMINATING;
  1547. }
  1548. void StopChargingProcessByString(uint8_t level)
  1549. {
  1550. if (level > pSysWarning->Level) {
  1551. pSysWarning->Level = level;
  1552. }
  1553. }
  1554. void ReleaseChargingProcessByString(uint8_t level)
  1555. {
  1556. if (level >= pSysWarning->Level) {
  1557. pSysWarning->Level = WARN_LV_NL;
  1558. }
  1559. }
  1560. // 一般錯誤停止充電處理函式
  1561. void BoardErrOccurByString(uint8_t index, char *code)
  1562. {
  1563. uint8_t level = 1;
  1564. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  1565. if ((pDcChargingInfo->SystemStatus > S_IDLE &&
  1566. pDcChargingInfo->SystemStatus < S_TERMINATING) ||
  1567. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1568. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  1569. if (strncmp(code, "023730", 6) == EQUAL &&
  1570. pInfoCode->InfoEvents.bits.ChademoChargerGetEmergencyStop == NO
  1571. ) {
  1572. pInfoCode->InfoEvents.bits.ChademoChargerGetEmergencyStop = YES;
  1573. }
  1574. ChargingTerminalProcess(index);
  1575. }
  1576. StopChargingProcessByString(level);
  1577. }
  1578. void ReleaseBoardErrOccurByString(uint8_t index, char *code)
  1579. {
  1580. bool isTrigger = false;
  1581. uint8_t level = 1;
  1582. if (strncmp(code, "023730", 6) == 0 &&
  1583. pInfoCode->InfoEvents.bits.ChademoChargerGetEmergencyStop == YES) {
  1584. isTrigger = true;
  1585. pInfoCode->InfoEvents.bits.ChademoChargerGetEmergencyStop = NO;
  1586. }
  1587. if (isTrigger) {
  1588. ReleaseChargingProcessByString(level);
  1589. }
  1590. }
  1591. // 急停狀況的停止充電處理函式
  1592. void EmcOccureByString(char *code)
  1593. {
  1594. uint8_t level = 2;
  1595. // 嚴重的急停有以下幾種 : EMC 按鈕、Mainbreak、Dooropen
  1596. // 其錯誤等級為 2
  1597. //DS60-120 remove
  1598. if (strncmp(code, "012251", 6) == EQUAL ||
  1599. strncmp(code, "012252", 6) == EQUAL ||
  1600. strncmp(code, "012238", 6) == EQUAL ||
  1601. strncmp(code, "042251", 6) == EQUAL ||
  1602. strncmp(code, "042252", 6) == EQUAL ||
  1603. strncmp(code, "012304", 6) == EQUAL ||
  1604. strncmp(code, "042327", 6) == EQUAL ||
  1605. strncmp(code, "042328", 6) == EQUAL ||
  1606. strncmp(code, "042200", 6) == EQUAL ||
  1607. strncmp(code, "042201", 6) == EQUAL ||
  1608. strncmp(code, "042202", 6) == EQUAL ||
  1609. strncmp(code, "042267", 6) == EQUAL) {
  1610. for (uint8_t gun = 0; gun < pSysConfig->TotalConnectorCount; gun++) {
  1611. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gun);
  1612. //strncpy((char *)ShmOCPP16Data->StatusNotification[gun].VendorErrorCode, code, 6);
  1613. if ((pDcChargingInfo->SystemStatus > S_IDLE &&
  1614. pDcChargingInfo->SystemStatus < S_TERMINATING) ||
  1615. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1616. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  1617. //ChargingTerminalProcess(gun);
  1618. if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6) == EQUAL) {
  1619. memcpy(pDcChargingInfo->ConnectorAlarmCode, code, 6);
  1620. }
  1621. ChargingAlarmProcess(gun);
  1622. }
  1623. }
  1624. StopChargingProcessByString(level);
  1625. InformOcppErrOccur(4);
  1626. }
  1627. }
  1628. void ReleaseEmsOccureByString(uint8_t index, char *code)
  1629. {
  1630. bool isTrigger = false;
  1631. uint8_t level = 2;
  1632. if (strncmp(code, "042251", 6) == 0 ) {
  1633. isTrigger = true;
  1634. } else if (strncmp(code, "012251", 6) == 0 &&
  1635. pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == YES) {
  1636. isTrigger = true;
  1637. pAlarmCode->AlarmEvents.bits.EmergencyStopTrip = NO;
  1638. } else if (strncmp(code, "012252", 6) == 0 &&
  1639. pAlarmCode->AlarmEvents.bits.DoorOpen == YES) {
  1640. isTrigger = true;
  1641. pAlarmCode->AlarmEvents.bits.DoorOpen = NO;
  1642. } else if (strncmp(code, "012237", 6) == 0 &&
  1643. pAlarmCode->AlarmEvents.bits.SpdTrip == YES) {
  1644. isTrigger = true;
  1645. pAlarmCode->AlarmEvents.bits.SpdTrip = NO;
  1646. } else if (strncmp(code, "012238", 6) == 0 &&
  1647. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip == YES) {
  1648. isTrigger = true;
  1649. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip = NO;
  1650. }
  1651. if (isTrigger) {
  1652. ReleaseChargingProcessByString(level);
  1653. InformOcppErrOccur(6);
  1654. }
  1655. }
  1656. static void checkOvpState(uint8_t gunIndex, uint8_t gunType)
  1657. {
  1658. switch(gunType) {
  1659. case _Type_Chademo:
  1660. if(ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOVP == YES)
  1661. RecordAlarmCode(gunIndex, "012217");
  1662. break;
  1663. case _Type_CCS_2:
  1664. if(ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOVP == YES)
  1665. RecordAlarmCode(gunIndex, "012219");
  1666. break;
  1667. case _Type_GB:
  1668. if(ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOVP == YES)
  1669. RecordAlarmCode(gunIndex, "012221");
  1670. break;
  1671. }
  1672. }
  1673. //===============================================
  1674. // 確認各小板偵測的錯誤狀況
  1675. //===============================================
  1676. void CheckErrorOccurStatus(uint8_t index)
  1677. {
  1678. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  1679. // RB
  1680. if (pSysConfig->PhaseLossPolicy == YES) {
  1681. if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == YES ||
  1682. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == YES ||
  1683. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == YES) {
  1684. if (pSysWarning->ExtraErrProcess == _EXTRA_ERR_PROCESS_NONE) {
  1685. pSysWarning->ExtraErrProcess = _EXTRA_ERR_PROCESS_INUVP;
  1686. StopChargingProcessByString(2);
  1687. InformOcppErrOccur(13);
  1688. }
  1689. //DS60-120 add -----
  1690. if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6) == EQUAL) {
  1691. if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == YES) {
  1692. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012203", 6);
  1693. } else if (pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == YES) {
  1694. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012204", 6);
  1695. } else if (pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == YES) {
  1696. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012205", 6);
  1697. }
  1698. }
  1699. log_info("1 CheckErrorOccurStatus");
  1700. pDcChargingInfo->StopChargeFlag = YES;
  1701. //------------------------------------------------------------------
  1702. } else {
  1703. if (pSysWarning->ExtraErrProcess == _EXTRA_ERR_PROCESS_INUVP) {
  1704. pSysWarning->ExtraErrProcess = _EXTRA_ERR_PROCESS_NONE;
  1705. ReleaseChargingProcessByString(2);
  1706. InformOcppErrOccur(6);
  1707. }
  1708. }
  1709. } else {
  1710. if (pSysWarning->ExtraErrProcess == _EXTRA_ERR_PROCESS_INUVP) {
  1711. pSysWarning->ExtraErrProcess = _EXTRA_ERR_PROCESS_NONE;
  1712. ReleaseChargingProcessByString(2);
  1713. InformOcppErrOccur(6);
  1714. }
  1715. }
  1716. if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == YES ||
  1717. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == YES ||
  1718. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == YES) {
  1719. if (pSysWarning->ExtraErrProcess == _EXTRA_ERR_PROCESS_NONE) {
  1720. pSysWarning->ExtraErrProcess = _EXTRA_ERR_PROCESS_INOVP;
  1721. StopChargingProcessByString(2);
  1722. InformOcppErrOccur(14);
  1723. }
  1724. //DS60-120 -----
  1725. if (strncmp((char *)pDcChargingInfo->ConnectorAlarmCode, "", 6) == EQUAL) {
  1726. if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == YES) {
  1727. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012200", 6);
  1728. } else if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == YES) {
  1729. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012201", 6);
  1730. } else if (pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == YES) {
  1731. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012202", 6);
  1732. }
  1733. }
  1734. log_info("2 CheckErrorOccurStatus");
  1735. pDcChargingInfo->StopChargeFlag = YES;
  1736. //----------------------------------------------------------------------
  1737. } else {
  1738. if (pSysWarning->ExtraErrProcess == _EXTRA_ERR_PROCESS_INOVP) {
  1739. pSysWarning->ExtraErrProcess = _EXTRA_ERR_PROCESS_NONE;
  1740. ReleaseChargingProcessByString(2);
  1741. InformOcppErrOccur(6);
  1742. }
  1743. }
  1744. checkOvpState(index, pDcChargingInfo->Type);
  1745. //--------------------------------------------------------------------------
  1746. if (strlen((char *)pDcChargingInfo->ConnectorAlarmCode) == 0) {
  1747. //Primary
  1748. if (pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == YES) {
  1749. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012251", 6);
  1750. } else if (pAlarmCode->AlarmEvents.bits.DoorOpen == YES) {
  1751. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012252", 6);
  1752. } else if (pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip == YES) {
  1753. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012238", 6);
  1754. } else if (pAlarmCode->AlarmEvents.bits.DisconnectedFromDo == YES) {
  1755. memcpy(pDcChargingInfo->ConnectorAlarmCode, "012304", 6);
  1756. }
  1757. //Chiller temperature
  1758. //else if (pAlarmCode->AlarmEvents.bits.SystemChillerOTP == YES) {
  1759. // memcpy(pDcChargingInfo->ConnectorAlarmCode, "012323", 6);
  1760. //} else if (pFaultCode->FaultEvents.bits.ChillerTempSensorBroken == YES) {
  1761. // memcpy(pDcChargingInfo->ConnectorAlarmCode, "011038", 6);
  1762. //}
  1763. }
  1764. /*
  1765. if (pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == YES ||
  1766. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip == YES ||
  1767. pAlarmCode->AlarmEvents.bits.DoorOpen == YES ||
  1768. pSysWarning->ExtraErrProcess != _EXTRA_ERR_PROCESS_NONE ||
  1769. pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == YES ||
  1770. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo == YES ||
  1771. //Power cabinet alarm status
  1772. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop == YES ||
  1773. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen == YES ||
  1774. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP == YES ||
  1775. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP == YES ||
  1776. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP == YES ||
  1777. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP == YES ||
  1778. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP == YES ||
  1779. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure == YES
  1780. ) {
  1781. if ((pDcChargingInfo->SystemStatus > S_IDLE &&
  1782. pDcChargingInfo->SystemStatus < S_COMPLETE) ||
  1783. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1784. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1 ))
  1785. ChargingAlarmProcess(index);
  1786. pSysWarning->Level = WARN_LV_ER;
  1787. }*/
  1788. }
  1789. //===============================================
  1790. // 確認 GPIO 狀態
  1791. //===============================================
  1792. void gpio_set_value(unsigned int gpio, unsigned int value)
  1793. {
  1794. int fd;
  1795. char buf[MAX_BUF];
  1796. snprintf(buf, sizeof(buf), SYSFS_GPIO_DIR "/gpio%d/value", gpio);
  1797. fd = open(buf, O_WRONLY);
  1798. if (fd < 0) {
  1799. perror("gpio/set-value");
  1800. return;
  1801. }
  1802. if (value) {
  1803. write(fd, "1", 2);
  1804. } else {
  1805. write(fd, "0", 2);
  1806. }
  1807. close(fd);
  1808. }
  1809. int gpio_get_value(unsigned int gpio, unsigned int *value)
  1810. {
  1811. int fd;
  1812. char buf[MAX_BUF];
  1813. char ch;
  1814. snprintf(buf, sizeof(buf), SYSFS_GPIO_DIR "/gpio%d/value", gpio);
  1815. fd = open(buf, O_RDONLY);
  1816. if (fd < 0) {
  1817. perror("gpio/get-value");
  1818. return fd;
  1819. }
  1820. read(fd, &ch, 1);
  1821. if (ch != '0') {
  1822. *value = 1;
  1823. } else {
  1824. *value = 0;
  1825. }
  1826. close(fd);
  1827. return 0;
  1828. }
  1829. void CheckGunTypeFromHw()
  1830. {
  1831. uint8_t i = 0;
  1832. int pinIn[4] = {22, 23, 44, 45};
  1833. unsigned int gpioValue = 0;
  1834. uint8_t tmp[2] = {0};
  1835. log_info("ModelName = %s", pSysConfig->ModelName);
  1836. for (i = 0; i < ARRAY_SIZE(pinIn); i++) {
  1837. gpio_get_value(pinIn[i], &gpioValue);
  1838. switch (pinIn[i]) {
  1839. //right slot
  1840. case 22:
  1841. bd1_1_status = gpioValue;
  1842. break;
  1843. case 23:
  1844. bd1_2_status = gpioValue;
  1845. break;
  1846. //left slot
  1847. case 44:
  1848. bd0_1_status = gpioValue;
  1849. break;
  1850. case 45:
  1851. bd0_2_status = gpioValue;
  1852. break;
  1853. }
  1854. }
  1855. //BD1(Left-CCS-CND1-SMR2-左槍), BD2(Right-CHADEMO-CND2-SMR1-右槍), CCS: 10 , CHAdeMO: 01 , GBT: 11
  1856. //CcsChargingData [0至1] 分別為 Right至Left
  1857. //model name 槍順序左至右分別為Right至Left
  1858. tmp[1] = (bd0_1_status << 4 | bd0_2_status);
  1859. tmp[0] = (bd1_1_status << 4 | bd1_2_status);
  1860. for (i = 0; i < 2; i++) {
  1861. switch (tmp[i]) {
  1862. case 0x01:
  1863. log_info("BD%d(%s) = %s ", i + 1, i == 0 ? "Left" : "Right", "CHAdeMO");
  1864. break;
  1865. case 0x10:
  1866. log_info("BD%d(%s) = %s ", i + 1, i == 0 ? "Left" : "Right", "CCS");
  1867. break;
  1868. case 0x11:
  1869. log_info("BD%d(%s) = %s ", i + 1, i == 0 ? "Left" : "Right", "GBT");
  1870. break;
  1871. case 0x00:
  1872. log_info("BD%d(%s) = %s ", i + 1, i == 0 ? "Left" : "Right", "None");
  1873. break;
  1874. }
  1875. }
  1876. }
  1877. void CheckGpioInStatus()
  1878. {
  1879. int i = 0;
  1880. int pinIn[2] = { 27, 47 };//{IO BD1_2, IO BD2_2}
  1881. unsigned int gpioValue = 0;
  1882. for (i = 0; i < ARRAY_SIZE(pinIn); i++) {
  1883. gpio_get_value(pinIn[i], &gpioValue);
  1884. if (gpioValue == 0x01) {
  1885. switch (pinIn[i]) {
  1886. // 小板緊急停止
  1887. case 47:
  1888. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1889. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1890. if (pDcChargingInfo->slotsIndex == 1) {
  1891. if (pDcChargingInfo->Type == _Type_Chademo) {
  1892. BoardErrOccurByString(i, "023730");
  1893. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1894. BoardErrOccurByString(i, "013627");
  1895. }
  1896. break;
  1897. }
  1898. }
  1899. break;
  1900. case 27:
  1901. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1902. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1903. if (pDcChargingInfo->slotsIndex == 3) {
  1904. if (pDcChargingInfo->Type == _Type_Chademo) {
  1905. BoardErrOccurByString(i, "023730");
  1906. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1907. BoardErrOccurByString(i, "013627");
  1908. }
  1909. break;
  1910. }
  1911. }
  1912. break;
  1913. }
  1914. } else {
  1915. switch (pinIn[i]) {
  1916. // 小板解除緊急停止
  1917. case 47:
  1918. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1919. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1920. if (pDcChargingInfo->slotsIndex == 1) {
  1921. if (pDcChargingInfo->Type == _Type_Chademo) {
  1922. ReleaseBoardErrOccurByString(i, "023730");
  1923. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1924. ReleaseBoardErrOccurByString(i, "013627");
  1925. }
  1926. break;
  1927. }
  1928. }
  1929. break;
  1930. case 27:
  1931. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1932. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1933. if (pDcChargingInfo->slotsIndex == 3) {
  1934. if (pDcChargingInfo->Type == _Type_Chademo) {
  1935. ReleaseBoardErrOccurByString(i, "023730");
  1936. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  1937. ReleaseBoardErrOccurByString(i, "013627");
  1938. }
  1939. break;
  1940. }
  1941. }
  1942. break;
  1943. }
  1944. }
  1945. }
  1946. }
  1947. //===============================================
  1948. // Main process
  1949. //===============================================
  1950. // 檢查 uint8_t 中某個 Bit 的值
  1951. // _byte : 欲改變的 byte
  1952. // _bit : 該 byte 的第幾個 bit
  1953. uint8_t DetectBitValue(uint8_t _byte, uint8_t _bit)
  1954. {
  1955. uint8_t mask_table[] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
  1956. return ( _byte & mask_table[_bit] ) != 0x00;
  1957. }
  1958. // 設定 Byte 中某個 Bit的值
  1959. // _byte : 欲改變的 byte
  1960. // _bit : 該 byte 的第幾個 bit
  1961. // value : 修改的值為 0 or 1
  1962. void SetBitValue(uint8_t *_byte, uint8_t _bit, uint8_t value)
  1963. {
  1964. if (value == 1) {
  1965. *_byte |= (1 << _bit);
  1966. } else if (value == 0) {
  1967. *_byte ^= (1 << _bit);
  1968. }
  1969. }
  1970. uint8_t isModeChange(uint8_t gunIndex)
  1971. {
  1972. uint8_t result = NO;
  1973. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1974. if (pDcChargingInfo->SystemStatus == pDcChargingInfo->PreviousSystemStatus) {
  1975. return result;
  1976. }
  1977. pDcChargingInfo->PreviousSystemStatus = pDcChargingInfo->SystemStatus;
  1978. ShmDcCommonData->SystemModeChange[gunIndex] = YES; //for Module_EvRxComm print temperature message
  1979. return YES;
  1980. }
  1981. static int checkSlotGpioMappingGunType(uint8_t gunIndex, uint8_t gunType)
  1982. {
  1983. uint8_t slot1 = 0, slot2 = 0;
  1984. if (gunIndex == 0) {
  1985. slot1 = bd0_1_status;
  1986. slot2 = bd0_2_status;
  1987. } else if (gunIndex == 1) {
  1988. slot1 = bd1_1_status;
  1989. slot2 = bd1_2_status;
  1990. }
  1991. log_info("slot %d gpio1 = %d, gpio2 = %d, type = %d",
  1992. gunIndex,
  1993. slot1,
  1994. slot2,
  1995. gunType);
  1996. switch (gunType) {
  1997. case _Type_Chademo:
  1998. if (slot1 != NO && slot2 != YES) {
  1999. return FAIL;
  2000. }
  2001. break;
  2002. case _Type_CCS_2:
  2003. if (slot1 != YES && slot2 != NO) {
  2004. return FAIL;
  2005. }
  2006. break;
  2007. case _Type_GB:
  2008. if (slot1 != YES && slot2 != YES) {
  2009. return FAIL;
  2010. }
  2011. break;
  2012. }
  2013. return PASS;
  2014. }
  2015. bool CheckConnectorTypeStatus(void)
  2016. {
  2017. bool result = true;
  2018. uint8_t gunIndex = 0;
  2019. struct SysConfigData *pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  2020. struct ChargingInfoData *pDcChargingInfo = NULL;
  2021. if (!MappingGunChargingInfo("CSU Task")) {
  2022. log_error("CheckConnectorTypeStatus MappingGunChargingInfo failed");
  2023. return false;
  2024. }
  2025. // 偵測槍屬於哪個 slot : 可知道插在板上的Slot 0 或 1 是 Chademo 還是 CCS
  2026. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  2027. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2028. if (checkSlotGpioMappingGunType(gunIndex, pDcChargingInfo->Type) == FAIL) {
  2029. return false;
  2030. }
  2031. pDcChargingInfo->SystemStatus = S_BOOTING;
  2032. switch (gunIndex) {
  2033. case 0:
  2034. if (pSysConfig->TotalConnectorCount == 1) {
  2035. if ((bd0_1_status == YES || bd0_2_status == YES) &&
  2036. (bd1_1_status == NO && bd1_2_status == NO)) {
  2037. pDcChargingInfo->Evboard_id = 0x01;
  2038. }
  2039. if ((bd0_1_status == NO && bd0_2_status == NO) &&
  2040. (bd1_1_status == YES || bd1_2_status == YES)
  2041. ) {
  2042. pDcChargingInfo->Evboard_id = 0x02;
  2043. }
  2044. break;
  2045. }
  2046. pDcChargingInfo->Evboard_id = 0x01;
  2047. break;
  2048. case 1:
  2049. pDcChargingInfo->Evboard_id = 0x02;
  2050. break;
  2051. }
  2052. CheckHwSlotStatusLog(gunIndex);
  2053. if (pDcChargingInfo->Evboard_id == 0x00) {
  2054. return false;
  2055. }
  2056. }
  2057. AdjustChargerCurrent();
  2058. return result;
  2059. }
  2060. int SpawnTask(void)
  2061. {
  2062. if(SIMULATION)
  2063. system("/root/simulation &");
  2064. sleep(2);
  2065. system("/root/Module_EventLogging &");
  2066. system("/root/Module_PrimaryComm &");
  2067. system("/root/Module_EvComm &");
  2068. system("/root/Module_LcmControl &");
  2069. system("/root/Module_InternalComm &");
  2070. system("/root/Module_ProduceUtils &");
  2071. system("/root/Module_UpdateFW &");
  2072. system("/root/Module_DoComm &");
  2073. return PASS;
  2074. }
  2075. void KillTask(void)
  2076. {
  2077. //ChangeLcmByIndex(_LCM_ERROR);
  2078. ChangeLcmByIndex(_PAGE_MAINTAIN);
  2079. system("killall Module_EventLogging");
  2080. system("killall Module_PrimaryComm");
  2081. system("killall Module_EvComm");
  2082. system("killall Module_LcmControl");
  2083. system("killall Module_InternalComm");
  2084. system("killall Module_UpdateFW");
  2085. system("killall Module_ChkSysTask");
  2086. //system("killall Module_DoComm");
  2087. return ;
  2088. }
  2089. void KillTaskExceptPrimary(void)
  2090. {
  2091. //ChangeLcmByIndex(_LCM_ERROR);
  2092. ChangeLcmByIndex(_PAGE_MAINTAIN);
  2093. system("killall Module_EvComm");
  2094. system("killall Module_InternalComm");
  2095. return;
  2096. }
  2097. void KillAllTask(void)
  2098. {
  2099. //ChangeLcmByIndex(_LCM_ERROR);
  2100. ChangeLcmByIndex(_PAGE_MAINTAIN);
  2101. system("killall Module_EventLogging");
  2102. system("killall Module_PrimaryComm");
  2103. system("killall Module_EvComm");
  2104. system("killall Module_LcmControl");
  2105. system("killall Module_InternalComm");
  2106. system("killall Module_UpdateFW");
  2107. system("killall Module_ChkSysTask");
  2108. system("killall Module_DoComm");
  2109. return ;
  2110. }
  2111. void StartSystemTimeoutDet(uint8_t flag)
  2112. {
  2113. if (pSysInfo->SystemTimeoutFlag != flag) {
  2114. log_info("Set System Timeout Flag %d", flag);
  2115. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  2116. }
  2117. pSysInfo->SystemTimeoutFlag = flag;
  2118. }
  2119. void StopSystemTimeoutDet(void)
  2120. {
  2121. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  2122. pSysInfo->SystemTimeoutFlag = Timeout_None;
  2123. }
  2124. void StartGunInfoTimeoutDet(uint8_t gunIndex, uint8_t flag)
  2125. {
  2126. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2127. if (gunIndex < pSysConfig->TotalConnectorCount) {
  2128. if (pDcChargingInfo->TimeoutFlag != flag) {
  2129. gettimeofday(&pDcChargingInfo->TimeoutTimer, NULL);
  2130. log_info("Set Gun%d Timeout Flag %d", gunIndex, flag);
  2131. }
  2132. pDcChargingInfo->TimeoutFlag = flag;
  2133. }
  2134. }
  2135. void StopGunInfoTimeoutDet(uint8_t gunIndex)
  2136. {
  2137. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2138. if (gunIndex < pSysConfig->TotalConnectorCount) {
  2139. pDcChargingInfo->TimeoutFlag = Timeout_None;
  2140. }
  2141. }
  2142. void CheckConnectionTimeout(void)
  2143. {
  2144. if (ShmSelectGunInfo->RemoteSetup.ConnectionTimeout != 0) { //Jerry add
  2145. _connectionTimeout = ShmSelectGunInfo->RemoteSetup.ConnectionTimeout;
  2146. } else {
  2147. _connectionTimeout = CONN_PLUG_TIMEOUT;
  2148. }
  2149. return;
  2150. }
  2151. void _evccidlinktimeout(uint8_t gunIndex)
  2152. {
  2153. log_info("Getting EVCCID Timeout");
  2154. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2155. pDcChargingInfo->isEVCCIDVerify = true;
  2156. StopGunInfoTimeoutDet(gunIndex);
  2157. destroySelGun(pSysInfo->CurGunSelected);
  2158. systemPageRestoreInit();
  2159. }
  2160. void CreateTimeoutFork(void)
  2161. {
  2162. pid_t timeoutPid;
  2163. timeoutPid = fork();
  2164. if (timeoutPid == 0) {
  2165. gettimeofday(&_cmdSubPriority_time, NULL);
  2166. CheckConnectionTimeout();
  2167. //log_info("Timeout Fork Child's PID is %d", getpid());
  2168. while (1) {
  2169. if ((GetTimeoutValue(_cmdSubPriority_time) / 1000) > 5000) {
  2170. CheckConnectionTimeout();
  2171. gettimeofday(&_cmdSubPriority_time, NULL);
  2172. }
  2173. /*
  2174. if (pSysInfo->SystemTimeoutFlag != 0)
  2175. log_info("Timeout ***********SystemTimeoutFlag = %d(%d) ********",pSysInfo->SystemTimeoutFlag,
  2176. GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL);
  2177. */
  2178. // 系統
  2179. switch (pSysInfo->SystemTimeoutFlag) {
  2180. case Timeout_SelftestChk:
  2181. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= SELFTEST_TIMEOUT) {
  2182. _SelfTestTimeout();
  2183. StopSystemTimeoutDet();
  2184. destroySelGun(DESTROY_ALL_SEL); //jerry add
  2185. }
  2186. break;
  2187. case Timeout_ReturnViewPage:
  2188. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= RETURN_VIEWPAGE_TIMEOUT) {
  2189. StopSystemTimeoutDet();
  2190. pSysInfo->SystemPage = _PAGE_IDLE;
  2191. }
  2192. break;
  2193. case Timeout_Authorizing:
  2194. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= AUTHORIZE_TIMEOUT) {
  2195. log_error("Authorizing Timeout");
  2196. _AuthorizedTimeout();
  2197. if (ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] == YES) { //DoComm no ask cabinet balance
  2198. ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] = NO;
  2199. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo = ABNORMAL;
  2200. log_error("Author timeout restart DoComm");
  2201. system("killall Module_DoComm");
  2202. }
  2203. }
  2204. break;
  2205. case Timeout_WaitBalance:
  2206. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= BALANCE_TIMEOUT) {
  2207. log_error("Wait Balance timeout");
  2208. _AuthorizedTimeout();
  2209. if (ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] == YES) { //DoComm no ask cabinet balance
  2210. ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] = NO;
  2211. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo = ABNORMAL;
  2212. log_error("Author timeout restart DoComm");
  2213. system("killall Module_DoComm");
  2214. }
  2215. }
  2216. break;
  2217. case Timeout_VerifyFail:
  2218. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= AUTHORIZE_FAIL_TIMEOUT) {
  2219. log_info("Timeout_VerifyFail");
  2220. /*if (pSysInfo->SystemPage ==_LCM_START_AUTHORIZE_FAIL ) {
  2221. StopSystemTimeoutDet();
  2222. _AutoReturnTimeout();
  2223. //destroySelGun(pSysInfo->CurGunSelected);
  2224. if (ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] == YES) { //DoComm no ask cabinet balance
  2225. ShmSelectGunInfo->AuthorStateFromCabinet[pSysInfo->CurGunSelected] = NO;
  2226. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo = ABNORMAL;
  2227. log_error("Author timeout restart DoComm");
  2228. system("killall Module_DoComm");
  2229. //sleep(1);
  2230. //system("/root/Module_DoComm &");
  2231. }
  2232. } else*/ if (pSysInfo->SystemPage ==_PAGE_AUTHORIZE_FAIL ) {
  2233. StopSystemTimeoutDet();
  2234. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2235. setChargerMode(pSysInfo->CurGunSelected, S_IDLE);
  2236. }
  2237. }
  2238. break;
  2239. /*
  2240. case Timeout_WaitPlug:
  2241. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= _connectionTimeout) {
  2242. _DetectPlugInTimeout();
  2243. destroySelGun(pSysInfo->CurGunSelected);
  2244. }
  2245. break;
  2246. */
  2247. /*
  2248. case Timeout_ReturnToChargingGunDet:
  2249. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= RETURN_TO_CHARGING_PAGE) {
  2250. if (getCurLcmPage() != _LCM_VIEW &&
  2251. getCurLcmPage() != _LCM_DETAIL_VIEW ) {
  2252. destroySelGun(pSysInfo->CurGunSelected); //jerry add
  2253. }
  2254. DisplayChargingInfo();
  2255. StopSystemTimeoutDet();
  2256. }
  2257. break;
  2258. */
  2259. case Timeout_AuthorizingForStop:
  2260. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= AUTHORIZE_STOP_TIMEOUT) {
  2261. log_info("Timeout_AuthorizingForStop");
  2262. strcpy((char *)pSysConfig->UserId, "");
  2263. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2264. pDcChargingInfo->SystemStatus = S_IDLE;
  2265. ClearAuthorizedFlag();
  2266. StopSystemTimeoutDet();
  2267. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2268. }
  2269. break;
  2270. case Timeout_ScanCard:
  2271. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TCC_SCANCARD_TIMEOUT) {
  2272. log_info("Timeout_ScanCard");
  2273. strcpy((char *)pSysConfig->UserId, "");
  2274. ClearAuthorizedFlag();
  2275. StopSystemTimeoutDet();
  2276. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2277. pDcChargingInfo->SystemStatus = S_IDLE;
  2278. pSysInfo->SystemPage = _PAGE_AUTHORIZE_FAIL;
  2279. ShmDcCommonData->OperateIDLE[pSysInfo->CurGunSelected] = 1;
  2280. }
  2281. break;
  2282. case Timeout_Terminating:
  2283. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TERMINATING_TIMEOUT) {
  2284. StopSystemTimeoutDet();
  2285. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2286. log_info("Terminating timeout");
  2287. setChargerMode(pSysInfo->CurGunSelected, S_COMPLETE);
  2288. }
  2289. break;
  2290. case Timeout_AddLine:
  2291. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TCC_ADDLINE_TIMEOUT) {
  2292. log_info("Timeout_AddLine");
  2293. StopSystemTimeoutDet();
  2294. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2295. ShmDcCommonData->OperateIDLE[pSysInfo->CurGunSelected] = 1;
  2296. }
  2297. break;
  2298. case Timeout_DonateComfirm:
  2299. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TCC_DONATECOMFIRM_TIMEOUT) {
  2300. log_info("Timeout_DonateComfirm");
  2301. StopSystemTimeoutDet();
  2302. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2303. }
  2304. break;
  2305. case Timeout_SelectPayMode:
  2306. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TCC_SELECTPAY_TIMEOUT) {
  2307. log_info("Timeout_SelectPayMode");
  2308. StopSystemTimeoutDet();
  2309. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2310. ShmDcCommonData->OperateIDLE[pSysInfo->CurGunSelected] = 1;
  2311. }
  2312. break;
  2313. case Timeout_TradeCancel:
  2314. if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TCC_TRADECANCEL_TIMEOUT) {
  2315. log_info("Timeout_TradeCancel");
  2316. StopSystemTimeoutDet();
  2317. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2318. setChargerMode(pSysInfo->CurGunSelected, MODE_IDLE);
  2319. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2320. ShmDcCommonData->OperateIDLE[pSysInfo->CurGunSelected] = 1;
  2321. }
  2322. break;
  2323. }
  2324. // 各槍
  2325. for (uint8_t gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  2326. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2327. /*
  2328. if (pDcChargingInfo->TimeoutFlag != 0)
  2329. log_info("Timeout ***********GunTimeoutFlag = %d(%d) ********",pDcChargingInfo->TimeoutFlag,
  2330. GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL);
  2331. */
  2332. switch (pDcChargingInfo->TimeoutFlag) {
  2333. case Timeout_WaitPlug:
  2334. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= _connectionTimeout) {
  2335. _DetectPlugInTimeout(gunIndex);
  2336. destroySelGun(gunIndex);
  2337. }
  2338. break;
  2339. case Timeout_EVCCID_Link:
  2340. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= EVCCID_LINK_TIMEOUT) {
  2341. _evccidlinktimeout(gunIndex);
  2342. }
  2343. break;
  2344. case Timeout_LinkError:
  2345. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= LINKERROR_TIMEOUT) {
  2346. _LinkErrorTimeout(gunIndex);
  2347. StopGunInfoTimeoutDet(gunIndex);
  2348. destroySelGun(gunIndex);
  2349. }
  2350. break;
  2351. case Timeout_Preparing:
  2352. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_PREPARE_TIMEOUT) {
  2353. _PrepareTimeout(gunIndex);
  2354. StopGunInfoTimeoutDet(gunIndex);
  2355. destroySelGun(gunIndex); //jerry add
  2356. }
  2357. break;
  2358. case Timeout_EvChargingDet:
  2359. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_EV_WAIT_TIMEOUT) {
  2360. _DetectEvChargingEnableTimeout(gunIndex);
  2361. StopGunInfoTimeoutDet(gunIndex);
  2362. destroySelGun(gunIndex); //jerry add
  2363. }
  2364. break;
  2365. case Timeout_EvseChargingDet:
  2366. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_EVSE_WAIT_TIMEOUT) {
  2367. _DetectEvseChargingEnableTimeout(gunIndex);
  2368. StopGunInfoTimeoutDet(gunIndex);
  2369. destroySelGun(gunIndex); //jerry add
  2370. }
  2371. break;
  2372. case Timeout_EvseCompleteDet:
  2373. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_COMP_WAIT_TIMEOUT) {
  2374. StopGunInfoTimeoutDet(gunIndex);
  2375. destroySelGun(gunIndex); //jerry add
  2376. }
  2377. break;
  2378. case Timeout_ForCcsPrechargeDet:
  2379. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_PRECHARGING_TIMEOUT) {
  2380. _CcsPrechargeTimeout(gunIndex);
  2381. StopGunInfoTimeoutDet(gunIndex);
  2382. destroySelGun(gunIndex); //jerry add
  2383. }
  2384. break;
  2385. case Timeout_PlugOutGun:
  2386. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= PLUGOUTGUN_TIMEOUT) {
  2387. log_info("Gun[%d] Timeout_PlugOutGun",gunIndex);
  2388. setChargerMode(gunIndex, MODE_IDLE);
  2389. destroySelGun(gunIndex); //Jerry add
  2390. StopGunInfoTimeoutDet(gunIndex);
  2391. systemPageRestoreInit();
  2392. }
  2393. break;
  2394. case Timeout_FinalCost:
  2395. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= TCC_FINALCOST_TIMEOUT) {
  2396. log_info("Gun[%d] Timeout_FinalCost",gunIndex);
  2397. StopGunInfoTimeoutDet(gunIndex);
  2398. if (ShmDcCommonData->finalcost_flag[gunIndex] == FALSE) {
  2399. ShmDcCommonData->TransactionInfo[gunIndex].Amount = pDcChargingInfo->PresentChargedEnergy * ShmDcCommonData->ChargingRate;
  2400. ShmDcCommonData->finalcost_flag[gunIndex] = TRUE;
  2401. }
  2402. }
  2403. break;
  2404. case Timeout_LineReigster:
  2405. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= TCC_LINEREGISTER_TIMEOUT) {
  2406. log_info("Gun[%d] Timeout_LineReigster",gunIndex);
  2407. StopGunInfoTimeoutDet(gunIndex);
  2408. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  2409. ShmDcCommonData->TransactionInfo[gunIndex].IsDonateInvoice = FALSE;
  2410. ShmDcCommonData->OperateIDLE[gunIndex] = 1;
  2411. }
  2412. break;
  2413. case Timeout_ExitPage:
  2414. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= TCC_EXITPAGE_TIMEOUT) {
  2415. log_info("Gun[%d] Timeout_ExitPage", gunIndex);
  2416. StopGunInfoTimeoutDet(gunIndex);
  2417. ShmDcCommonData->is_exit[gunIndex] = TRUE;
  2418. if (pSysInfo->CurGunSelected == gunIndex)
  2419. pSysInfo->SystemPage = _PAGE_EXIT;
  2420. StartGunInfoTimeoutDet(gunIndex, Timeout_PlugOutGun);
  2421. }
  2422. break;
  2423. /*
  2424. case Timeout_SelectGun: //Jerry add
  2425. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= SEL_GUN_TIMEOUT) {
  2426. log_info("Timeout_SelectGun");
  2427. StopGunInfoTimeoutDet(gunIndex);
  2428. destroySelGun(gunIndex); //jerry add
  2429. }
  2430. break;
  2431. */
  2432. /*
  2433. case Timeout_DetailView:
  2434. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= DETAILVIEW_TIMEOUT) {
  2435. StopGunInfoTimeoutDet(gunIndex);
  2436. pSysInfo->SystemPage = _LCM_VIEW;
  2437. }
  2438. break;*/
  2439. }
  2440. }
  2441. sleep(1);
  2442. }
  2443. }
  2444. }
  2445. void CheckFactoryConfigFunction(void)
  2446. {
  2447. char Buf[256] = {0};
  2448. if (pSysInfo->FactoryConfiguration) {
  2449. sprintf(Buf, "cd /root;./FactoryConfig -m %s %s",
  2450. pSysConfig->ModelName,
  2451. pSysConfig->SerialNumber);
  2452. system(Buf);
  2453. system("rm -f /Storage/OCPP/OCPPConfiguration");
  2454. system("sync");
  2455. sleep(5);
  2456. system("reboot -f");
  2457. sleep(5);
  2458. system("reboot -f");
  2459. }
  2460. }
  2461. //===============================================
  2462. // Check reservation date is expired
  2463. //===============================================
  2464. int isReservationExpired(uint8_t gunIndex)
  2465. {
  2466. int result = NO;
  2467. struct tm expiredDate;
  2468. struct timeb expiredTime;
  2469. if (sscanf((char *) ShmOCPP16Data->ReserveNow[gunIndex].ExpiryDate,
  2470. "%4d-%2d-%2dT%2d:%2d:%2d", &expiredDate.tm_year,
  2471. &expiredDate.tm_mon, &expiredDate.tm_mday, &expiredDate.tm_hour,
  2472. &expiredDate.tm_min, &expiredDate.tm_sec) == 6) {
  2473. expiredDate.tm_year -= 1900;
  2474. expiredDate.tm_mon -= 1;
  2475. expiredTime.time = mktime(&expiredDate);
  2476. if (!CheckTimeOut(expiredTime)) {
  2477. result = YES;
  2478. }
  2479. }
  2480. return result;
  2481. }
  2482. //===============================================
  2483. // OCPP
  2484. //===============================================
  2485. void CheckOcppStatus(void)
  2486. {
  2487. bool canReset = true;
  2488. //bool canHardReset = true; //DS60-120 add
  2489. if (ShmOCPP16Data->SpMsg.bits.BootNotificationConf == YES) {
  2490. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = NO;
  2491. }
  2492. if (ShmOCPP16Data->MsMsg.bits.ResetReq == YES) {
  2493. if (pSysWarning->Level != WARN_LV_ER) {
  2494. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  2495. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2496. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2497. pDcChargingInfo->SystemStatus != S_RESERVATION &&
  2498. pDcChargingInfo->SystemStatus != S_MAINTAIN) {
  2499. canReset = false;
  2500. if (pDcChargingInfo->SystemStatus >= S_REASSIGN &&
  2501. pDcChargingInfo->SystemStatus < S_TERMINATING) {
  2502. //canHardReset = false;
  2503. ChargingTerminalProcess(_index);
  2504. //restartFlag = 1;
  2505. }
  2506. }
  2507. }
  2508. }
  2509. if (canReset) {
  2510. ShmOCPP16Data->MsMsg.bits.ResetReq = NO;
  2511. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "Accepted");
  2512. if (strcmp((char *)ShmOCPP16Data->Reset.Type, "Hard") == EQUAL) {
  2513. log_error("****** Hard Reboot ****** ");
  2514. ShmOCPP16Data->MsMsg.bits.ResetConf = YES;
  2515. sleep(3);
  2516. system("reboot -f");
  2517. } else if (strcmp((char *)ShmOCPP16Data->Reset.Type, "Soft") == EQUAL) {
  2518. log_error("****** Soft Reboot ****** ");
  2519. ShmOCPP16Data->MsMsg.bits.ResetConf = YES;
  2520. sleep(3);
  2521. system("killall OcppBackend &");
  2522. KillAllTask();
  2523. TryCloseWatchdog();
  2524. system("/usr/bin/run_evse_restart.sh");
  2525. }
  2526. }
  2527. }
  2528. }
  2529. void OcppStopTransation(uint8_t gunIndex)
  2530. {
  2531. uint8_t _OcppGunIndex = gunIndex;
  2532. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2533. // 如果有 AC 槍,而現在是 DC 第二把槍進入充電
  2534. if (pSysConfig->AcConnectorCount == 1 && gunIndex == 1) {
  2535. _OcppGunIndex = 2;
  2536. }
  2537. if (strcmp((char *)pDcChargingInfo->StartUserId, "") == EQUAL) {
  2538. strcpy((char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag, (char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag);
  2539. } else {
  2540. strcpy((char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag, (char *)pDcChargingInfo->StartUserId);
  2541. }
  2542. log_info("IdTag = %s ", ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag);
  2543. ShmOCPP16Data->CpMsg.bits[_OcppGunIndex].StopTransactionReq = YES;
  2544. }
  2545. bool OcppRemoteStop(uint8_t gunIndex)
  2546. {
  2547. uint8_t acDirIndex = pSysConfig->AcConnectorCount;
  2548. // 有 AC 槍的話
  2549. if (acDirIndex > 0 && gunIndex > 0) {
  2550. gunIndex += acDirIndex;
  2551. }
  2552. bool result = ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq;
  2553. if (ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq == YES) {
  2554. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Remote");
  2555. ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq = NO;
  2556. }
  2557. return result;
  2558. }
  2559. bool WifiScheduleStop(uint8_t gunIndex)
  2560. {
  2561. bool result = false;
  2562. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2563. result = pDcChargingInfo->schedule.isTriggerStop;
  2564. pDcChargingInfo->schedule.isTriggerStop = NO;
  2565. return result;
  2566. }
  2567. void OcppRemoteStartChk()
  2568. {
  2569. if (pSysConfig->OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING) {
  2570. } else if (!isDetectPlugin()) {
  2571. // 如果有 AC 槍,則固定是第 2 把槍,所以索引固定為 1
  2572. uint8_t acDirIndex = pSysConfig->AcConnectorCount;
  2573. for (uint8_t ac_index = 0; ac_index < pSysConfig->AcConnectorCount; ac_index++) {
  2574. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(ac_index);
  2575. if (ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq == YES) {
  2576. if (pAcChargingInfo->SystemStatus == S_IDLE ||
  2577. pAcChargingInfo->SystemStatus == S_RESERVATION) {
  2578. ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq = NO;
  2579. pAcChargingInfo->RemoteStartFlag = YES;
  2580. pSysInfo->OrderCharging = YES;
  2581. //pSysInfo->OrderCharging = DEFAULT_AC_INDEX;
  2582. ShmOCPP16Data->CsMsg.bits[pSysConfig->TotalConnectorCount + ac_index].RemoteStartTransactionReq = NO;
  2583. DetectPluginStart();
  2584. return;
  2585. }
  2586. ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq = NO;
  2587. }
  2588. }
  2589. uint8_t threeGunIndex = 0;
  2590. uint8_t dcIndex = 0;
  2591. bool isGunUsingStatus = false;
  2592. bool _remotestarting = false;
  2593. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  2594. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2595. // 如果有 AC 槍,且 DC 槍也有兩把
  2596. if (acDirIndex == 1 && _index == 1) {
  2597. threeGunIndex = 1;
  2598. }
  2599. if (ShmOCPP16Data->CsMsg.bits[_index + threeGunIndex].RemoteStartTransactionReq == YES) {
  2600. dcIndex = _index;
  2601. }
  2602. if (pDcChargingInfo->SystemStatus != S_IDLE) {
  2603. isGunUsingStatus = true;
  2604. }
  2605. if (pDcChargingInfo->RemoteStartFlag == YES) {
  2606. //_remotestarting = true;
  2607. }
  2608. }
  2609. // 如果是雙槍單模,只認閒置狀態的槍,如果有預約~ 則預約也算被使用
  2610. if (isGunUsingStatus && pSysInfo->IsAlternatvieConf) {
  2611. if (dcIndex == 0) {
  2612. threeGunIndex = 0;
  2613. }
  2614. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2615. return;
  2616. }
  2617. if (dcIndex == 0) {
  2618. threeGunIndex = 0;
  2619. }
  2620. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(dcIndex);
  2621. if (ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq == YES &&
  2622. !_remotestarting ) {
  2623. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2624. pDcChargingInfo->SystemStatus == S_AUTHORIZING ||
  2625. pDcChargingInfo->SystemStatus == S_RESERVATION) {
  2626. pDcChargingInfo->RemoteStartFlag = YES;
  2627. ShmDcCommonData->is_RemoteStart[dcIndex] = TRUE;
  2628. pSysInfo->OrderCharging = YES;
  2629. //pDcChargingInfo->SystemStatus = S_AUTHORIZING;
  2630. //pSysInfo->OrderCharging = gunIndex;
  2631. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2632. DetectPluginStart();
  2633. setSelGunWaitToAuthor(dcIndex);
  2634. log_info("Ocpp Remote Start Pass");
  2635. }
  2636. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2637. }
  2638. }
  2639. }
  2640. void ChkOcppStatus(uint8_t gunIndex)
  2641. {
  2642. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2643. if (pDcChargingInfo->SystemStatus == S_IDLE &&
  2644. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq == YES) {
  2645. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq = NO;
  2646. if (isReservationExpired(gunIndex)) {
  2647. log_error("***************ChkOcppStatus : OcppReservedStatus******************** ");
  2648. pDcChargingInfo->ReservationId = ShmOCPP16Data->ReserveNow[gunIndex].ReservationId;
  2649. pDcChargingInfo->SystemStatus = S_RESERVATION;
  2650. }
  2651. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowConf = YES;
  2652. }
  2653. if (pDcChargingInfo->SystemStatus == S_RESERVATION &&
  2654. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq == YES) {
  2655. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq = NO;
  2656. if (isReservationExpired(gunIndex)) {
  2657. log_error("***************ChkOcppStatus : Cancel OcppReservedStatus******************** ");
  2658. pDcChargingInfo->ReservationId = 0;
  2659. pDcChargingInfo->SystemStatus = S_IDLE;
  2660. }
  2661. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationConf = YES;
  2662. }
  2663. if (ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq == YES) {
  2664. log_error("***************ChkOcppStatus : OcppChangeAvailability******************** ");
  2665. ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq = NO;
  2666. if (strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Operative") == EQUAL) {
  2667. if (isDb_ready) {
  2668. DB_Update_Operactive(gunIndex, true);
  2669. }
  2670. pDcChargingInfo->IsAvailable = YES;
  2671. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2672. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  2673. pDcChargingInfo->SystemStatus == S_MAINTAIN) {
  2674. setChargerMode(gunIndex, MODE_IDLE);
  2675. }
  2676. } else if (strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Inoperative") == EQUAL) {
  2677. if (isDb_ready) {
  2678. DB_Update_Operactive(gunIndex, false);
  2679. }
  2680. pDcChargingInfo->IsAvailable = NO;
  2681. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2682. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  2683. pDcChargingInfo->SystemStatus == S_MAINTAIN) {
  2684. setChargerMode(gunIndex, MODE_MAINTAIN);
  2685. }
  2686. }
  2687. }
  2688. if (ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorReq == YES) {
  2689. ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorReq = NO;
  2690. if (pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK && // DS60-120 add ||
  2691. pDcChargingInfo->SystemStatus <= S_CHARGING) {
  2692. // 充電中,需停止充電
  2693. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "UnlockCommand");
  2694. ChargingTerminalProcess(gunIndex);
  2695. }
  2696. strcpy((char *)ShmOCPP16Data->UnlockConnector[gunIndex].ResponseStatus, "Unlocked");
  2697. ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorConf = YES;
  2698. }
  2699. }
  2700. bool CheckBackendChargingTimeout(uint8_t gunIndex)
  2701. {
  2702. bool result = false;
  2703. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2704. if (pSysConfig->AuthorisationMode == AUTH_MODE_ENABLE) {
  2705. if (pSysConfig->MaxChargingDuration > 0) {
  2706. if (pDcChargingInfo->PresentChargedDuration > (pSysConfig->MaxChargingDuration * 60)) {
  2707. result = true;
  2708. }
  2709. }
  2710. }
  2711. return result;
  2712. }
  2713. bool CheckBackendChargingEnergy(uint8_t gunIndex)
  2714. {
  2715. bool result = false;
  2716. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2717. if (pSysConfig->AuthorisationMode == AUTH_MODE_ENABLE) {
  2718. if (pSysConfig->MaxChargingEnergy > 0) {
  2719. if (pDcChargingInfo->PresentChargedEnergy > pSysConfig->MaxChargingEnergy) {
  2720. result = true;
  2721. }
  2722. }
  2723. }
  2724. return result;
  2725. }
  2726. void InformOcppErrOccur(uint8_t codeType)
  2727. {
  2728. char _error[25];
  2729. switch (codeType) {
  2730. case 4:
  2731. strcpy(_error, "InternalError");
  2732. break;
  2733. case 6:
  2734. strcpy(_error, "NoError");
  2735. break;
  2736. case 7:
  2737. strcpy(_error, "OtherError");
  2738. break;
  2739. case 13:
  2740. strcpy(_error, "UnderVoltage");
  2741. break;
  2742. case 14:
  2743. strcpy(_error, "OverVoltage");
  2744. break;
  2745. }
  2746. for (uint8_t gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  2747. strcpy((char *)ShmOCPP16Data->StatusNotification[gunIndex].ErrorCode, _error);
  2748. }
  2749. }
  2750. //===============================================
  2751. // Config process
  2752. //===============================================
  2753. /*
  2754. void AddPlugInTimes(uint8_t gunIndex)
  2755. {
  2756. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2757. if (pDcChargingInfo->Type == _Type_Chademo) {
  2758. pSysConfig->ChademoPlugInTimes += 1;
  2759. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  2760. pSysConfig->Ccs2PlugInTimes += 1;
  2761. } else if (pDcChargingInfo->Type == _Type_GB) {
  2762. pSysConfig->GbPlugInTimes += 1;
  2763. }
  2764. }*/
  2765. void ChangeStartOrStopDateTime(uint8_t isStart, uint8_t gunIndex)
  2766. {
  2767. char cmdBuf[32];
  2768. struct timeb csuTime;
  2769. struct tm *tmCSU;
  2770. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2771. ftime(&csuTime);
  2772. tmCSU = localtime(&csuTime.time);
  2773. sprintf(cmdBuf, "%04d-%02d-%02d %02d:%02d:%02d", tmCSU->tm_year + 1900,
  2774. tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  2775. tmCSU->tm_sec);
  2776. if (isStart) {
  2777. strcpy((char *)pDcChargingInfo->StartDateTime, cmdBuf);
  2778. } else {
  2779. strcpy((char *)pDcChargingInfo->StopDateTime, cmdBuf);
  2780. }
  2781. }
  2782. void ChangeGunSelectByIndex(uint8_t sel)
  2783. {
  2784. pSysInfo->CurGunSelected = sel;
  2785. pSysInfo->CurGunSelectedByAc = NO_DEFINE;
  2786. }
  2787. void CheckIsAlternatvieByModelName()
  2788. {
  2789. if (pSysConfig->ModelName[1] == 'W') { //DS60-120
  2790. // 壁掛
  2791. pSysInfo->IsAlternatvieConf = YES;
  2792. } else {
  2793. pSysInfo->IsAlternatvieConf = NO;
  2794. }
  2795. }
  2796. void StopProcessingLoop()
  2797. {
  2798. for (;;) {
  2799. CheckFactoryConfigFunction();
  2800. //CheckFwUpdateFunction();
  2801. if (pSysWarning->Level == WARN_LV_ER) {
  2802. ChkPrimaryStatus();
  2803. if (pSysWarning->Level == WARN_LV_NL) {
  2804. log_info("Soft reboot for retry self-tets (Primary). ");
  2805. KillAllTask();
  2806. sleep(3);
  2807. TryCloseWatchdog();
  2808. system("/usr/bin/run_evse_restart.sh");
  2809. return;
  2810. }
  2811. }
  2812. sleep(1);
  2813. TryFeedWatchdog();
  2814. }
  2815. }
  2816. bool IsConnectorWholeIdle()
  2817. {
  2818. bool result = true;
  2819. for (uint8_t count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  2820. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  2821. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2822. pDcChargingInfo->SystemStatus != S_RESERVATION) {
  2823. result = false;
  2824. break;
  2825. }
  2826. }
  2827. for (uint8_t count = 0; count < pSysConfig->AcConnectorCount; count++) {
  2828. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(count);
  2829. if (pAcChargingInfo->SystemStatus != S_IDLE &&
  2830. pAcChargingInfo->IsErrorOccur == NO) {
  2831. result = false;
  2832. break;
  2833. }
  2834. }
  2835. return result;
  2836. }
  2837. void ClearAlarmCodeWhenAcOff()
  2838. {
  2839. if (!pSysInfo->AcContactorStatus) {
  2840. pAlarmCode->AlarmEvents.bits.PsuNoResource = NO;
  2841. }
  2842. }
  2843. //==========================================
  2844. // Check Smart Charging Profile
  2845. //==========================================
  2846. int GetStartScheduleTime(uint8_t *time)
  2847. {
  2848. int result = -1;
  2849. struct tm tmScheduleStart;
  2850. struct timeb tbScheduleStart;
  2851. if ((sscanf((char *)time, "%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)) {
  2852. tmScheduleStart.tm_year -= 1900;
  2853. tmScheduleStart.tm_mon -= 1;
  2854. tbScheduleStart.time = mktime(&tmScheduleStart);
  2855. tbScheduleStart.millitm = 0;
  2856. result = DiffTimebWithNow(tbScheduleStart) / 1000;
  2857. }
  2858. return result;
  2859. }
  2860. void CheckSmartChargeProfile(uint8_t _index)
  2861. {
  2862. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2863. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf == YES) {
  2864. // Get Charging Profile
  2865. ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf = NO;
  2866. if (strcmp((char *)ShmOCPP16Data->SmartChargingProfile[_index].ChargingProfileKind, "Absolute") == EQUAL &&
  2867. ShmOCPP16Data->SmartChargingProfile[_index].ChargingProfileId == YES //DS60-120 add
  2868. ) {
  2869. int _time = GetStartScheduleTime(ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.StartSchedule);
  2870. uint8_t _startCount = NO_DEFINE;
  2871. uint8_t _maxCount = ARRAY_SIZE(ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod);
  2872. for (uint8_t _count = 0; _count < _maxCount; _count++) {
  2873. // 預設最小輸出電流 (MIN_OUTPUT_CUR) A
  2874. if (_time >= ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].StartPeriod) {
  2875. if ((_count == 0 && ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].Limit >= MIN_OUTPUT_CUR) ||
  2876. ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].Limit > MIN_OUTPUT_CUR) {
  2877. _startCount = _count;
  2878. }
  2879. }
  2880. }
  2881. log_info("_startCount = %d ", _startCount);
  2882. if (_startCount < _maxCount) {
  2883. //DS60-120 add
  2884. log_info("Profile Limit = %f ", ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_startCount].Limit);
  2885. pDcChargingInfo->ChargingProfilePower = ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_startCount].Limit * AC_OUTPUT_VOL;
  2886. if (pDcChargingInfo->EvBatterytargetVoltage > 0 && pDcChargingInfo->PresentChargingVoltage > 0) {
  2887. pDcChargingInfo->ChargingProfileCurrent = (pDcChargingInfo->ChargingProfilePower / pDcChargingInfo->PresentChargingVoltage) * 10;
  2888. } else {
  2889. pDcChargingInfo->ChargingProfileCurrent = 0;
  2890. }
  2891. } else {
  2892. pDcChargingInfo->ChargingProfilePower = -1;
  2893. pDcChargingInfo->ChargingProfileCurrent = -1;
  2894. }
  2895. } else {
  2896. pDcChargingInfo->ChargingProfilePower = -1;
  2897. pDcChargingInfo->ChargingProfileCurrent = -1;
  2898. }
  2899. log_info("ChargingProfilePower = %f ", pDcChargingInfo->ChargingProfilePower);
  2900. log_info("ChargingProfileCurrent = %f ", pDcChargingInfo->ChargingProfileCurrent);
  2901. }
  2902. }
  2903. void ChargingProfileFlat(uint8_t _index)
  2904. {
  2905. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf == NO) {
  2906. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileReq == NO) {
  2907. ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileReq = YES;
  2908. }
  2909. }
  2910. }
  2911. /*
  2912. void CheckReturnToChargingConn()
  2913. {
  2914. if ((pSysConfig->TotalConnectorCount + pSysConfig->AcConnectorCount) > 1 &&
  2915. pSysInfo->PageIndex != _LCM_START_AUTHORIZING &&
  2916. pSysInfo->PageIndex != _LCM_START_AUTHORIZE_FAIL &&
  2917. pSysInfo->PageIndex != _LCM_WAIT_PLUGIN) {
  2918. bool isReturnTimeout = false;
  2919. for (uint8_t count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  2920. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  2921. // 如果選的 DC 槍在充電~ 則 DC 槍不改變
  2922. if (count == pSysInfo->CurGunSelected) {
  2923. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2924. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2925. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2926. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  2927. ) {
  2928. isReturnTimeout = false;
  2929. break;
  2930. }
  2931. } else if (count != pSysInfo->CurGunSelected) {
  2932. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2933. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2934. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2935. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  2936. ) {
  2937. isReturnTimeout = true;
  2938. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2939. }
  2940. }
  2941. }
  2942. // AC 槍
  2943. if (!isReturnTimeout && pSysConfig->AcConnectorCount > 0) {
  2944. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2945. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  2946. // 沒有選中 AC,且 AC 在充電中
  2947. if (pSysInfo->CurGunSelectedByAc == NO_DEFINE &&
  2948. (pAcChargingInfo->SystemStatus >= S_PREPARNING &&
  2949. pAcChargingInfo->SystemStatus <= S_COMPLETE)) {
  2950. // 當前 DC 充電槍在 idle 狀態
  2951. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2952. pDcChargingInfo->SystemStatus == S_RESERVATION) {
  2953. isReturnTimeout = true;
  2954. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2955. }
  2956. } else if (pSysInfo->CurGunSelectedByAc == DEFAULT_AC_INDEX &&
  2957. ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2958. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2959. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2960. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1))) {
  2961. // 當前 DC 充電槍在 idle 狀態
  2962. if (pAcChargingInfo->SystemStatus == S_IDLE ||
  2963. pAcChargingInfo->SystemStatus == S_RESERVATION) {
  2964. isReturnTimeout = true;
  2965. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2966. }
  2967. }
  2968. }
  2969. if (!isReturnTimeout) {
  2970. StopSystemTimeoutDet();
  2971. }
  2972. }
  2973. }
  2974. bool GetStartChargingByAlterMode(uint8_t _gun)
  2975. {
  2976. bool result = true;
  2977. if (pSysConfig->TotalConnectorCount == 2 &&
  2978. pSysInfo->IsAlternatvieConf == YES) {
  2979. for (uint8_t _select = 0; _select < pSysConfig->TotalConnectorCount; _select++) {
  2980. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_select);
  2981. if (_select != _gun) {
  2982. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2983. pDcChargingInfo->SystemStatus != S_RESERVATION) {
  2984. result = false;
  2985. break;
  2986. }
  2987. }
  2988. }
  2989. }
  2990. return result;
  2991. }
  2992. */
  2993. void TheEndCharging(uint8_t gunIndex)
  2994. {
  2995. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2996. ftime(&endChargingTime[gunIndex]);
  2997. if (pDcChargingInfo->PresentChargedDuration != 0) {
  2998. pDcChargingInfo->PresentChargedDuration = DiffTimeb(startChargingTime[gunIndex], endChargingTime[gunIndex]);
  2999. }
  3000. pDcChargingInfo->isRemoteStart = NO;
  3001. if (pDcChargingInfo->TimeoutFlag != Timeout_FinalCost)
  3002. StopGunInfoTimeoutDet(gunIndex);
  3003. //StartGunInfoTimeoutDet(gunIndex, Timeout_EvseCompleteDet);
  3004. ChangeStartOrStopDateTime(NO, gunIndex);
  3005. DB_Insert_Record(gunIndex);
  3006. }
  3007. void UpdateErrorCodeToOcpp(uint8_t index)
  3008. {
  3009. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  3010. //log_info("%d = ConnectorAlarmCode = %s", index, pDcChargingInfo->ConnectorAlarmCode);
  3011. //log_info("%d = EvConnAlarmCode = %s", index, pDcChargingInfo->EvConnAlarmCode);
  3012. if (strcmp((char *)pDcChargingInfo->ConnectorAlarmCode, "") != EQUAL) {
  3013. //if (strlen((char *)pDcChargingInfo->ConnectorAlarmCode) == EQUAL) {
  3014. strcpy((char *)ShmOCPP16Data->StatusNotification[index].ErrorCode, "InternalError");
  3015. strcpy((char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode, (char *)pDcChargingInfo->ConnectorAlarmCode);
  3016. } else if (strcmp((char *)pDcChargingInfo->EvConnAlarmCode, "") != EQUAL) {
  3017. //} else if (strlen((char *)pDcChargingInfo->EvConnAlarmCode) == EQUAL) {
  3018. strcpy((char *)ShmOCPP16Data->StatusNotification[index].ErrorCode, "OtherError");
  3019. strcpy((char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode, (char *)pDcChargingInfo->EvConnAlarmCode);
  3020. }
  3021. //log_info("Gun %d = VendorErrorCode = %s", index, (char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode);
  3022. }
  3023. void AdjustChargerCurrent()
  3024. {
  3025. pSysConfig->RatingCurrent = ShmPsuData->SystemAvailableCurrent / 10;
  3026. // 設定的電流~ 如超過可輸出的電流,則 bypass
  3027. if (pSysConfig->RatingCurrent < pSysConfig->MaxChargingCurrent ||
  3028. pSysConfig->RatingCurrent == 0) {
  3029. pSysConfig->MaxChargingCurrent = 0;
  3030. }
  3031. log_info("PSU : MaxChargingPower = %d, MaxChargingCurrent = %d",
  3032. ShmPsuData->SystemAvailablePower / 10,
  3033. ShmPsuData->SystemAvailableCurrent / 10
  3034. );
  3035. log_info("Config : ChargingPower = %d, ChargingCurrent = %d",
  3036. pSysConfig->MaxChargingPower,
  3037. pSysConfig->MaxChargingCurrent
  3038. );
  3039. }
  3040. void ResetDetAlarmStatus(uint8_t gun)
  3041. {
  3042. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gun);
  3043. if (pDcChargingInfo->Type == _Type_Chademo) {
  3044. if (pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP == YES) {
  3045. pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = NO;
  3046. }
  3047. } else if (pDcChargingInfo->Type == _Type_GB) {
  3048. if (pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP == YES) {
  3049. pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = NO;
  3050. }
  3051. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3052. if (pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP == YES) {
  3053. pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = NO;
  3054. }
  3055. }
  3056. }
  3057. static void autoStartCharging(uint8_t gunIndex)
  3058. {
  3059. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3060. if ( (pSysInfo->SystemPage >= _PAGE_AUTHORIZE && pSysInfo->SystemPage <= _PAGE_SENSING) ||
  3061. (pDcChargingInfo->isEVCCIDVerify && strcmp( (char *)pSysConfig->UserId , "" ) != EQUAL)) {
  3062. return;
  3063. }
  3064. if ((pDcChargingInfo->ConnectorPlugIn == YES) &&
  3065. (pDcChargingInfo->SystemStatus == S_IDLE )
  3066. ) {
  3067. if(!pSysConfig->AuthorisationMode) {
  3068. /*
  3069. if (pSysConfig->isAuthrizeByEVCCID && !pDcChargingInfo->isEVCCIDVerify &&
  3070. pDcChargingInfo->Type == _Type_CCS_2) {
  3071. // LCM show linking pic. & timeout 2 min
  3072. if( pSysInfo->CurGunSelected == gunIndex ) {
  3073. systemPageRestoreInit();
  3074. pSysInfo->SystemPage = _LCM_PRECHARGE;
  3075. }
  3076. StartGunInfoTimeoutDet(gunIndex,Timeout_EVCCID_Link);
  3077. // Getting EVCCID
  3078. if( strcmp( (char *)pDcChargingInfo->EVCCID, "" ) != EQUAL ) {
  3079. log_info("Authorizing EVCCID");
  3080. StopSystemTimeoutDet();
  3081. strcpy((char *)pSysConfig->UserId, (char *)pDcChargingInfo->EVCCID);
  3082. ChangeGunSelectByIndex(gunIndex);
  3083. confirmSelGun(gunIndex);
  3084. pDcChargingInfo->isEVCCIDVerify = true;
  3085. pSysInfo->SystemPage = _LCM_START_AUTHORIZING;
  3086. log_info("Get User(%d) ID:%s",gunIndex,pSysConfig->UserId);
  3087. setChargerMode(gunIndex, MODE_AUTHORIZING);
  3088. }
  3089. } else
  3090. return;
  3091. */
  3092. } else {
  3093. strcpy((char *)&pSysConfig->UserId, "AutoStartCharging");
  3094. ChangeGunSelectByIndex(gunIndex);
  3095. confirmSelGun(gunIndex);
  3096. ShmDcCommonData->is_AutoStart[gunIndex] = TRUE;
  3097. pSysInfo->SystemPage = _PAGE_SENSING;
  3098. ShmDcCommonData->AuthPass_flag[gunIndex] = TRUE;
  3099. //setChargerMode(gunIndex, MODE_AUTHORIZING);
  3100. log_info("Get User(%d) ID:%s",gunIndex,pSysConfig->UserId);
  3101. }
  3102. }
  3103. }
  3104. static bool PrecheckIsPass(uint8_t gunIndex)
  3105. {
  3106. bool result = true;
  3107. // relay welding or driving 是反向
  3108. result = !ShmDcCommonData->GunRelayWeldingOccur[gunIndex];
  3109. return result;
  3110. }
  3111. static void ReviewCriticalAlarm(void)
  3112. {
  3113. if (
  3114. pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == YES ||
  3115. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip == YES ||
  3116. pAlarmCode->AlarmEvents.bits.DoorOpen == YES ||
  3117. pSysWarning->ExtraErrProcess != _EXTRA_ERR_PROCESS_NONE ||
  3118. pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == YES ||
  3119. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo == YES ||
  3120. //Power cabinet alarm status
  3121. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop == YES ||
  3122. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen == YES ||
  3123. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP == YES ||
  3124. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP == YES ||
  3125. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP == YES ||
  3126. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP == YES ||
  3127. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP == YES ||
  3128. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure == YES ||
  3129. ShmSelectGunInfo->EthDevStatus.Backend == 0 ||
  3130. ShmSelectGunInfo->EthDevStatus.Backend == 2
  3131. ) {
  3132. if (((ShmSelectGunInfo->EthDevStatus.Backend == 0 ||
  3133. ShmSelectGunInfo->EthDevStatus.Backend == 2) &&
  3134. ShmDcCommonData->DebugFlag == TRUE) ||
  3135. pSysConfig->AuthorisationMode) {
  3136. pSysWarning->Level = WARN_LV_NL;
  3137. return;
  3138. }
  3139. pSysWarning->Level = WARN_LV_ER;
  3140. } else {
  3141. pSysWarning->Level = WARN_LV_NL;
  3142. }
  3143. }
  3144. static void CheckRelayWeldingOrDrivingFault(uint8_t gunIndex)
  3145. {
  3146. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3147. // relay welding fault then stop the charging process.
  3148. uint8_t faultCode = RELAY_STATUS_ERROR_NONE;
  3149. //static uint8_t drivingCount = 0;
  3150. if (gunIndex == 0) {
  3151. if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3152. ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3153. faultCode = RELAY_STATUS_ERROR_WELDING;
  3154. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3155. ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3156. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3157. }
  3158. } else if (gunIndex == 1) {
  3159. if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3160. ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3161. faultCode = RELAY_STATUS_ERROR_WELDING;
  3162. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3163. ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3164. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3165. }
  3166. }
  3167. if (pSysConfig->TotalConnectorCount >= 2 &&
  3168. !pSysInfo->IsAlternatvieConf) {
  3169. // 橋接
  3170. if (ShmDcCommonData->CheckRelayStatus[RELAY_PARA_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3171. ShmDcCommonData->CheckRelayStatus[RELAY_PARA_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3172. faultCode = RELAY_STATUS_ERROR_WELDING;
  3173. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_PARA_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3174. ShmDcCommonData->CheckRelayStatus[RELAY_PARA_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3175. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3176. }
  3177. }
  3178. if (faultCode == RELAY_STATUS_ERROR_WELDING) {
  3179. // welding
  3180. if (pDcChargingInfo->Type == _Type_Chademo) {
  3181. RecordAlarmCode(gunIndex, "011011");
  3182. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayWeldingFault = YES;
  3183. } else if (pDcChargingInfo->Type == _Type_GB) {
  3184. RecordAlarmCode(gunIndex, "011015");
  3185. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayWeldingFault = YES;
  3186. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3187. RecordAlarmCode(gunIndex, "011013");
  3188. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayWeldingFault = YES;
  3189. }
  3190. ShmDcCommonData->GunRelayWeldingOccur[gunIndex] = YES;
  3191. //EmcOccureByString("");
  3192. } else if (faultCode == RELAY_STATUS_ERROR_DRIVING) {
  3193. //if (drivingCount++ != 2) {
  3194. // return;
  3195. //}
  3196. // driving
  3197. if (pDcChargingInfo->Type == _Type_Chademo) {
  3198. RecordAlarmCode(gunIndex, "011012");
  3199. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayDrivingFault = YES;
  3200. } else if (pDcChargingInfo->Type == _Type_GB) {
  3201. RecordAlarmCode(gunIndex, "011016");
  3202. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayDrivingFault = YES;
  3203. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3204. RecordAlarmCode(gunIndex, "011014");
  3205. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayDrivingFault = YES;
  3206. }
  3207. ShmDcCommonData->GunRelayDrivingOccur[gunIndex] = YES;
  3208. //EmcOccureByString("");
  3209. } else {
  3210. ShmDcCommonData->GunRelayWeldingOccur[gunIndex] = NO;
  3211. ShmDcCommonData->GunRelayDrivingOccur[gunIndex] = NO;
  3212. //drivingCount = 0;
  3213. }
  3214. }
  3215. static void isChargingAverageState(void)
  3216. {
  3217. if (pSysInfo->MainChargingMode != _MAIN_CHARGING_MODE_AVER) {
  3218. pSysInfo->ReAssignedFlag = _REASSIGNED_NONE;
  3219. return;
  3220. }
  3221. // 均充 -> 最大充
  3222. if (pSysInfo->BridgeRelayStatus == NO) {
  3223. if (pSysInfo->ReAssignedFlag == _REASSIGNED_NONE) {
  3224. log_info("=============Smart Charging============= Step 11 ");
  3225. pSysInfo->ReAssignedFlag = _REASSIGNED_PREPARE_A_TO_M;
  3226. }
  3227. } else if (pSysInfo->ReAssignedFlag != _REASSIGNED_COMP &&
  3228. pSysInfo->ReAssignedFlag != _REASSIGNED_WAITING) {
  3229. log_info("=============Smart Charging============= Step 14 ");
  3230. pSysInfo->ReAssignedFlag = _REASSIGNED_WAITING;
  3231. } else if (pSysInfo->ReAssignedFlag == _REASSIGNED_COMP) {
  3232. pSysInfo->MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  3233. pSysInfo->ReAssignedFlag = _REASSIGNED_NONE;
  3234. }
  3235. }
  3236. bool Taskconutstring(char *src, char *taskname)
  3237. {
  3238. bool result = false;
  3239. if (src == NULL || strlen(src) == 0)
  3240. return result;
  3241. if (strstr(src, taskname) != NULL &&
  3242. strstr(src, "grep") == NULL &&
  3243. strstr(src, "[") == NULL)
  3244. {
  3245. result = true;
  3246. }
  3247. return result;
  3248. }
  3249. int GetProcessCount(char *procName)
  3250. {
  3251. int result = 0;
  3252. FILE *fp;
  3253. char cmd[256];
  3254. char buf[256];
  3255. sprintf(cmd, "ps -ef |grep %s", procName);
  3256. fp = popen(cmd, "r");
  3257. if(fp != NULL)
  3258. {
  3259. while(fgets(buf, sizeof(buf), fp) != NULL)
  3260. {
  3261. if (Taskconutstring(buf, procName))
  3262. result++;
  3263. }
  3264. }
  3265. pclose(fp);
  3266. return result;
  3267. }
  3268. void CheckTaskAlive()
  3269. {
  3270. pid_t Pid = fork();
  3271. if ( Pid == 0 ) {
  3272. //log_info("CheckTaskAlive fork Child's PID is %d", getpid());
  3273. while(1) {
  3274. sleep(3);
  3275. unsigned char count = GetProcessCount("Module_ChkSysTask");
  3276. if( count != 1 ) {
  3277. system("pkill Module_ChkSysTask");
  3278. sleep(10);
  3279. log_info("Create Check System Task");
  3280. system("/root/Module_ChkSysTask &");
  3281. }
  3282. }
  3283. return;
  3284. }
  3285. log_info("Create Check Systam fork:%d",Pid);
  3286. return;
  3287. }
  3288. /**
  3289. * [checkPileEndGfdResult 確認充電樁GFD狀態]
  3290. * @Author Jerry
  3291. * @DateTime 2021-07-01
  3292. * @param gunIndex [當前的槍]
  3293. * @param gunType [槍的類型]
  3294. * @param sysStatus [槍的系統狀態]
  3295. */
  3296. static void checkPileEndGfdResult(uint8_t gunIndex, uint8_t gunType, uint8_t sysStatus)
  3297. {
  3298. switch (gunType) {
  3299. case _Type_Chademo:
  3300. // 檢查樁端的 GFD 結果
  3301. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3302. isPrechargeStatus_chademo(gunIndex) >= 6 ) {
  3303. // 當前操作的槍號,進入 Charging
  3304. setChargerMode(gunIndex, MODE_CHARGING);
  3305. }
  3306. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3307. // GFD 錯誤停止
  3308. RecordAlarmCode(gunIndex, "012234");
  3309. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = YES;
  3310. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = NO;
  3311. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3312. // GFD 警告
  3313. //RecordAlarmCode(gunIndex, "012296");
  3314. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  3315. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = YES;
  3316. }
  3317. else {
  3318. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  3319. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = NO;
  3320. }
  3321. break;
  3322. case _Type_GB:
  3323. // 檢查樁端的 GFD 結果
  3324. //if (isPrechargeStatus_gb(gunIndex) > 5 && isPrechargeStatus_gb(gunIndex) < 9) {
  3325. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3326. isPrechargeStatus_gb(gunIndex) >= 6) {
  3327. setChargerMode(gunIndex, MODE_CHARGING);
  3328. }
  3329. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3330. // GFD 錯誤停止
  3331. RecordAlarmCode(gunIndex, "012236");
  3332. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = YES;
  3333. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = NO;
  3334. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3335. // GFD 警告
  3336. //RecordAlarmCode(gunIndex, "012298");
  3337. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  3338. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = YES;
  3339. }
  3340. else {
  3341. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  3342. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = NO;
  3343. }
  3344. break;
  3345. case _Type_CCS_2:
  3346. // 檢查樁端的 GFD 結果
  3347. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3348. (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
  3349. pDcChargingInfo->GroundFaultStatus == GFD_WARNING)
  3350. ) {
  3351. setChargerMode(gunIndex, MODE_CCS_PRECHARGE_STEP0);
  3352. }
  3353. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3354. // GFD 錯誤停止
  3355. RecordAlarmCode(gunIndex, "012235");
  3356. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3357. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = NO;
  3358. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3359. // GFD 警告
  3360. //RecordAlarmCode(gunIndex, "012297");
  3361. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  3362. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = YES;
  3363. }
  3364. else {
  3365. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  3366. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = NO;
  3367. }
  3368. break;
  3369. }
  3370. }
  3371. static void checkEvBoardReqStop(uint8_t sysStatus, uint8_t gunIndex)
  3372. {
  3373. uint8_t evBoardStopState = 0;
  3374. if ((evBoardStopState = isEvBoardStopChargeFlag(gunIndex)) > 0) {
  3375. // 板端要求停止 (錯誤)
  3376. if (sysStatus != S_CCS_PRECHARGE_ST0 &&
  3377. sysStatus != S_CCS_PRECHARGE_ST1) {
  3378. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  3379. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "EVDisconnected");
  3380. }
  3381. }
  3382. if (evBoardStopState == EV_BOARD_STOP_CHARGING) {
  3383. log_info("EV Board Stop Charging with some error");
  3384. ChargingAlarmProcess(gunIndex);
  3385. } else if (evBoardStopState == POWER_CABINET_STOP_CHARGING) {
  3386. log_info("Power Cabient Stop Charging");
  3387. ChargingTerminalProcess(gunIndex);
  3388. }
  3389. } else if (isEvBoardNormalStopChargeFlag(gunIndex) == YES) {
  3390. // 板端要求停止 (正常)
  3391. if (sysStatus != S_CCS_PRECHARGE_ST0 &&
  3392. sysStatus != S_CCS_PRECHARGE_ST1) {
  3393. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  3394. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "EVDisconnected");
  3395. }
  3396. }
  3397. log_info("EV Board Normal Stop Charging");
  3398. ChargingTerminalProcess(gunIndex);
  3399. } else if (OcppRemoteStop(gunIndex) == YES ||
  3400. WifiScheduleStop(gunIndex)) {
  3401. // 後臺要求停止
  3402. log_info("OCPP Stop Charging");
  3403. ChargingTerminalProcess(gunIndex);
  3404. }
  3405. }
  3406. static void checkOCPPReqStop(uint8_t gunIndex)
  3407. {
  3408. if (OcppRemoteStop(gunIndex) == YES ||
  3409. WifiScheduleStop(gunIndex) ||
  3410. CheckBackendChargingTimeout(gunIndex) ||
  3411. CheckBackendChargingEnergy(gunIndex) ||
  3412. strcmp((char *)ShmOCPP16Data->StartTransaction[gunIndex].ResponseIdTagInfo.Status, "Invalid") == EQUAL) {
  3413. // 後臺要求停止
  3414. ChargingTerminalProcess(gunIndex);
  3415. }
  3416. }
  3417. void ResetIdleData(uint8_t gunIndex)
  3418. {
  3419. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3420. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  3421. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  3422. pDcChargingInfo->PresentChargedDuration = 0;
  3423. pDcChargingInfo->RemainChargingDuration = 0;
  3424. pDcChargingInfo->PresentChargingVoltage = 0;//DS60-120 add
  3425. pDcChargingInfo->PresentChargingCurrent = 0;//DS60-120 add
  3426. pDcChargingInfo->RemoteStartFlag = NO;
  3427. pDcChargingInfo->Replug_flag = FALSE;
  3428. strcpy((char *)pDcChargingInfo->StartDateTime, "");
  3429. strcpy((char *)pDcChargingInfo->StopDateTime, "");
  3430. strcpy((char *)pDcChargingInfo->StartUserId, "");
  3431. strcpy((char *)pSysConfig->UserId, "");
  3432. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "");
  3433. ClearDetectPluginFlag();
  3434. //Jerry add
  3435. memset(&ShmSelectGunInfo->PricesInfo[gunIndex], 0, sizeof(PricesInfo));
  3436. memset(&ShmDcCommonData->TransactionInfo[gunIndex], 0, sizeof(RecordTransactionInfo));
  3437. ShmDcCommonData->finalcost_flag[gunIndex] = FALSE;
  3438. ShmDcCommonData->AuthPass_flag[gunIndex] = FALSE;
  3439. ShmDcCommonData->PayPass_flag[gunIndex] = FALSE;
  3440. ShmDcCommonData->LineStatus[gunIndex] = 0;
  3441. ShmDcCommonData->OperateIDLE[gunIndex] = 1;
  3442. ShmDcCommonData->is_RemoteStart[gunIndex] = FALSE;
  3443. ShmDcCommonData->is_AutoStart[gunIndex] = FALSE;
  3444. ShmDcCommonData->is_exit[gunIndex] = FALSE;
  3445. ShmDcCommonData->StopCharge[gunIndex] = FALSE;
  3446. ShmSelectGunInfo->PricesInfo[gunIndex].Balance = FAIL_BALANCE_PRICES;
  3447. destroySelGun(gunIndex);
  3448. ResetDetAlarmStatus(gunIndex); //recovery OVP status code
  3449. if (ShmSelectGunInfo->AuthorStateFromCabinet[gunIndex] == YES) {
  3450. ShmSelectGunInfo->AuthorStateFromCabinet[gunIndex] = NO;
  3451. }
  3452. //strcpy((char *)ShmOCPP16Data->StatusNotification[gunIndex].VendorErrorCode, "");
  3453. ReleaseAlarmCode(gunIndex);
  3454. if (pSysInfo->SystemPage != _PAGE_SELECT_GUN && pSysInfo->SystemPage != _PAGE_SELECT_PAY)
  3455. pSysInfo->SystemPage = _PAGE_IDLE;
  3456. }
  3457. void CheckErrorCode(uint8_t gunIndex)
  3458. {
  3459. struct ChargingInfoData *pSelectedDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  3460. if (gunIndex == pSysInfo->CurGunSelected) {
  3461. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3462. } else if (pSelectedDcChargingInfo->SystemStatus != S_IDLE &&
  3463. pSelectedDcChargingInfo->SystemStatus != S_RESERVATION &&
  3464. pSelectedDcChargingInfo->SystemStatus != S_MAINTAIN &&
  3465. pSelectedDcChargingInfo->SystemStatus != S_FAULT) {
  3466. if (pSelectedDcChargingInfo->SystemStatus == S_CHARGING) {
  3467. if(ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == FALSE)
  3468. pSysInfo->SystemPage = _PAGE_PAYING;
  3469. else
  3470. pSysInfo->SystemPage = _PAGE_COMPLETE;
  3471. } else {
  3472. systemPageRestoreInit();
  3473. }
  3474. }
  3475. ClearDetectPluginFlag();
  3476. if (pDcChargingInfo->SystemStatus != S_FAULT)
  3477. {
  3478. UpdateErrorCodeToOcpp(gunIndex);
  3479. setChargerMode(gunIndex, MODE_FAULT);
  3480. }
  3481. }
  3482. void AuthorizeStopCharging(uint8_t gunIndex)
  3483. {
  3484. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3485. checkOCPPReqStop(gunIndex);
  3486. //RfidStopCharging();
  3487. }
  3488. void showversion()
  3489. {
  3490. uint8_t index = 0;
  3491. log_info("\t=========== Dispenser info =========== ");
  3492. log_info("\tSW Version = %s", fwVersion);
  3493. log_info("\tDebug Version = %s",DebugVersion);
  3494. log_info("\tModelName = %s", pSysConfig->ModelName);
  3495. log_info("\tRelay Board FW Rev = %s", pSysInfo->RelayModuleFwRev);
  3496. log_info("\tFan Board FW Rev = %s", pSysInfo->FanModuleFwRev);
  3497. log_info("\tPrimary FW Rev = %s", pSysInfo->CsuPrimFwRev);
  3498. log_info("\tLCM HW Rev = %s", pSysInfo->LcmHwRev);
  3499. log_info("\tLED FW Rev = %s", pSysInfo->LedModuleFwRev);
  3500. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  3501. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  3502. if (pDcChargingInfo->Type == _Type_Chademo) {
  3503. log_info("\tCHAdeMO[%d] FW Rev = %s",
  3504. pDcChargingInfo->type_index,
  3505. ShmCHAdeMOData->evse[pDcChargingInfo->type_index].version);
  3506. } else if (pDcChargingInfo->Type == _Type_GB) {
  3507. log_info("\tGBT[%d] FW Rev = %s",
  3508. pDcChargingInfo->type_index,
  3509. ShmGBTData->evse[pDcChargingInfo->type_index].version);
  3510. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3511. log_info("\tCCS[%d] FW Rev = %s",
  3512. pDcChargingInfo->type_index,
  3513. ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].version);
  3514. }
  3515. }
  3516. log_info("\t==================================== ");
  3517. }
  3518. int main(void)
  3519. {
  3520. bool isModelNameMatch = true;
  3521. uint8_t _ocppProfileChkFlag;
  3522. uint8_t gunIndex = 0;
  3523. uint8_t cancelcount = 0;
  3524. if (CreateAllCsuShareMemory() == FAIL) {
  3525. log_error("create share memory error");
  3526. return FAIL;
  3527. }
  3528. ClearAllShmMemParameter();
  3529. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  3530. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  3531. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  3532. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  3533. pFaultCode = (struct FaultCodeData *)GetShmFaultCodeData();
  3534. pInfoCode = (struct InfoCodeData *)GetShmInfoCodeData();
  3535. ShmPsuData = (struct PsuData *)GetShmPsuData();
  3536. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  3537. ShmGBTData = (struct GBTData *)GetShmGBTData();
  3538. ShmCcsData = (struct CcsData *)GetShmCcsData();
  3539. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  3540. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  3541. ShmRelayModuleData = (struct RelayModuleData *)GetShmRelayModuleData();
  3542. ShmLedModuleData = (struct LedModuleData *)GetShmLedModuleData();
  3543. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  3544. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  3545. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  3546. ShmSysConfigAndInfo = (struct SysConfigAndInfo *)GetShmSysConfigAndInfo();
  3547. ShmStatusCodeData = (struct StatusCodeData *)GetShmStatusCodeData();
  3548. log_info(" ********************************************************");
  3549. log_info(" ****************** FileSystem Boot up *****************");
  3550. log_info(" ********************************************************");
  3551. log_info(" ****************** Project:DD360Tcc *****************");
  3552. log_info(" ********************************************************");
  3553. if (!InitialSystemDefaultConfig()) {
  3554. log_error("InitialSystemDefaultConfig NG ");
  3555. //StopProcessingLoop();
  3556. sleep(5);
  3557. system("reboot -f");
  3558. }
  3559. CheckGunTypeFromHw();
  3560. CheckIsAlternatvieByModelName();
  3561. InitialShareMemoryInfo();
  3562. GetFirmwareVersion();
  3563. if (!CheckConnectorTypeStatus()) {
  3564. isModelNameMatch = false;
  3565. }
  3566. Initialization();
  3567. SpawnTask();
  3568. log_info("Spawned all Task");
  3569. if (!isModelNameMatch) {
  3570. pAlarmCode->AlarmEvents.bits.ModelNameNoneMatchStestFail = YES;
  3571. //ChangeLcmByIndex(_LCM_ERROR);
  3572. ChangeLcmByIndex(_PAGE_MAINTAIN);
  3573. // Module Name 與硬體對應不正確
  3574. log_error("Module Name & HW info none match. ");
  3575. sleep(3);
  3576. KillAllTask();
  3577. StopProcessingLoop();
  3578. }
  3579. CreateTimeoutFork();
  3580. log_info("Start self test... ");
  3581. SelfTestRun();
  3582. StopSystemTimeoutDet();
  3583. log_info("Self test finished : SelfTestSeq = %d, Work_Step = %d ",
  3584. pSysInfo->SelfTestSeq,
  3585. ShmPsuData->Work_Step);
  3586. if (pSysInfo->SelfTestSeq == _STEST_FAIL ||
  3587. ShmPsuData->Work_Step == _NO_WORKING ||
  3588. pInfoCode->InfoEvents.bits.CcsSeccTimeoutQCA7000Comm == YES //DS60-120 add
  3589. ) {
  3590. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3591. setChargerMode(gunIndex, MODE_MAINTAIN);
  3592. }
  3593. ChangeLcmByIndex(_PAGE_MAINTAIN);
  3594. } else {
  3595. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3596. setChargerMode(gunIndex, MODE_IDLE);
  3597. }
  3598. }
  3599. // Local DB
  3600. if (DB_Open() != PASS) {
  3601. log_info("DB_Open fail. ");
  3602. isDb_ready = false;
  3603. } else {
  3604. isDb_ready = true;
  3605. for (int _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  3606. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  3607. pDcChargingInfo->IsAvailable = DB_Get_Operactive(_index);
  3608. }
  3609. DB_Reboot_Record();
  3610. }
  3611. log_info("===== Create DB End ===== ");
  3612. ChangeLcmByIndex(_PAGE_SELECT_GUN);
  3613. sleep(1);
  3614. //***** 須新增的偵測 *****//
  3615. // 1. Thernal - 控制風扇轉速
  3616. // 2. ouput fuse - 控制風扇轉速
  3617. CreateRfidFork();
  3618. // Main loop
  3619. showversion();
  3620. CheckFwSlotStatusLog();
  3621. //AdjustChargerCurrent();
  3622. gettimeofday(&_cmdMainPriority_time, NULL);
  3623. // GunIndexInfo *pGunIndexInfo = (GunIndexInfo *)GetGunIndexInfo();
  3624. CheckTaskAlive();
  3625. CreateWatchdog();
  3626. for (;;) {
  3627. CheckOcppStatus();
  3628. ChkPrimaryStatus();
  3629. if ((IsConnectorWholeIdle() ||
  3630. //(pSysInfo->PageIndex == _LCM_ERROR)) &&
  3631. (pSysInfo->PageIndex == _PAGE_MAINTAIN)) &&
  3632. (pSysInfo->SystemTimeoutFlag != Timeout_ReturnToChargingGunDet)
  3633. ) {
  3634. CheckFactoryConfigFunction();
  3635. //CheckFwUpdateFunction();
  3636. }
  3637. // OCPP 邏輯
  3638. OcppRemoteStartChk();
  3639. // 當 AC 沒有搭上時,清除一些錯誤碼
  3640. ClearAlarmCodeWhenAcOff();
  3641. if ((GetTimeoutValue(_cmdMainPriority_time) / 1000) > 5000) {
  3642. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3643. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3644. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  3645. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  3646. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  3647. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  3648. if (pDcChargingInfo->SystemStatus == S_CHARGING &&
  3649. _ocppProfileChkFlag == 12) {
  3650. ChargingProfileFlat(gunIndex);
  3651. _ocppProfileChkFlag = 0;
  3652. } else if (pDcChargingInfo->SystemStatus != S_CHARGING) {
  3653. ChargingProfileFlat(gunIndex);
  3654. _ocppProfileChkFlag = 0;
  3655. } else {
  3656. _ocppProfileChkFlag++;
  3657. }
  3658. }
  3659. checkGunOTPState(gunIndex); //check gun OTP
  3660. }
  3661. gettimeofday(&_cmdMainPriority_time, NULL);
  3662. }
  3663. gEvBoardErr.GunErrMessage = 0; //清除系統執行中的錯誤訊息
  3664. gChillerTempErr.TempErrMsg = 0;//清除系統執行中的錯誤訊息
  3665. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3666. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3667. // 重新收集各槍的錯誤狀態
  3668. collectError(gunIndex);
  3669. checkEvBoardAlarmState(pDcChargingInfo->Type);
  3670. }
  3671. checkChillerAlarmState();
  3672. // 確認當前錯誤 Level = 2 ?
  3673. ReviewCriticalAlarm();
  3674. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3675. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3676. CheckGpioInStatus();
  3677. CheckErrorOccurStatus(gunIndex);
  3678. // 確認 Relay Welding or Driving Fault
  3679. CheckRelayWeldingOrDrivingFault(gunIndex);
  3680. ChkOcppStatus(gunIndex);
  3681. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  3682. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  3683. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  3684. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  3685. CheckSmartChargeProfile(gunIndex);
  3686. }
  3687. switch (pDcChargingInfo->SystemStatus) {
  3688. case S_IDLE:
  3689. if (isModeChange(gunIndex)) {
  3690. log_info("============================= S_IDLE(%x) ============================= ", gunIndex);
  3691. ResetIdleData(gunIndex);
  3692. }
  3693. isChargingAverageState();
  3694. // For RemoteStart Using
  3695. if (pDcChargingInfo->RemoteStartFlag == YES && pDcChargingInfo->IsAvailable) {
  3696. log_info("-------- IDLE Remote Start(%d) --------", gunIndex);
  3697. ChangeGunSelectByIndex(gunIndex);
  3698. setChargerMode(gunIndex, MODE_AUTHORIZING);
  3699. break;
  3700. }
  3701. autoStartCharging(gunIndex);
  3702. cancelcount = 0;
  3703. // 讀卡邏輯
  3704. if (!ShmDcCommonData->TradeCancel)
  3705. ScannerCardProcess();
  3706. if (pSysInfo->SystemPage == _PAGE_SELECT_GUN) {
  3707. ShmDcCommonData->LineStatus[gunIndex] = 0;
  3708. StopGunInfoTimeoutDet(gunIndex);
  3709. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  3710. }
  3711. if (pSysInfo->CurGunSelected == gunIndex){
  3712. if(pSysInfo->SystemPage ==_PAGE_BILL) {
  3713. StartSystemTimeoutDet(Timeout_AddLine);
  3714. if (/*ShmDcCommonData->LineStatus[gunIndex] == 1 ||*/ ShmDcCommonData->LineStatus[gunIndex] == 2) {
  3715. pSysInfo->SystemPage = _PAGE_ADD_FRIEND;
  3716. log_info("Change to Add Line Friend Page");
  3717. }
  3718. } else if(pSysInfo->SystemPage ==_PAGE_ADD_FRIEND) {
  3719. StopSystemTimeoutDet();
  3720. StartGunInfoTimeoutDet(gunIndex, Timeout_LineReigster);
  3721. if (ShmDcCommonData->LineStatus[gunIndex] == 3) {
  3722. StopGunInfoTimeoutDet(gunIndex);
  3723. pSysInfo->SystemPage =_PAGE_SELECT_PAY;
  3724. ShmDcCommonData->TransactionInfo[gunIndex].IsDonateInvoice = FALSE;
  3725. log_info("Change to Select Pay Page");
  3726. }
  3727. if (ShmDcCommonData->LineStatus[gunIndex] == 4 ) {
  3728. StopGunInfoTimeoutDet(gunIndex);
  3729. pSysInfo->SystemPage =_PAGE_SELECT_PAY;
  3730. ShmDcCommonData->TransactionInfo[gunIndex].IsDonateInvoice = TRUE;
  3731. log_info("Change to Select Pay Page");
  3732. }
  3733. }
  3734. }
  3735. goto CheckStatus;
  3736. break;
  3737. case S_RESERVATION:
  3738. if (isModeChange(gunIndex)) {
  3739. log_info("============================= S_RESERVATION(%x) ============================= ", gunIndex);
  3740. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowConf = YES;
  3741. }
  3742. if (!isReservationExpired(gunIndex)) {
  3743. pDcChargingInfo->SystemStatus = S_IDLE;
  3744. }
  3745. goto CheckStatus;
  3746. break;
  3747. case S_FAULT:
  3748. if (isModeChange(gunIndex)) {
  3749. if(pDcChargingInfo->SystemStatus == S_FAULT) {
  3750. log_info("============================= S_FAULT(%x) ============================= ", gunIndex);
  3751. //pSysInfo->SystemPage = _LCM_ERROR;
  3752. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3753. }
  3754. }
  3755. CheckStatus:
  3756. if (pDcChargingInfo->IsAvailable == NO) {
  3757. setChargerMode(gunIndex, MODE_MAINTAIN);
  3758. break;
  3759. }
  3760. // Refresh Error Status
  3761. if (pSysWarning->Level == WARN_LV_ER) {
  3762. CheckErrorCode(gunIndex);
  3763. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3764. continue;
  3765. }
  3766. if (PrecheckIsPass(gunIndex) == false) {
  3767. log_error("Relay welding");
  3768. setChargerMode(gunIndex, MODE_FAULT);
  3769. if (gunIndex == pSysInfo->CurGunSelected) {
  3770. //pSysInfo->SystemPage = _LCM_ERROR;
  3771. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3772. }
  3773. break;
  3774. }
  3775. if (pDcChargingInfo->SystemStatus == S_FAULT) {
  3776. systemPageRestoreInit();
  3777. setChargerMode(gunIndex, MODE_IDLE);
  3778. }
  3779. break;
  3780. case S_AUTHORIZING:
  3781. if (isModeChange(gunIndex)) {
  3782. log_info("============================= S_AUTHORIZING(%x) ============================= ", gunIndex);
  3783. StartSystemTimeoutDet(Timeout_AuthorizingForStop);
  3784. }
  3785. ScannerCardProcess();
  3786. // 隨插即充
  3787. if (pSysInfo->SystemPage == _PAGE_PLUGIN && ShmDcCommonData->TradeCancel == FALSE) {
  3788. pDcChargingInfo->Replug_flag = TRUE;
  3789. StopSystemTimeoutDet();
  3790. StartGunInfoTimeoutDet(gunIndex,Timeout_WaitPlug);
  3791. }
  3792. if (pSysInfo->SystemPage == _PAGE_PLUGOUT) {
  3793. StartSystemTimeoutDet(Timeout_VerifyFail);
  3794. }
  3795. if (isDetectPlugin()) {
  3796. // 卡號驗證成功後,等待充電槍插入充電車
  3797. if (pDcChargingInfo->RemoteStartFlag == YES) {
  3798. if (pDcChargingInfo->ConnectorPlugIn == YES &&
  3799. pDcChargingInfo->IsAvailable ) {
  3800. log_info("-------- S_AUTHORIZING Remote Start(%d) --------", gunIndex);
  3801. pDcChargingInfo->RemoteStartFlag = NO;
  3802. pDcChargingInfo->isRemoteStart = YES; //DS60-120
  3803. ChangeGunSelectByIndex(gunIndex);
  3804. //AddPlugInTimes(gunIndex);
  3805. setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
  3806. strcpy((char *)pDcChargingInfo->StartUserId, "");
  3807. ClearDetectPluginFlag();
  3808. continue;
  3809. }
  3810. } else if (pSysInfo->OrderCharging == NO_DEFINE) {
  3811. if (pDcChargingInfo->ConnectorPlugIn == YES &&
  3812. pDcChargingInfo->IsAvailable &&
  3813. pDcChargingInfo->SystemStatus == S_AUTHORIZING &&
  3814. ShmDcCommonData->AuthPass_flag[pSysInfo->CurGunSelected] == TRUE &&
  3815. //waitSelectGunPlugIt(gunIndex)
  3816. (waitRightGunPlugIt(gunIndex) == PASS ||
  3817. waitLeftGunPlugIt(gunIndex) == PASS)
  3818. ) {
  3819. log_info("-------- RFID/Auto Start(%d) --------", gunIndex);
  3820. ChangeGunSelectByIndex(gunIndex);
  3821. //AddPlugInTimes(gunIndex);
  3822. pDcChargingInfo->isRemoteStart = NO;
  3823. strcpy((char *)pDcChargingInfo->StartUserId, (char *)pSysConfig->UserId);
  3824. log_info("index = %d, CardNumber = %s ",
  3825. gunIndex,
  3826. pDcChargingInfo->StartUserId);
  3827. strcpy((char *)pSysConfig->UserId, "");
  3828. // 當前操作的槍號,進入 Preparing
  3829. setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
  3830. ClearDetectPluginFlag();
  3831. continue;
  3832. }
  3833. }
  3834. if (!GetIsCardScan() && pSysInfo->CurGunSelected == gunIndex &&
  3835. pSysInfo->SystemPage != _PAGE_AUTHORIZE_FAIL &&
  3836. pSysInfo->SystemPage != _PAGE_SENSING) {
  3837. pSysInfo->SystemPage = _PAGE_PLUGIN;
  3838. }
  3839. }
  3840. break;
  3841. case S_REASSIGN_CHECK: {
  3842. if (isModeChange(gunIndex)) {
  3843. log_info("============================= S_REASSIGN_CHECK(%x) ============================= ", gunIndex);
  3844. if (pSysInfo->OrderCharging != NO_DEFINE) {
  3845. pSysInfo->OrderCharging = NO_DEFINE;
  3846. pDcChargingInfo->_SaftyDetect = FALSE;
  3847. pDcChargingInfo->Replug_flag = TRUE;
  3848. }
  3849. StopSystemTimeoutDet();
  3850. StopGunInfoTimeoutDet(gunIndex);
  3851. gettimeofday(&pDcChargingInfo->PreChargeTimer, NULL);
  3852. }
  3853. setChargerMode(gunIndex, S_PREPARNING);
  3854. if (pSysInfo->CurGunSelected == gunIndex) {
  3855. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3856. }
  3857. }
  3858. break;
  3859. case S_PREPARNING:
  3860. if (isModeChange(gunIndex)) {
  3861. log_info("============================= S_PREPARNING(%x) ============================= ", gunIndex);
  3862. StopGunInfoTimeoutDet(gunIndex);
  3863. StartGunInfoTimeoutDet(gunIndex, Timeout_Preparing);
  3864. }
  3865. if (ShmPsuData->SystemPresentPsuQuantity > 0 &&
  3866. ShmPsuData->SystemAvailablePower > 10 &&
  3867. GetTimeoutValue(pDcChargingInfo->TimeoutTimer) >= 5000000) {
  3868. setChargerMode(gunIndex, MODE_PREPARE_FOR_EV);
  3869. }
  3870. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3871. if (pSysInfo->CurGunSelected == gunIndex) {
  3872. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3873. }
  3874. break;
  3875. case S_PREPARING_FOR_EV: // 等待車端的通訊 (EV 小板),待車端回報後,開始樁端的測試
  3876. if (isModeChange(gunIndex)) {
  3877. log_info("============================= S_PREPARING_FOR_EV(%x) ============================= ", gunIndex);
  3878. log_info("Waitting for Gun locked.");
  3879. StopGunInfoTimeoutDet(gunIndex);
  3880. StartGunInfoTimeoutDet(gunIndex, Timeout_EvChargingDet);
  3881. }
  3882. if (pDcChargingInfo->Type == _Type_Chademo) {
  3883. if (isEvGunLocked_chademo(gunIndex) == YES) {
  3884. log_info("Gun Locked");
  3885. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3886. }
  3887. } else if (pDcChargingInfo->Type == _Type_GB) {
  3888. if (isEvGunLocked_gb(gunIndex) == YES) {
  3889. log_info("Gun Locked");
  3890. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3891. }
  3892. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3893. if (isEvGunLocked_ccs(gunIndex) == YES) {
  3894. log_info("Gun Locked");
  3895. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3896. }
  3897. }
  3898. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3899. if (pSysInfo->CurGunSelected == gunIndex) {
  3900. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3901. }
  3902. break;
  3903. case S_PREPARING_FOR_EVSE: // Ground fault test, 等待 Relay Board 通訊及測試,並將狀態回報, CSU 確認 Pass 後,開始進入充電
  3904. if (isModeChange(gunIndex)) {
  3905. log_info("============================= S_PREPARING_FOR_EVSE(%x) ============================= ", gunIndex);
  3906. StopGunInfoTimeoutDet(gunIndex);
  3907. StartGunInfoTimeoutDet(gunIndex, Timeout_EvseChargingDet);
  3908. }
  3909. checkPileEndGfdResult(gunIndex, pDcChargingInfo->Type, pDcChargingInfo->SystemStatus);
  3910. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3911. if (pSysInfo->CurGunSelected == gunIndex) {
  3912. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3913. }
  3914. break;
  3915. case S_CCS_PRECHARGE_ST0:
  3916. if (isModeChange(gunIndex)) {
  3917. log_info("============================= CCS Precharge Processing 1(%x) ============================= ", gunIndex);
  3918. StopGunInfoTimeoutDet(gunIndex);
  3919. StartGunInfoTimeoutDet(gunIndex, Timeout_ForCcsPrechargeDet);
  3920. }
  3921. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3922. // GFD 錯誤停止
  3923. RecordAlarmCode(gunIndex, "012235");
  3924. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3925. }
  3926. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3927. // 等待 EV 小板 (CCS) 通知可以開始 Precharge
  3928. // 切換 D+ Relay to Precharge Relay
  3929. if (isPrechargeStatus_ccs(gunIndex) == 39 ||
  3930. isPrechargeStatus_ccs(gunIndex) == 40) {
  3931. if ((pDcChargingInfo->RelayKPK2Status == YES || pDcChargingInfo->PantographFlag == YES) &&
  3932. pDcChargingInfo->PrechargeStatus != PRECHARGE_READY)
  3933. //if (pDcChargingInfo->PrechargeStatus != PRECHARGE_PRERELAY_PASS)
  3934. {
  3935. //log_info("Send precharge ready 1..........%x, status = %d ",
  3936. // gunIndex,
  3937. // isPrechargeStatus_ccs(gunIndex));
  3938. if (isPrechargeStatus_ccs(gunIndex) == 39) {
  3939. log_info("Conn %x, Precharge ready, CCS status = PreChargeResponse (%d) ",
  3940. gunIndex,
  3941. isPrechargeStatus_ccs(gunIndex));
  3942. } else if (isPrechargeStatus_ccs(gunIndex) == 40) {
  3943. log_info("Conn %x, Precharge ready, CCS status = PowerDeliveryRequest start (%d) ",
  3944. gunIndex,
  3945. isPrechargeStatus_ccs(gunIndex));
  3946. }
  3947. pDcChargingInfo->PrechargeStatus = PRECHARGE_READY;
  3948. }
  3949. } else if (isPrechargeStatus_ccs(gunIndex) == 45 ||
  3950. isPrechargeStatus_ccs(gunIndex) == 46
  3951. ) {
  3952. setChargerMode(gunIndex, MODE_CCS_PRECHARGE_STEP1);
  3953. }
  3954. if (pSysInfo->CurGunSelected == gunIndex) {
  3955. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3956. }
  3957. break;
  3958. case S_CCS_PRECHARGE_ST1:
  3959. if (isModeChange(gunIndex)) {
  3960. log_info("============================= CCS Precharge Processing 2(%x) ============================= ", gunIndex);
  3961. }
  3962. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3963. // GFD 錯誤停止
  3964. RecordAlarmCode(gunIndex, "012235");
  3965. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3966. }
  3967. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3968. // 等待小板通知進入充電
  3969. // 切換 D+ Relay to Precharge Relay
  3970. if (pDcChargingInfo->RelayK1K2Status == YES || pDcChargingInfo->PantographFlag == YES) {
  3971. pDcChargingInfo->PrechargeStatus = PRECHARGE_READY;
  3972. // pSysInfo->CurGunSelected = gunIndex;
  3973. setChargerMode(gunIndex, MODE_CHARGING);
  3974. }
  3975. if (pSysInfo->CurGunSelected == gunIndex) {
  3976. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3977. }
  3978. break;
  3979. case S_CHARGING: // 剛進入充電狀態,等待 EV 小板要求的輸出電流後開始輸出
  3980. if (isModeChange(gunIndex)) {
  3981. log_info("============================= S_CHARGING(%x) ============================= ", gunIndex);
  3982. StopGunInfoTimeoutDet(gunIndex);
  3983. ftime(&startChargingTime[gunIndex]);
  3984. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].ResponseIdTagInfo.Status, ""); //DS60-120 add
  3985. ChangeStartOrStopDateTime(YES, gunIndex);
  3986. pDcChargingInfo->Replug_flag = FALSE;
  3987. ShmDcCommonData->finalcost_flag[gunIndex] = FALSE;
  3988. ShmDcCommonData->TransactionInfo[gunIndex].isIntoCharge = TRUE;
  3989. ShmDcCommonData->RecordEnergyTime[gunIndex] = time((time_t*)NULL);
  3990. UpdateDeductInfoStatus(gunIndex, &ShmDcCommonData->TransactionInfo[gunIndex]);
  3991. }
  3992. if (ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionConf) {
  3993. ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionConf = NO;
  3994. }
  3995. ftime(&endChargingTime[gunIndex]);
  3996. pDcChargingInfo->PresentChargedDuration = DiffTimeb(startChargingTime[gunIndex], endChargingTime[gunIndex]);
  3997. ShmDcCommonData->TransactionInfo[gunIndex].Energy = pDcChargingInfo->PresentChargedEnergy;
  3998. // 每秒紀錄使用電量到資料庫內
  3999. if ((time((time_t*)NULL) - ShmDcCommonData->RecordEnergyTime[gunIndex]) >= 1) {
  4000. ShmDcCommonData->RecordEnergyTime[gunIndex] = time((time_t*)NULL);
  4001. UpdateDeductInfoStatus(gunIndex, &ShmDcCommonData->TransactionInfo[gunIndex]);
  4002. }
  4003. checkPileEndGfdResult(gunIndex, pDcChargingInfo->Type, pDcChargingInfo->SystemStatus);
  4004. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  4005. // Check Stop Charging
  4006. AuthorizeStopCharging(gunIndex);
  4007. if (pSysInfo->SystemPage == _PAGE_STOP_CONFIRM_LEFT ||
  4008. pSysInfo->SystemPage == _PAGE_STOP_CONFIRM_RIGHT)
  4009. break;
  4010. // LCM => Charging
  4011. if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _PAGE_IDLE &&
  4012. pSysInfo->SystemPage != _PAGE_SELECT_GUN) {
  4013. pSysInfo->SystemPage = _PAGE_CHARGING;
  4014. }
  4015. break;
  4016. case S_TERMINATING:
  4017. if (isModeChange(gunIndex)) {
  4018. log_info("============================= S_TERMINATING(%x) ============================= ", gunIndex);
  4019. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  4020. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Local");
  4021. }
  4022. ShmDcCommonData->StopCharge[gunIndex] = TRUE;
  4023. StopGunInfoTimeoutDet(gunIndex);
  4024. StartGunInfoTimeoutDet(gunIndex, Timeout_FinalCost);
  4025. StartSystemTimeoutDet(Timeout_Terminating);
  4026. //pSysInfo->CurGunSelected = gunIndex;
  4027. /*
  4028. if (pDcChargingInfo->Replug_flag == TRUE) {
  4029. ShmDcCommonData->TradeCancel = TRUE;
  4030. StartSystemTimeoutDet(Timeout_TradeCancel);
  4031. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  4032. ShmDcCommonData->PreAuth_Result = 0;
  4033. pSysInfo->SystemPage = _PAGE_SENSING;
  4034. }*/
  4035. }
  4036. // For Precharging timeout
  4037. if (pDcChargingInfo->Type == _Type_Chademo) {
  4038. if (isEvStopCharging_chademo(gunIndex) == YES ||
  4039. isPrechargeStatus_chademo(gunIndex) <= 0) {
  4040. setChargerMode(gunIndex, MODE_COMPLETE);
  4041. }
  4042. } else if (pDcChargingInfo->Type == _Type_GB) {
  4043. if (isEvStopCharging_gb(gunIndex) == YES ||
  4044. isPrechargeStatus_gb(gunIndex) <= 0) {
  4045. setChargerMode(gunIndex, MODE_COMPLETE);
  4046. }
  4047. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  4048. if (isEvStopCharging_ccs(gunIndex) == YES &&
  4049. (isPrechargeStatus_ccs(gunIndex) >= 53 ||
  4050. isPrechargeStatus_ccs(gunIndex) == 0 ||
  4051. isPrechargeStatus_ccs(gunIndex) == 13 ||
  4052. isPrechargeStatus_ccs(gunIndex) == 14)
  4053. ) {
  4054. setChargerMode(gunIndex, MODE_COMPLETE);
  4055. }
  4056. }
  4057. //if (pSysInfo->SystemPage == _LCM_ERROR) {
  4058. if (pSysInfo->SystemPage == _PAGE_MAINTAIN) {
  4059. break;
  4060. }
  4061. if (pSysInfo->CurGunSelected == gunIndex &&
  4062. pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING) {
  4063. if (pDcChargingInfo->Replug_flag == TRUE)
  4064. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4065. else {
  4066. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4067. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4068. else
  4069. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4070. }
  4071. }
  4072. break;
  4073. case S_COMPLETE:
  4074. if (isModeChange(gunIndex)) {
  4075. log_info ("============================= S_COMPLETE(%x) ============================= ", gunIndex);
  4076. if (strcmp((char *)pDcChargingInfo->StartDateTime, "") != EQUAL) {
  4077. OcppStopTransation(gunIndex);
  4078. }
  4079. TheEndCharging(gunIndex);
  4080. if (pDcChargingInfo->Replug_flag != TRUE && pSysInfo->SystemPage != _PAGE_PLUGOUT)
  4081. StopSystemTimeoutDet();
  4082. if (ShmDcCommonData->is_AutoStart[gunIndex] == TRUE && pSysInfo->CurGunSelected == gunIndex)
  4083. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4084. ShmDcCommonData->StopCharge[gunIndex] = TRUE;
  4085. }
  4086. //if (pSysInfo->SystemPage == _LCM_ERROR) {
  4087. if (pSysInfo->SystemPage == _PAGE_MAINTAIN) {
  4088. break;
  4089. }
  4090. if (pSysInfo->CurGunSelected == gunIndex && ShmDcCommonData->is_exit[gunIndex]) {
  4091. pSysInfo->SystemPage = _PAGE_EXIT;
  4092. break;
  4093. }
  4094. if (pSysInfo->CurGunSelected == gunIndex && pDcChargingInfo->ConnectorPlugIn == NO &&
  4095. (pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING)) {
  4096. StartGunInfoTimeoutDet(gunIndex, Timeout_ExitPage);
  4097. }
  4098. if (pSysInfo->CurGunSelected == gunIndex &&
  4099. pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING) {
  4100. if (pDcChargingInfo->Replug_flag == TRUE)
  4101. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4102. else {
  4103. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4104. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4105. else
  4106. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4107. }
  4108. }
  4109. break;
  4110. case S_ALARM:
  4111. if (isModeChange(gunIndex)) {
  4112. log_info("============================= S_ALARM(%x) ============================= ", gunIndex);
  4113. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  4114. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Local");
  4115. }
  4116. UpdateErrorCodeToOcpp(gunIndex);
  4117. if (strcmp((char *)pDcChargingInfo->StartDateTime, "") != EQUAL) {
  4118. OcppStopTransation(gunIndex);
  4119. }
  4120. TheEndCharging(gunIndex);
  4121. StopGunInfoTimeoutDet(gunIndex);
  4122. ShmDcCommonData->StopCharge[gunIndex] = TRUE;
  4123. if (pDcChargingInfo->Replug_flag == TRUE) {
  4124. /*
  4125. ShmDcCommonData->TradeCancel = TRUE;
  4126. StartSystemTimeoutDet(Timeout_TradeCancel);
  4127. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  4128. ShmDcCommonData->PreAuth_Result = 0;
  4129. pSysInfo->SystemPage = _PAGE_SENSING;
  4130. */
  4131. } else {
  4132. StartGunInfoTimeoutDet(gunIndex, Timeout_FinalCost);
  4133. if(ShmDcCommonData->finalcost_flag[gunIndex] == FALSE) {
  4134. pSysInfo->SystemPage = _PAGE_PAYING;
  4135. }
  4136. }
  4137. }
  4138. /*
  4139. if (ShmDcCommonData->PreAuth_Config == _CREDITCARD_CANCEL &&
  4140. ShmDcCommonData->PreAuth_Result != 0 && cancelcount < 30) {
  4141. sleep(1);
  4142. cancelcount++;
  4143. //log_info("Cancel Not Complete yet");
  4144. break;
  4145. }
  4146. */
  4147. if (pSysWarning->Level == WARN_LV_ER) {
  4148. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4149. continue;
  4150. }
  4151. if (pSysInfo->CurGunSelected == gunIndex && ShmDcCommonData->is_exit[gunIndex]) {
  4152. pSysInfo->SystemPage = _PAGE_EXIT;
  4153. break;
  4154. }
  4155. if (pSysInfo->CurGunSelected == gunIndex && pDcChargingInfo->ConnectorPlugIn == NO &&
  4156. (pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING)) {
  4157. StartGunInfoTimeoutDet(gunIndex, Timeout_ExitPage);
  4158. }
  4159. if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _PAGE_PAYING ) {
  4160. if (pDcChargingInfo->Replug_flag == TRUE)
  4161. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4162. else{
  4163. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4164. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4165. else
  4166. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4167. }
  4168. }
  4169. break;
  4170. case S_MAINTAIN:
  4171. if (isModeChange(gunIndex)) {
  4172. log_info("============================= S_MAINTAIN(%x) ============================= ", gunIndex);
  4173. if (pSysInfo->FirmwareUpdate == YES) {
  4174. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4175. continue;
  4176. }
  4177. if (ShmDcCommonData->RoutineSettlement == TRUE) {
  4178. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4179. continue;
  4180. }
  4181. if (pDcChargingInfo->IsAvailable == NO )
  4182. break;
  4183. if (pSysWarning->Level != WARN_LV_ER) {
  4184. if (!DisplaySelfTestFailReason()) { //DS60-120 add
  4185. log_info("Soft reboot for retry self-tets. ");
  4186. sleep(3);
  4187. system("killall OcppBackend &");
  4188. KillAllTask();
  4189. system("/usr/bin/run_evse_restart.sh");
  4190. }
  4191. }
  4192. sleep(3);
  4193. if (pSysWarning->Level == WARN_LV_ER) { //DS60-120 add
  4194. KillTaskExceptPrimary();
  4195. } else {
  4196. KillTask();
  4197. }
  4198. if (pSysInfo->SelfTestSeq == _STEST_FAIL)
  4199. StopProcessingLoop();
  4200. }
  4201. /*
  4202. if (pDcChargingInfo->IsAvailable == TRUE) {
  4203. log_info("Gun[%d] set Available",gunIndex);
  4204. setChargerMode(gunIndex, MODE_IDLE);
  4205. break;
  4206. }
  4207. */
  4208. if (pSysInfo->CurGunSelected == gunIndex) {
  4209. StopSystemTimeoutDet();
  4210. StopGunInfoTimeoutDet(gunIndex);
  4211. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4212. }
  4213. break;
  4214. case S_UPDATE:
  4215. if (isModeChange(gunIndex)) {
  4216. log_info("============================= S_UPDATE ============================= ");
  4217. }
  4218. if (pSysInfo->FirmwareUpdate == YES) {
  4219. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4220. continue;
  4221. } else {
  4222. }
  4223. break;
  4224. }//switch
  4225. }//for
  4226. //if (pSysInfo->SystemPage != _LCM_VIEW)
  4227. //ChangeLcmByIndex(pSysInfo->SystemPage);
  4228. TryFeedWatchdog();
  4229. usleep(WHILE_LOOP_TIME);
  4230. }
  4231. return FAIL;
  4232. }