main.c 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824
  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.09.00.0000.00"; // Phihong version
  73. char* DebugVersion = "v2.09.02"; // 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. pSysInfo->SystemPage = _PAGE_EXIT;
  2419. StartGunInfoTimeoutDet(gunIndex, Timeout_PlugOutGun);
  2420. }
  2421. break;
  2422. /*
  2423. case Timeout_SelectGun: //Jerry add
  2424. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= SEL_GUN_TIMEOUT) {
  2425. log_info("Timeout_SelectGun");
  2426. StopGunInfoTimeoutDet(gunIndex);
  2427. destroySelGun(gunIndex); //jerry add
  2428. }
  2429. break;
  2430. */
  2431. /*
  2432. case Timeout_DetailView:
  2433. if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= DETAILVIEW_TIMEOUT) {
  2434. StopGunInfoTimeoutDet(gunIndex);
  2435. pSysInfo->SystemPage = _LCM_VIEW;
  2436. }
  2437. break;*/
  2438. }
  2439. }
  2440. sleep(1);
  2441. }
  2442. }
  2443. }
  2444. void CheckFactoryConfigFunction(void)
  2445. {
  2446. char Buf[256] = {0};
  2447. if (pSysInfo->FactoryConfiguration) {
  2448. sprintf(Buf, "cd /root;./FactoryConfig -m %s %s",
  2449. pSysConfig->ModelName,
  2450. pSysConfig->SerialNumber);
  2451. system(Buf);
  2452. system("rm -f /Storage/OCPP/OCPPConfiguration");
  2453. system("sync");
  2454. sleep(5);
  2455. system("reboot -f");
  2456. sleep(5);
  2457. system("reboot -f");
  2458. }
  2459. }
  2460. //===============================================
  2461. // Check reservation date is expired
  2462. //===============================================
  2463. int isReservationExpired(uint8_t gunIndex)
  2464. {
  2465. int result = NO;
  2466. struct tm expiredDate;
  2467. struct timeb expiredTime;
  2468. if (sscanf((char *) ShmOCPP16Data->ReserveNow[gunIndex].ExpiryDate,
  2469. "%4d-%2d-%2dT%2d:%2d:%2d", &expiredDate.tm_year,
  2470. &expiredDate.tm_mon, &expiredDate.tm_mday, &expiredDate.tm_hour,
  2471. &expiredDate.tm_min, &expiredDate.tm_sec) == 6) {
  2472. expiredDate.tm_year -= 1900;
  2473. expiredDate.tm_mon -= 1;
  2474. expiredTime.time = mktime(&expiredDate);
  2475. if (!CheckTimeOut(expiredTime)) {
  2476. result = YES;
  2477. }
  2478. }
  2479. return result;
  2480. }
  2481. //===============================================
  2482. // OCPP
  2483. //===============================================
  2484. void CheckOcppStatus(void)
  2485. {
  2486. bool canReset = true;
  2487. //bool canHardReset = true; //DS60-120 add
  2488. if (ShmOCPP16Data->SpMsg.bits.BootNotificationConf == YES) {
  2489. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = NO;
  2490. }
  2491. if (ShmOCPP16Data->MsMsg.bits.ResetReq == YES) {
  2492. if (pSysWarning->Level != WARN_LV_ER) {
  2493. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  2494. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2495. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2496. pDcChargingInfo->SystemStatus != S_RESERVATION &&
  2497. pDcChargingInfo->SystemStatus != S_MAINTAIN) {
  2498. canReset = false;
  2499. if (pDcChargingInfo->SystemStatus >= S_REASSIGN &&
  2500. pDcChargingInfo->SystemStatus < S_TERMINATING) {
  2501. //canHardReset = false;
  2502. ChargingTerminalProcess(_index);
  2503. //restartFlag = 1;
  2504. }
  2505. }
  2506. }
  2507. }
  2508. if (canReset) {
  2509. ShmOCPP16Data->MsMsg.bits.ResetReq = NO;
  2510. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "Accepted");
  2511. if (strcmp((char *)ShmOCPP16Data->Reset.Type, "Hard") == EQUAL) {
  2512. log_error("****** Hard Reboot ****** ");
  2513. ShmOCPP16Data->MsMsg.bits.ResetConf = YES;
  2514. sleep(3);
  2515. system("reboot -f");
  2516. } else if (strcmp((char *)ShmOCPP16Data->Reset.Type, "Soft") == EQUAL) {
  2517. log_error("****** Soft Reboot ****** ");
  2518. ShmOCPP16Data->MsMsg.bits.ResetConf = YES;
  2519. sleep(3);
  2520. system("killall OcppBackend &");
  2521. KillAllTask();
  2522. TryCloseWatchdog();
  2523. system("/usr/bin/run_evse_restart.sh");
  2524. }
  2525. }
  2526. }
  2527. }
  2528. void OcppStopTransation(uint8_t gunIndex)
  2529. {
  2530. uint8_t _OcppGunIndex = gunIndex;
  2531. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2532. // 如果有 AC 槍,而現在是 DC 第二把槍進入充電
  2533. if (pSysConfig->AcConnectorCount == 1 && gunIndex == 1) {
  2534. _OcppGunIndex = 2;
  2535. }
  2536. if (strcmp((char *)pDcChargingInfo->StartUserId, "") == EQUAL) {
  2537. strcpy((char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag, (char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag);
  2538. } else {
  2539. strcpy((char *)ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag, (char *)pDcChargingInfo->StartUserId);
  2540. }
  2541. log_info("IdTag = %s ", ShmOCPP16Data->StopTransaction[_OcppGunIndex].IdTag);
  2542. ShmOCPP16Data->CpMsg.bits[_OcppGunIndex].StopTransactionReq = YES;
  2543. }
  2544. bool OcppRemoteStop(uint8_t gunIndex)
  2545. {
  2546. uint8_t acDirIndex = pSysConfig->AcConnectorCount;
  2547. // 有 AC 槍的話
  2548. if (acDirIndex > 0 && gunIndex > 0) {
  2549. gunIndex += acDirIndex;
  2550. }
  2551. bool result = ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq;
  2552. if (ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq == YES) {
  2553. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Remote");
  2554. ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq = NO;
  2555. }
  2556. return result;
  2557. }
  2558. bool WifiScheduleStop(uint8_t gunIndex)
  2559. {
  2560. bool result = false;
  2561. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2562. result = pDcChargingInfo->schedule.isTriggerStop;
  2563. pDcChargingInfo->schedule.isTriggerStop = NO;
  2564. return result;
  2565. }
  2566. void OcppRemoteStartChk()
  2567. {
  2568. if (pSysConfig->OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING) {
  2569. } else if (!isDetectPlugin()) {
  2570. // 如果有 AC 槍,則固定是第 2 把槍,所以索引固定為 1
  2571. uint8_t acDirIndex = pSysConfig->AcConnectorCount;
  2572. for (uint8_t ac_index = 0; ac_index < pSysConfig->AcConnectorCount; ac_index++) {
  2573. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(ac_index);
  2574. if (ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq == YES) {
  2575. if (pAcChargingInfo->SystemStatus == S_IDLE ||
  2576. pAcChargingInfo->SystemStatus == S_RESERVATION) {
  2577. ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq = NO;
  2578. pAcChargingInfo->RemoteStartFlag = YES;
  2579. pSysInfo->OrderCharging = YES;
  2580. //pSysInfo->OrderCharging = DEFAULT_AC_INDEX;
  2581. ShmOCPP16Data->CsMsg.bits[pSysConfig->TotalConnectorCount + ac_index].RemoteStartTransactionReq = NO;
  2582. DetectPluginStart();
  2583. return;
  2584. }
  2585. ShmOCPP16Data->CsMsg.bits[acDirIndex].RemoteStartTransactionReq = NO;
  2586. }
  2587. }
  2588. uint8_t threeGunIndex = 0;
  2589. uint8_t dcIndex = 0;
  2590. bool isGunUsingStatus = false;
  2591. bool _remotestarting = false;
  2592. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  2593. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2594. // 如果有 AC 槍,且 DC 槍也有兩把
  2595. if (acDirIndex == 1 && _index == 1) {
  2596. threeGunIndex = 1;
  2597. }
  2598. if (ShmOCPP16Data->CsMsg.bits[_index + threeGunIndex].RemoteStartTransactionReq == YES) {
  2599. dcIndex = _index;
  2600. }
  2601. if (pDcChargingInfo->SystemStatus != S_IDLE) {
  2602. isGunUsingStatus = true;
  2603. }
  2604. if (pDcChargingInfo->RemoteStartFlag == YES) {
  2605. //_remotestarting = true;
  2606. }
  2607. }
  2608. // 如果是雙槍單模,只認閒置狀態的槍,如果有預約~ 則預約也算被使用
  2609. if (isGunUsingStatus && pSysInfo->IsAlternatvieConf) {
  2610. if (dcIndex == 0) {
  2611. threeGunIndex = 0;
  2612. }
  2613. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2614. return;
  2615. }
  2616. if (dcIndex == 0) {
  2617. threeGunIndex = 0;
  2618. }
  2619. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(dcIndex);
  2620. if (ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq == YES &&
  2621. !_remotestarting ) {
  2622. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2623. pDcChargingInfo->SystemStatus == S_AUTHORIZING ||
  2624. pDcChargingInfo->SystemStatus == S_RESERVATION) {
  2625. pDcChargingInfo->RemoteStartFlag = YES;
  2626. ShmDcCommonData->is_RemoteStart[dcIndex] = TRUE;
  2627. pSysInfo->OrderCharging = YES;
  2628. //pDcChargingInfo->SystemStatus = S_AUTHORIZING;
  2629. //pSysInfo->OrderCharging = gunIndex;
  2630. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2631. DetectPluginStart();
  2632. setSelGunWaitToAuthor(dcIndex);
  2633. log_info("Ocpp Remote Start Pass");
  2634. }
  2635. ShmOCPP16Data->CsMsg.bits[dcIndex + threeGunIndex].RemoteStartTransactionReq = NO;
  2636. }
  2637. }
  2638. }
  2639. void ChkOcppStatus(uint8_t gunIndex)
  2640. {
  2641. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2642. if (pDcChargingInfo->SystemStatus == S_IDLE &&
  2643. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq == YES) {
  2644. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowReq = NO;
  2645. if (isReservationExpired(gunIndex)) {
  2646. log_error("***************ChkOcppStatus : OcppReservedStatus******************** ");
  2647. pDcChargingInfo->ReservationId = ShmOCPP16Data->ReserveNow[gunIndex].ReservationId;
  2648. pDcChargingInfo->SystemStatus = S_RESERVATION;
  2649. }
  2650. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowConf = YES;
  2651. }
  2652. if (pDcChargingInfo->SystemStatus == S_RESERVATION &&
  2653. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq == YES) {
  2654. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationReq = NO;
  2655. if (isReservationExpired(gunIndex)) {
  2656. log_error("***************ChkOcppStatus : Cancel OcppReservedStatus******************** ");
  2657. pDcChargingInfo->ReservationId = 0;
  2658. pDcChargingInfo->SystemStatus = S_IDLE;
  2659. }
  2660. ShmOCPP16Data->CsMsg.bits[gunIndex].CancelReservationConf = YES;
  2661. }
  2662. if (ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq == YES) {
  2663. log_error("***************ChkOcppStatus : OcppChangeAvailability******************** ");
  2664. ShmOCPP16Data->CsMsg.bits[gunIndex].ChangeAvailabilityReq = NO;
  2665. if (strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Operative") == EQUAL) {
  2666. if (isDb_ready) {
  2667. DB_Update_Operactive(gunIndex, true);
  2668. }
  2669. pDcChargingInfo->IsAvailable = YES;
  2670. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2671. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  2672. pDcChargingInfo->SystemStatus == S_MAINTAIN) {
  2673. setChargerMode(gunIndex, MODE_IDLE);
  2674. }
  2675. } else if (strcmp((char *)ShmOCPP16Data->ChangeAvailability[gunIndex].Type, "Inoperative") == EQUAL) {
  2676. if (isDb_ready) {
  2677. DB_Update_Operactive(gunIndex, false);
  2678. }
  2679. pDcChargingInfo->IsAvailable = NO;
  2680. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2681. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  2682. pDcChargingInfo->SystemStatus == S_MAINTAIN) {
  2683. setChargerMode(gunIndex, MODE_MAINTAIN);
  2684. }
  2685. }
  2686. }
  2687. if (ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorReq == YES) {
  2688. ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorReq = NO;
  2689. if (pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK && // DS60-120 add ||
  2690. pDcChargingInfo->SystemStatus <= S_CHARGING) {
  2691. // 充電中,需停止充電
  2692. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "UnlockCommand");
  2693. ChargingTerminalProcess(gunIndex);
  2694. }
  2695. strcpy((char *)ShmOCPP16Data->UnlockConnector[gunIndex].ResponseStatus, "Unlocked");
  2696. ShmOCPP16Data->CsMsg.bits[gunIndex].UnlockConnectorConf = YES;
  2697. }
  2698. }
  2699. bool CheckBackendChargingTimeout(uint8_t gunIndex)
  2700. {
  2701. bool result = false;
  2702. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2703. if (pSysConfig->AuthorisationMode == AUTH_MODE_ENABLE) {
  2704. if (pSysConfig->MaxChargingDuration > 0) {
  2705. if (pDcChargingInfo->PresentChargedDuration > (pSysConfig->MaxChargingDuration * 60)) {
  2706. result = true;
  2707. }
  2708. }
  2709. }
  2710. return result;
  2711. }
  2712. bool CheckBackendChargingEnergy(uint8_t gunIndex)
  2713. {
  2714. bool result = false;
  2715. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2716. if (pSysConfig->AuthorisationMode == AUTH_MODE_ENABLE) {
  2717. if (pSysConfig->MaxChargingEnergy > 0) {
  2718. if (pDcChargingInfo->PresentChargedEnergy > pSysConfig->MaxChargingEnergy) {
  2719. result = true;
  2720. }
  2721. }
  2722. }
  2723. return result;
  2724. }
  2725. void InformOcppErrOccur(uint8_t codeType)
  2726. {
  2727. char _error[25];
  2728. switch (codeType) {
  2729. case 4:
  2730. strcpy(_error, "InternalError");
  2731. break;
  2732. case 6:
  2733. strcpy(_error, "NoError");
  2734. break;
  2735. case 7:
  2736. strcpy(_error, "OtherError");
  2737. break;
  2738. case 13:
  2739. strcpy(_error, "UnderVoltage");
  2740. break;
  2741. case 14:
  2742. strcpy(_error, "OverVoltage");
  2743. break;
  2744. }
  2745. for (uint8_t gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  2746. strcpy((char *)ShmOCPP16Data->StatusNotification[gunIndex].ErrorCode, _error);
  2747. }
  2748. }
  2749. //===============================================
  2750. // Config process
  2751. //===============================================
  2752. /*
  2753. void AddPlugInTimes(uint8_t gunIndex)
  2754. {
  2755. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2756. if (pDcChargingInfo->Type == _Type_Chademo) {
  2757. pSysConfig->ChademoPlugInTimes += 1;
  2758. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  2759. pSysConfig->Ccs2PlugInTimes += 1;
  2760. } else if (pDcChargingInfo->Type == _Type_GB) {
  2761. pSysConfig->GbPlugInTimes += 1;
  2762. }
  2763. }*/
  2764. void ChangeStartOrStopDateTime(uint8_t isStart, uint8_t gunIndex)
  2765. {
  2766. char cmdBuf[32];
  2767. struct timeb csuTime;
  2768. struct tm *tmCSU;
  2769. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2770. ftime(&csuTime);
  2771. tmCSU = localtime(&csuTime.time);
  2772. sprintf(cmdBuf, "%04d-%02d-%02d %02d:%02d:%02d", tmCSU->tm_year + 1900,
  2773. tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  2774. tmCSU->tm_sec);
  2775. if (isStart) {
  2776. strcpy((char *)pDcChargingInfo->StartDateTime, cmdBuf);
  2777. } else {
  2778. strcpy((char *)pDcChargingInfo->StopDateTime, cmdBuf);
  2779. }
  2780. }
  2781. void ChangeGunSelectByIndex(uint8_t sel)
  2782. {
  2783. pSysInfo->CurGunSelected = sel;
  2784. pSysInfo->CurGunSelectedByAc = NO_DEFINE;
  2785. }
  2786. void CheckIsAlternatvieByModelName()
  2787. {
  2788. if (pSysConfig->ModelName[1] == 'W') { //DS60-120
  2789. // 壁掛
  2790. pSysInfo->IsAlternatvieConf = YES;
  2791. } else {
  2792. pSysInfo->IsAlternatvieConf = NO;
  2793. }
  2794. }
  2795. void StopProcessingLoop()
  2796. {
  2797. for (;;) {
  2798. CheckFactoryConfigFunction();
  2799. //CheckFwUpdateFunction();
  2800. if (pSysWarning->Level == WARN_LV_ER) {
  2801. ChkPrimaryStatus();
  2802. if (pSysWarning->Level == WARN_LV_NL) {
  2803. log_info("Soft reboot for retry self-tets (Primary). ");
  2804. KillAllTask();
  2805. sleep(3);
  2806. TryCloseWatchdog();
  2807. system("/usr/bin/run_evse_restart.sh");
  2808. return;
  2809. }
  2810. }
  2811. sleep(1);
  2812. TryFeedWatchdog();
  2813. }
  2814. }
  2815. bool IsConnectorWholeIdle()
  2816. {
  2817. bool result = true;
  2818. for (uint8_t count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  2819. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  2820. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2821. pDcChargingInfo->SystemStatus != S_RESERVATION) {
  2822. result = false;
  2823. break;
  2824. }
  2825. }
  2826. for (uint8_t count = 0; count < pSysConfig->AcConnectorCount; count++) {
  2827. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(count);
  2828. if (pAcChargingInfo->SystemStatus != S_IDLE &&
  2829. pAcChargingInfo->IsErrorOccur == NO) {
  2830. result = false;
  2831. break;
  2832. }
  2833. }
  2834. return result;
  2835. }
  2836. void ClearAlarmCodeWhenAcOff()
  2837. {
  2838. if (!pSysInfo->AcContactorStatus) {
  2839. pAlarmCode->AlarmEvents.bits.PsuNoResource = NO;
  2840. }
  2841. }
  2842. //==========================================
  2843. // Check Smart Charging Profile
  2844. //==========================================
  2845. int GetStartScheduleTime(uint8_t *time)
  2846. {
  2847. int result = -1;
  2848. struct tm tmScheduleStart;
  2849. struct timeb tbScheduleStart;
  2850. 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)) {
  2851. tmScheduleStart.tm_year -= 1900;
  2852. tmScheduleStart.tm_mon -= 1;
  2853. tbScheduleStart.time = mktime(&tmScheduleStart);
  2854. tbScheduleStart.millitm = 0;
  2855. result = DiffTimebWithNow(tbScheduleStart) / 1000;
  2856. }
  2857. return result;
  2858. }
  2859. void CheckSmartChargeProfile(uint8_t _index)
  2860. {
  2861. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  2862. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf == YES) {
  2863. // Get Charging Profile
  2864. ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf = NO;
  2865. if (strcmp((char *)ShmOCPP16Data->SmartChargingProfile[_index].ChargingProfileKind, "Absolute") == EQUAL &&
  2866. ShmOCPP16Data->SmartChargingProfile[_index].ChargingProfileId == YES //DS60-120 add
  2867. ) {
  2868. int _time = GetStartScheduleTime(ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.StartSchedule);
  2869. uint8_t _startCount = NO_DEFINE;
  2870. uint8_t _maxCount = ARRAY_SIZE(ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod);
  2871. for (uint8_t _count = 0; _count < _maxCount; _count++) {
  2872. // 預設最小輸出電流 (MIN_OUTPUT_CUR) A
  2873. if (_time >= ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].StartPeriod) {
  2874. if ((_count == 0 && ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].Limit >= MIN_OUTPUT_CUR) ||
  2875. ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_count].Limit > MIN_OUTPUT_CUR) {
  2876. _startCount = _count;
  2877. }
  2878. }
  2879. }
  2880. log_info("_startCount = %d ", _startCount);
  2881. if (_startCount < _maxCount) {
  2882. //DS60-120 add
  2883. log_info("Profile Limit = %f ", ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_startCount].Limit);
  2884. pDcChargingInfo->ChargingProfilePower = ShmOCPP16Data->SmartChargingProfile[_index].ChargingSchedule.ChargingSchedulePeriod[_startCount].Limit * AC_OUTPUT_VOL;
  2885. if (pDcChargingInfo->EvBatterytargetVoltage > 0 && pDcChargingInfo->PresentChargingVoltage > 0) {
  2886. pDcChargingInfo->ChargingProfileCurrent = (pDcChargingInfo->ChargingProfilePower / pDcChargingInfo->PresentChargingVoltage) * 10;
  2887. } else {
  2888. pDcChargingInfo->ChargingProfileCurrent = 0;
  2889. }
  2890. } else {
  2891. pDcChargingInfo->ChargingProfilePower = -1;
  2892. pDcChargingInfo->ChargingProfileCurrent = -1;
  2893. }
  2894. } else {
  2895. pDcChargingInfo->ChargingProfilePower = -1;
  2896. pDcChargingInfo->ChargingProfileCurrent = -1;
  2897. }
  2898. log_info("ChargingProfilePower = %f ", pDcChargingInfo->ChargingProfilePower);
  2899. log_info("ChargingProfileCurrent = %f ", pDcChargingInfo->ChargingProfileCurrent);
  2900. }
  2901. }
  2902. void ChargingProfileFlat(uint8_t _index)
  2903. {
  2904. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileConf == NO) {
  2905. if (ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileReq == NO) {
  2906. ShmOCPP16Data->CSUMsg.bits[_index].ChargingProfileReq = YES;
  2907. }
  2908. }
  2909. }
  2910. /*
  2911. void CheckReturnToChargingConn()
  2912. {
  2913. if ((pSysConfig->TotalConnectorCount + pSysConfig->AcConnectorCount) > 1 &&
  2914. pSysInfo->PageIndex != _LCM_START_AUTHORIZING &&
  2915. pSysInfo->PageIndex != _LCM_START_AUTHORIZE_FAIL &&
  2916. pSysInfo->PageIndex != _LCM_WAIT_PLUGIN) {
  2917. bool isReturnTimeout = false;
  2918. for (uint8_t count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  2919. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  2920. // 如果選的 DC 槍在充電~ 則 DC 槍不改變
  2921. if (count == pSysInfo->CurGunSelected) {
  2922. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2923. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2924. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2925. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  2926. ) {
  2927. isReturnTimeout = false;
  2928. break;
  2929. }
  2930. } else if (count != pSysInfo->CurGunSelected) {
  2931. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2932. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2933. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2934. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  2935. ) {
  2936. isReturnTimeout = true;
  2937. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2938. }
  2939. }
  2940. }
  2941. // AC 槍
  2942. if (!isReturnTimeout && pSysConfig->AcConnectorCount > 0) {
  2943. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  2944. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  2945. // 沒有選中 AC,且 AC 在充電中
  2946. if (pSysInfo->CurGunSelectedByAc == NO_DEFINE &&
  2947. (pAcChargingInfo->SystemStatus >= S_PREPARNING &&
  2948. pAcChargingInfo->SystemStatus <= S_COMPLETE)) {
  2949. // 當前 DC 充電槍在 idle 狀態
  2950. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  2951. pDcChargingInfo->SystemStatus == S_RESERVATION) {
  2952. isReturnTimeout = true;
  2953. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2954. }
  2955. } else if (pSysInfo->CurGunSelectedByAc == DEFAULT_AC_INDEX &&
  2956. ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  2957. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  2958. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  2959. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1))) {
  2960. // 當前 DC 充電槍在 idle 狀態
  2961. if (pAcChargingInfo->SystemStatus == S_IDLE ||
  2962. pAcChargingInfo->SystemStatus == S_RESERVATION) {
  2963. isReturnTimeout = true;
  2964. StartSystemTimeoutDet(Timeout_ReturnToChargingGunDet);
  2965. }
  2966. }
  2967. }
  2968. if (!isReturnTimeout) {
  2969. StopSystemTimeoutDet();
  2970. }
  2971. }
  2972. }
  2973. bool GetStartChargingByAlterMode(uint8_t _gun)
  2974. {
  2975. bool result = true;
  2976. if (pSysConfig->TotalConnectorCount == 2 &&
  2977. pSysInfo->IsAlternatvieConf == YES) {
  2978. for (uint8_t _select = 0; _select < pSysConfig->TotalConnectorCount; _select++) {
  2979. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_select);
  2980. if (_select != _gun) {
  2981. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2982. pDcChargingInfo->SystemStatus != S_RESERVATION) {
  2983. result = false;
  2984. break;
  2985. }
  2986. }
  2987. }
  2988. }
  2989. return result;
  2990. }
  2991. */
  2992. void TheEndCharging(uint8_t gunIndex)
  2993. {
  2994. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  2995. ftime(&endChargingTime[gunIndex]);
  2996. if (pDcChargingInfo->PresentChargedDuration != 0) {
  2997. pDcChargingInfo->PresentChargedDuration = DiffTimeb(startChargingTime[gunIndex], endChargingTime[gunIndex]);
  2998. }
  2999. pDcChargingInfo->isRemoteStart = NO;
  3000. if (pDcChargingInfo->TimeoutFlag != Timeout_FinalCost)
  3001. StopGunInfoTimeoutDet(gunIndex);
  3002. //StartGunInfoTimeoutDet(gunIndex, Timeout_EvseCompleteDet);
  3003. ChangeStartOrStopDateTime(NO, gunIndex);
  3004. DB_Insert_Record(gunIndex);
  3005. }
  3006. void UpdateErrorCodeToOcpp(uint8_t index)
  3007. {
  3008. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  3009. //log_info("%d = ConnectorAlarmCode = %s", index, pDcChargingInfo->ConnectorAlarmCode);
  3010. //log_info("%d = EvConnAlarmCode = %s", index, pDcChargingInfo->EvConnAlarmCode);
  3011. if (strcmp((char *)pDcChargingInfo->ConnectorAlarmCode, "") != EQUAL) {
  3012. //if (strlen((char *)pDcChargingInfo->ConnectorAlarmCode) == EQUAL) {
  3013. strcpy((char *)ShmOCPP16Data->StatusNotification[index].ErrorCode, "InternalError");
  3014. strcpy((char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode, (char *)pDcChargingInfo->ConnectorAlarmCode);
  3015. } else if (strcmp((char *)pDcChargingInfo->EvConnAlarmCode, "") != EQUAL) {
  3016. //} else if (strlen((char *)pDcChargingInfo->EvConnAlarmCode) == EQUAL) {
  3017. strcpy((char *)ShmOCPP16Data->StatusNotification[index].ErrorCode, "OtherError");
  3018. strcpy((char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode, (char *)pDcChargingInfo->EvConnAlarmCode);
  3019. }
  3020. //log_info("Gun %d = VendorErrorCode = %s", index, (char *)ShmOCPP16Data->StatusNotification[index].VendorErrorCode);
  3021. }
  3022. void AdjustChargerCurrent()
  3023. {
  3024. pSysConfig->RatingCurrent = ShmPsuData->SystemAvailableCurrent / 10;
  3025. // 設定的電流~ 如超過可輸出的電流,則 bypass
  3026. if (pSysConfig->RatingCurrent < pSysConfig->MaxChargingCurrent ||
  3027. pSysConfig->RatingCurrent == 0) {
  3028. pSysConfig->MaxChargingCurrent = 0;
  3029. }
  3030. log_info("PSU : MaxChargingPower = %d, MaxChargingCurrent = %d",
  3031. ShmPsuData->SystemAvailablePower / 10,
  3032. ShmPsuData->SystemAvailableCurrent / 10
  3033. );
  3034. log_info("Config : ChargingPower = %d, ChargingCurrent = %d",
  3035. pSysConfig->MaxChargingPower,
  3036. pSysConfig->MaxChargingCurrent
  3037. );
  3038. }
  3039. void ResetDetAlarmStatus(uint8_t gun)
  3040. {
  3041. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gun);
  3042. if (pDcChargingInfo->Type == _Type_Chademo) {
  3043. if (pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP == YES) {
  3044. pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = NO;
  3045. }
  3046. } else if (pDcChargingInfo->Type == _Type_GB) {
  3047. if (pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP == YES) {
  3048. pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = NO;
  3049. }
  3050. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3051. if (pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP == YES) {
  3052. pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = NO;
  3053. }
  3054. }
  3055. }
  3056. static void autoStartCharging(uint8_t gunIndex)
  3057. {
  3058. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3059. if ( (pSysInfo->SystemPage >= _PAGE_AUTHORIZE && pSysInfo->SystemPage <= _PAGE_SENSING) ||
  3060. (pDcChargingInfo->isEVCCIDVerify && strcmp( (char *)pSysConfig->UserId , "" ) != EQUAL)) {
  3061. return;
  3062. }
  3063. if ((pDcChargingInfo->ConnectorPlugIn == YES) &&
  3064. (pDcChargingInfo->SystemStatus == S_IDLE )
  3065. ) {
  3066. if(!pSysConfig->AuthorisationMode) {
  3067. /*
  3068. if (pSysConfig->isAuthrizeByEVCCID && !pDcChargingInfo->isEVCCIDVerify &&
  3069. pDcChargingInfo->Type == _Type_CCS_2) {
  3070. // LCM show linking pic. & timeout 2 min
  3071. if( pSysInfo->CurGunSelected == gunIndex ) {
  3072. systemPageRestoreInit();
  3073. pSysInfo->SystemPage = _LCM_PRECHARGE;
  3074. }
  3075. StartGunInfoTimeoutDet(gunIndex,Timeout_EVCCID_Link);
  3076. // Getting EVCCID
  3077. if( strcmp( (char *)pDcChargingInfo->EVCCID, "" ) != EQUAL ) {
  3078. log_info("Authorizing EVCCID");
  3079. StopSystemTimeoutDet();
  3080. strcpy((char *)pSysConfig->UserId, (char *)pDcChargingInfo->EVCCID);
  3081. ChangeGunSelectByIndex(gunIndex);
  3082. confirmSelGun(gunIndex);
  3083. pDcChargingInfo->isEVCCIDVerify = true;
  3084. pSysInfo->SystemPage = _LCM_START_AUTHORIZING;
  3085. log_info("Get User(%d) ID:%s",gunIndex,pSysConfig->UserId);
  3086. setChargerMode(gunIndex, MODE_AUTHORIZING);
  3087. }
  3088. } else
  3089. return;
  3090. */
  3091. } else {
  3092. strcpy((char *)&pSysConfig->UserId, "AutoStartCharging");
  3093. ChangeGunSelectByIndex(gunIndex);
  3094. confirmSelGun(gunIndex);
  3095. ShmDcCommonData->is_AutoStart[gunIndex] = TRUE;
  3096. pSysInfo->SystemPage = _PAGE_SENSING;
  3097. ShmDcCommonData->AuthPass_flag[gunIndex] = TRUE;
  3098. //setChargerMode(gunIndex, MODE_AUTHORIZING);
  3099. log_info("Get User(%d) ID:%s",gunIndex,pSysConfig->UserId);
  3100. }
  3101. }
  3102. }
  3103. static bool PrecheckIsPass(uint8_t gunIndex)
  3104. {
  3105. bool result = true;
  3106. // relay welding or driving 是反向
  3107. result = !ShmDcCommonData->GunRelayWeldingOccur[gunIndex];
  3108. return result;
  3109. }
  3110. static void ReviewCriticalAlarm(void)
  3111. {
  3112. if (
  3113. pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == YES ||
  3114. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip == YES ||
  3115. pAlarmCode->AlarmEvents.bits.DoorOpen == YES ||
  3116. pSysWarning->ExtraErrProcess != _EXTRA_ERR_PROCESS_NONE ||
  3117. pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == YES ||
  3118. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo == YES ||
  3119. //Power cabinet alarm status
  3120. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop == YES ||
  3121. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen == YES ||
  3122. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP == YES ||
  3123. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP == YES ||
  3124. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP == YES ||
  3125. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP == YES ||
  3126. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP == YES ||
  3127. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure == YES ||
  3128. ShmSelectGunInfo->EthDevStatus.Backend == 0 ||
  3129. ShmSelectGunInfo->EthDevStatus.Backend == 2
  3130. ) {
  3131. if ((ShmSelectGunInfo->EthDevStatus.Backend == 0 ||
  3132. ShmSelectGunInfo->EthDevStatus.Backend == 2) &&
  3133. ShmDcCommonData->DebugFlag == TRUE) {
  3134. pSysWarning->Level = WARN_LV_NL;
  3135. return;
  3136. }
  3137. pSysWarning->Level = WARN_LV_ER;
  3138. } else {
  3139. pSysWarning->Level = WARN_LV_NL;
  3140. }
  3141. }
  3142. static void CheckRelayWeldingOrDrivingFault(uint8_t gunIndex)
  3143. {
  3144. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3145. // relay welding fault then stop the charging process.
  3146. uint8_t faultCode = RELAY_STATUS_ERROR_NONE;
  3147. //static uint8_t drivingCount = 0;
  3148. if (gunIndex == 0) {
  3149. if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3150. ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3151. faultCode = RELAY_STATUS_ERROR_WELDING;
  3152. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3153. ShmDcCommonData->CheckRelayStatus[RELAY_SMR1_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3154. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3155. }
  3156. } else if (gunIndex == 1) {
  3157. if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3158. ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3159. faultCode = RELAY_STATUS_ERROR_WELDING;
  3160. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3161. ShmDcCommonData->CheckRelayStatus[RELAY_SMR2_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3162. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3163. }
  3164. }
  3165. if (pSysConfig->TotalConnectorCount >= 2 &&
  3166. !pSysInfo->IsAlternatvieConf) {
  3167. // 橋接
  3168. if (ShmDcCommonData->CheckRelayStatus[RELAY_PARA_P_STATUS] == RELAY_STATUS_ERROR_WELDING ||
  3169. ShmDcCommonData->CheckRelayStatus[RELAY_PARA_N_STATUS] == RELAY_STATUS_ERROR_WELDING) {
  3170. faultCode = RELAY_STATUS_ERROR_WELDING;
  3171. } else if (ShmDcCommonData->CheckRelayStatus[RELAY_PARA_P_STATUS] == RELAY_STATUS_ERROR_DRIVING ||
  3172. ShmDcCommonData->CheckRelayStatus[RELAY_PARA_N_STATUS] == RELAY_STATUS_ERROR_DRIVING) {
  3173. faultCode = RELAY_STATUS_ERROR_DRIVING;
  3174. }
  3175. }
  3176. if (faultCode == RELAY_STATUS_ERROR_WELDING) {
  3177. // welding
  3178. if (pDcChargingInfo->Type == _Type_Chademo) {
  3179. RecordAlarmCode(gunIndex, "011011");
  3180. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayWeldingFault = YES;
  3181. } else if (pDcChargingInfo->Type == _Type_GB) {
  3182. RecordAlarmCode(gunIndex, "011015");
  3183. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayWeldingFault = YES;
  3184. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3185. RecordAlarmCode(gunIndex, "011013");
  3186. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayWeldingFault = YES;
  3187. }
  3188. ShmDcCommonData->GunRelayWeldingOccur[gunIndex] = YES;
  3189. //EmcOccureByString("");
  3190. } else if (faultCode == RELAY_STATUS_ERROR_DRIVING) {
  3191. //if (drivingCount++ != 2) {
  3192. // return;
  3193. //}
  3194. // driving
  3195. if (pDcChargingInfo->Type == _Type_Chademo) {
  3196. RecordAlarmCode(gunIndex, "011012");
  3197. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaRelayDrivingFault = YES;
  3198. } else if (pDcChargingInfo->Type == _Type_GB) {
  3199. RecordAlarmCode(gunIndex, "011016");
  3200. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTRelayDrivingFault = YES;
  3201. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3202. RecordAlarmCode(gunIndex, "011014");
  3203. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSRelayDrivingFault = YES;
  3204. }
  3205. ShmDcCommonData->GunRelayDrivingOccur[gunIndex] = YES;
  3206. //EmcOccureByString("");
  3207. } else {
  3208. ShmDcCommonData->GunRelayWeldingOccur[gunIndex] = NO;
  3209. ShmDcCommonData->GunRelayDrivingOccur[gunIndex] = NO;
  3210. //drivingCount = 0;
  3211. }
  3212. }
  3213. static void isChargingAverageState(void)
  3214. {
  3215. if (pSysInfo->MainChargingMode != _MAIN_CHARGING_MODE_AVER) {
  3216. pSysInfo->ReAssignedFlag = _REASSIGNED_NONE;
  3217. return;
  3218. }
  3219. // 均充 -> 最大充
  3220. if (pSysInfo->BridgeRelayStatus == NO) {
  3221. if (pSysInfo->ReAssignedFlag == _REASSIGNED_NONE) {
  3222. log_info("=============Smart Charging============= Step 11 ");
  3223. pSysInfo->ReAssignedFlag = _REASSIGNED_PREPARE_A_TO_M;
  3224. }
  3225. } else if (pSysInfo->ReAssignedFlag != _REASSIGNED_COMP &&
  3226. pSysInfo->ReAssignedFlag != _REASSIGNED_WAITING) {
  3227. log_info("=============Smart Charging============= Step 14 ");
  3228. pSysInfo->ReAssignedFlag = _REASSIGNED_WAITING;
  3229. } else if (pSysInfo->ReAssignedFlag == _REASSIGNED_COMP) {
  3230. pSysInfo->MainChargingMode = _MAIN_CHARGING_MODE_MAX;
  3231. pSysInfo->ReAssignedFlag = _REASSIGNED_NONE;
  3232. }
  3233. }
  3234. bool Taskconutstring(char *src, char *taskname)
  3235. {
  3236. bool result = false;
  3237. if (src == NULL || strlen(src) == 0)
  3238. return result;
  3239. if (strstr(src, taskname) != NULL &&
  3240. strstr(src, "grep") == NULL &&
  3241. strstr(src, "[") == NULL)
  3242. {
  3243. result = true;
  3244. }
  3245. return result;
  3246. }
  3247. int GetProcessCount(char *procName)
  3248. {
  3249. int result = 0;
  3250. FILE *fp;
  3251. char cmd[256];
  3252. char buf[256];
  3253. sprintf(cmd, "ps -ef |grep %s", procName);
  3254. fp = popen(cmd, "r");
  3255. if(fp != NULL)
  3256. {
  3257. while(fgets(buf, sizeof(buf), fp) != NULL)
  3258. {
  3259. if (Taskconutstring(buf, procName))
  3260. result++;
  3261. }
  3262. }
  3263. pclose(fp);
  3264. return result;
  3265. }
  3266. void CheckTaskAlive()
  3267. {
  3268. pid_t Pid = fork();
  3269. if ( Pid == 0 ) {
  3270. //log_info("CheckTaskAlive fork Child's PID is %d", getpid());
  3271. while(1) {
  3272. sleep(3);
  3273. unsigned char count = GetProcessCount("Module_ChkSysTask");
  3274. if( count != 1 ) {
  3275. system("pkill Module_ChkSysTask");
  3276. sleep(10);
  3277. log_info("Create Check System Task");
  3278. system("/root/Module_ChkSysTask &");
  3279. }
  3280. }
  3281. return;
  3282. }
  3283. log_info("Create Check Systam fork:%d",Pid);
  3284. return;
  3285. }
  3286. /**
  3287. * [checkPileEndGfdResult 確認充電樁GFD狀態]
  3288. * @Author Jerry
  3289. * @DateTime 2021-07-01
  3290. * @param gunIndex [當前的槍]
  3291. * @param gunType [槍的類型]
  3292. * @param sysStatus [槍的系統狀態]
  3293. */
  3294. static void checkPileEndGfdResult(uint8_t gunIndex, uint8_t gunType, uint8_t sysStatus)
  3295. {
  3296. switch (gunType) {
  3297. case _Type_Chademo:
  3298. // 檢查樁端的 GFD 結果
  3299. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3300. isPrechargeStatus_chademo(gunIndex) >= 6 ) {
  3301. // 當前操作的槍號,進入 Charging
  3302. setChargerMode(gunIndex, MODE_CHARGING);
  3303. }
  3304. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3305. // GFD 錯誤停止
  3306. RecordAlarmCode(gunIndex, "012234");
  3307. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = YES;
  3308. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = NO;
  3309. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3310. // GFD 警告
  3311. //RecordAlarmCode(gunIndex, "012296");
  3312. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  3313. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = YES;
  3314. }
  3315. else {
  3316. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdTrip = NO;
  3317. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaGfdWarning = NO;
  3318. }
  3319. break;
  3320. case _Type_GB:
  3321. // 檢查樁端的 GFD 結果
  3322. //if (isPrechargeStatus_gb(gunIndex) > 5 && isPrechargeStatus_gb(gunIndex) < 9) {
  3323. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3324. isPrechargeStatus_gb(gunIndex) >= 6) {
  3325. setChargerMode(gunIndex, MODE_CHARGING);
  3326. }
  3327. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3328. // GFD 錯誤停止
  3329. RecordAlarmCode(gunIndex, "012236");
  3330. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = YES;
  3331. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = NO;
  3332. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3333. // GFD 警告
  3334. //RecordAlarmCode(gunIndex, "012298");
  3335. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  3336. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = YES;
  3337. }
  3338. else {
  3339. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdTrip = NO;
  3340. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTGfdWarning = NO;
  3341. }
  3342. break;
  3343. case _Type_CCS_2:
  3344. // 檢查樁端的 GFD 結果
  3345. if (sysStatus == S_PREPARING_FOR_EVSE &&
  3346. (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
  3347. pDcChargingInfo->GroundFaultStatus == GFD_WARNING)
  3348. ) {
  3349. setChargerMode(gunIndex, MODE_CCS_PRECHARGE_STEP0);
  3350. }
  3351. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3352. // GFD 錯誤停止
  3353. RecordAlarmCode(gunIndex, "012235");
  3354. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3355. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = NO;
  3356. } else if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  3357. // GFD 警告
  3358. //RecordAlarmCode(gunIndex, "012297");
  3359. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  3360. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = YES;
  3361. }
  3362. else {
  3363. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = NO;
  3364. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdWarning = NO;
  3365. }
  3366. break;
  3367. }
  3368. }
  3369. static void checkEvBoardReqStop(uint8_t sysStatus, uint8_t gunIndex)
  3370. {
  3371. uint8_t evBoardStopState = 0;
  3372. if ((evBoardStopState = isEvBoardStopChargeFlag(gunIndex)) > 0) {
  3373. // 板端要求停止 (錯誤)
  3374. if (sysStatus != S_CCS_PRECHARGE_ST0 &&
  3375. sysStatus != S_CCS_PRECHARGE_ST1) {
  3376. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  3377. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "EVDisconnected");
  3378. }
  3379. }
  3380. if (evBoardStopState == EV_BOARD_STOP_CHARGING) {
  3381. log_info("EV Board Stop Charging with some error");
  3382. ChargingAlarmProcess(gunIndex);
  3383. } else if (evBoardStopState == POWER_CABINET_STOP_CHARGING) {
  3384. log_info("Power Cabient Stop Charging");
  3385. ChargingTerminalProcess(gunIndex);
  3386. }
  3387. } else if (isEvBoardNormalStopChargeFlag(gunIndex) == YES) {
  3388. // 板端要求停止 (正常)
  3389. if (sysStatus != S_CCS_PRECHARGE_ST0 &&
  3390. sysStatus != S_CCS_PRECHARGE_ST1) {
  3391. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  3392. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "EVDisconnected");
  3393. }
  3394. }
  3395. log_info("EV Board Normal Stop Charging");
  3396. ChargingTerminalProcess(gunIndex);
  3397. } else if (OcppRemoteStop(gunIndex) == YES ||
  3398. WifiScheduleStop(gunIndex)) {
  3399. // 後臺要求停止
  3400. log_info("OCPP Stop Charging");
  3401. ChargingTerminalProcess(gunIndex);
  3402. }
  3403. }
  3404. static void checkOCPPReqStop(uint8_t gunIndex)
  3405. {
  3406. if (OcppRemoteStop(gunIndex) == YES ||
  3407. WifiScheduleStop(gunIndex) ||
  3408. CheckBackendChargingTimeout(gunIndex) ||
  3409. CheckBackendChargingEnergy(gunIndex) ||
  3410. strcmp((char *)ShmOCPP16Data->StartTransaction[gunIndex].ResponseIdTagInfo.Status, "Invalid") == EQUAL) {
  3411. // 後臺要求停止
  3412. ChargingTerminalProcess(gunIndex);
  3413. }
  3414. }
  3415. void ResetIdleData(uint8_t gunIndex)
  3416. {
  3417. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3418. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  3419. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  3420. pDcChargingInfo->PresentChargedDuration = 0;
  3421. pDcChargingInfo->RemainChargingDuration = 0;
  3422. pDcChargingInfo->PresentChargingVoltage = 0;//DS60-120 add
  3423. pDcChargingInfo->PresentChargingCurrent = 0;//DS60-120 add
  3424. pDcChargingInfo->RemoteStartFlag = NO;
  3425. pDcChargingInfo->Replug_flag = FALSE;
  3426. strcpy((char *)pDcChargingInfo->StartDateTime, "");
  3427. strcpy((char *)pDcChargingInfo->StopDateTime, "");
  3428. strcpy((char *)pDcChargingInfo->StartUserId, "");
  3429. strcpy((char *)pSysConfig->UserId, "");
  3430. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "");
  3431. ClearDetectPluginFlag();
  3432. //Jerry add
  3433. memset(&ShmSelectGunInfo->PricesInfo[gunIndex], 0, sizeof(PricesInfo));
  3434. memset(&ShmDcCommonData->TransactionInfo[gunIndex], 0, sizeof(RecordTransactionInfo));
  3435. ShmDcCommonData->finalcost_flag[gunIndex] = FALSE;
  3436. ShmDcCommonData->AuthPass_flag[gunIndex] = FALSE;
  3437. ShmDcCommonData->PayPass_flag[gunIndex] = FALSE;
  3438. ShmDcCommonData->LineStatus[gunIndex] = 0;
  3439. ShmDcCommonData->OperateIDLE[gunIndex] = 1;
  3440. ShmDcCommonData->is_RemoteStart[gunIndex] = FALSE;
  3441. ShmDcCommonData->is_AutoStart[gunIndex] = FALSE;
  3442. ShmDcCommonData->is_exit[gunIndex] = FALSE;
  3443. ShmDcCommonData->StopCharge[gunIndex] = FALSE;
  3444. ShmSelectGunInfo->PricesInfo[gunIndex].Balance = FAIL_BALANCE_PRICES;
  3445. destroySelGun(gunIndex);
  3446. ResetDetAlarmStatus(gunIndex); //recovery OVP status code
  3447. if (ShmSelectGunInfo->AuthorStateFromCabinet[gunIndex] == YES) {
  3448. ShmSelectGunInfo->AuthorStateFromCabinet[gunIndex] = NO;
  3449. }
  3450. //strcpy((char *)ShmOCPP16Data->StatusNotification[gunIndex].VendorErrorCode, "");
  3451. ReleaseAlarmCode(gunIndex);
  3452. if (pSysInfo->SystemPage != _PAGE_SELECT_GUN && pSysInfo->SystemPage != _PAGE_SELECT_PAY)
  3453. pSysInfo->SystemPage = _PAGE_IDLE;
  3454. }
  3455. void CheckErrorCode(uint8_t gunIndex)
  3456. {
  3457. struct ChargingInfoData *pSelectedDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  3458. if (gunIndex == pSysInfo->CurGunSelected) {
  3459. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3460. } else if (pSelectedDcChargingInfo->SystemStatus != S_IDLE &&
  3461. pSelectedDcChargingInfo->SystemStatus != S_RESERVATION &&
  3462. pSelectedDcChargingInfo->SystemStatus != S_MAINTAIN &&
  3463. pSelectedDcChargingInfo->SystemStatus != S_FAULT) {
  3464. if (pSelectedDcChargingInfo->SystemStatus == S_CHARGING) {
  3465. if(ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == FALSE)
  3466. pSysInfo->SystemPage = _PAGE_PAYING;
  3467. else
  3468. pSysInfo->SystemPage = _PAGE_COMPLETE;
  3469. } else {
  3470. systemPageRestoreInit();
  3471. }
  3472. }
  3473. ClearDetectPluginFlag();
  3474. if (pDcChargingInfo->SystemStatus != S_FAULT)
  3475. {
  3476. UpdateErrorCodeToOcpp(gunIndex);
  3477. setChargerMode(gunIndex, MODE_FAULT);
  3478. }
  3479. }
  3480. void AuthorizeStopCharging(uint8_t gunIndex)
  3481. {
  3482. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3483. checkOCPPReqStop(gunIndex);
  3484. //RfidStopCharging();
  3485. }
  3486. void showversion()
  3487. {
  3488. uint8_t index = 0;
  3489. log_info("\t=========== Dispenser info =========== ");
  3490. log_info("\tSW Version = %s", fwVersion);
  3491. log_info("\tDebug Version = %s",DebugVersion);
  3492. log_info("\tModelName = %s", pSysConfig->ModelName);
  3493. log_info("\tRelay Board FW Rev = %s", pSysInfo->RelayModuleFwRev);
  3494. log_info("\tFan Board FW Rev = %s", pSysInfo->FanModuleFwRev);
  3495. log_info("\tPrimary FW Rev = %s", pSysInfo->CsuPrimFwRev);
  3496. log_info("\tLCM HW Rev = %s", pSysInfo->LcmHwRev);
  3497. log_info("\tLED FW Rev = %s", pSysInfo->LedModuleFwRev);
  3498. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  3499. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  3500. if (pDcChargingInfo->Type == _Type_Chademo) {
  3501. log_info("\tCHAdeMO[%d] FW Rev = %s",
  3502. pDcChargingInfo->type_index,
  3503. ShmCHAdeMOData->evse[pDcChargingInfo->type_index].version);
  3504. } else if (pDcChargingInfo->Type == _Type_GB) {
  3505. log_info("\tGBT[%d] FW Rev = %s",
  3506. pDcChargingInfo->type_index,
  3507. ShmGBTData->evse[pDcChargingInfo->type_index].version);
  3508. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3509. log_info("\tCCS[%d] FW Rev = %s",
  3510. pDcChargingInfo->type_index,
  3511. ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].version);
  3512. }
  3513. }
  3514. log_info("\t==================================== ");
  3515. }
  3516. int main(void)
  3517. {
  3518. bool isModelNameMatch = true;
  3519. uint8_t _ocppProfileChkFlag;
  3520. uint8_t gunIndex = 0;
  3521. uint8_t cancelcount = 0;
  3522. if (CreateAllCsuShareMemory() == FAIL) {
  3523. log_error("create share memory error");
  3524. return FAIL;
  3525. }
  3526. ClearAllShmMemParameter();
  3527. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  3528. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  3529. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  3530. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  3531. pFaultCode = (struct FaultCodeData *)GetShmFaultCodeData();
  3532. pInfoCode = (struct InfoCodeData *)GetShmInfoCodeData();
  3533. ShmPsuData = (struct PsuData *)GetShmPsuData();
  3534. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  3535. ShmGBTData = (struct GBTData *)GetShmGBTData();
  3536. ShmCcsData = (struct CcsData *)GetShmCcsData();
  3537. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  3538. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  3539. ShmRelayModuleData = (struct RelayModuleData *)GetShmRelayModuleData();
  3540. ShmLedModuleData = (struct LedModuleData *)GetShmLedModuleData();
  3541. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  3542. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  3543. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  3544. ShmSysConfigAndInfo = (struct SysConfigAndInfo *)GetShmSysConfigAndInfo();
  3545. ShmStatusCodeData = (struct StatusCodeData *)GetShmStatusCodeData();
  3546. log_info(" ********************************************************");
  3547. log_info(" ****************** FileSystem Boot up *****************");
  3548. log_info(" ********************************************************");
  3549. log_info(" ****************** Project:DD360Tcc *****************");
  3550. log_info(" ********************************************************");
  3551. if (!InitialSystemDefaultConfig()) {
  3552. log_error("InitialSystemDefaultConfig NG ");
  3553. //StopProcessingLoop();
  3554. sleep(5);
  3555. system("reboot -f");
  3556. }
  3557. CheckGunTypeFromHw();
  3558. CheckIsAlternatvieByModelName();
  3559. InitialShareMemoryInfo();
  3560. GetFirmwareVersion();
  3561. if (!CheckConnectorTypeStatus()) {
  3562. isModelNameMatch = false;
  3563. }
  3564. Initialization();
  3565. SpawnTask();
  3566. log_info("Spawned all Task");
  3567. if (!isModelNameMatch) {
  3568. pAlarmCode->AlarmEvents.bits.ModelNameNoneMatchStestFail = YES;
  3569. //ChangeLcmByIndex(_LCM_ERROR);
  3570. ChangeLcmByIndex(_PAGE_MAINTAIN);
  3571. // Module Name 與硬體對應不正確
  3572. log_error("Module Name & HW info none match. ");
  3573. sleep(3);
  3574. KillAllTask();
  3575. StopProcessingLoop();
  3576. }
  3577. CreateTimeoutFork();
  3578. log_info("Start self test... ");
  3579. SelfTestRun();
  3580. StopSystemTimeoutDet();
  3581. log_info("Self test finished : SelfTestSeq = %d, Work_Step = %d ",
  3582. pSysInfo->SelfTestSeq,
  3583. ShmPsuData->Work_Step);
  3584. if (pSysInfo->SelfTestSeq == _STEST_FAIL ||
  3585. ShmPsuData->Work_Step == _NO_WORKING ||
  3586. pInfoCode->InfoEvents.bits.CcsSeccTimeoutQCA7000Comm == YES //DS60-120 add
  3587. ) {
  3588. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3589. setChargerMode(gunIndex, MODE_MAINTAIN);
  3590. }
  3591. ChangeLcmByIndex(_PAGE_MAINTAIN);
  3592. } else {
  3593. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3594. setChargerMode(gunIndex, MODE_IDLE);
  3595. }
  3596. }
  3597. // Local DB
  3598. if (DB_Open() != PASS) {
  3599. log_info("DB_Open fail. ");
  3600. isDb_ready = false;
  3601. } else {
  3602. isDb_ready = true;
  3603. for (int _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  3604. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  3605. pDcChargingInfo->IsAvailable = DB_Get_Operactive(_index);
  3606. }
  3607. DB_Reboot_Record();
  3608. }
  3609. log_info("===== Create DB End ===== ");
  3610. ChangeLcmByIndex(_PAGE_SELECT_GUN);
  3611. sleep(1);
  3612. //***** 須新增的偵測 *****//
  3613. // 1. Thernal - 控制風扇轉速
  3614. // 2. ouput fuse - 控制風扇轉速
  3615. CreateRfidFork();
  3616. // Main loop
  3617. showversion();
  3618. CheckFwSlotStatusLog();
  3619. //AdjustChargerCurrent();
  3620. gettimeofday(&_cmdMainPriority_time, NULL);
  3621. // GunIndexInfo *pGunIndexInfo = (GunIndexInfo *)GetGunIndexInfo();
  3622. CheckTaskAlive();
  3623. CreateWatchdog();
  3624. for (;;) {
  3625. CheckOcppStatus();
  3626. ChkPrimaryStatus();
  3627. if ((IsConnectorWholeIdle() ||
  3628. //(pSysInfo->PageIndex == _LCM_ERROR)) &&
  3629. (pSysInfo->PageIndex == _PAGE_MAINTAIN)) &&
  3630. (pSysInfo->SystemTimeoutFlag != Timeout_ReturnToChargingGunDet)
  3631. ) {
  3632. CheckFactoryConfigFunction();
  3633. //CheckFwUpdateFunction();
  3634. }
  3635. // OCPP 邏輯
  3636. OcppRemoteStartChk();
  3637. // 當 AC 沒有搭上時,清除一些錯誤碼
  3638. ClearAlarmCodeWhenAcOff();
  3639. if ((GetTimeoutValue(_cmdMainPriority_time) / 1000) > 5000) {
  3640. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3641. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3642. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  3643. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  3644. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  3645. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  3646. if (pDcChargingInfo->SystemStatus == S_CHARGING &&
  3647. _ocppProfileChkFlag == 12) {
  3648. ChargingProfileFlat(gunIndex);
  3649. _ocppProfileChkFlag = 0;
  3650. } else if (pDcChargingInfo->SystemStatus != S_CHARGING) {
  3651. ChargingProfileFlat(gunIndex);
  3652. _ocppProfileChkFlag = 0;
  3653. } else {
  3654. _ocppProfileChkFlag++;
  3655. }
  3656. }
  3657. checkGunOTPState(gunIndex); //check gun OTP
  3658. }
  3659. gettimeofday(&_cmdMainPriority_time, NULL);
  3660. }
  3661. gEvBoardErr.GunErrMessage = 0; //清除系統執行中的錯誤訊息
  3662. gChillerTempErr.TempErrMsg = 0;//清除系統執行中的錯誤訊息
  3663. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3664. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3665. // 重新收集各槍的錯誤狀態
  3666. collectError(gunIndex);
  3667. checkEvBoardAlarmState(pDcChargingInfo->Type);
  3668. }
  3669. checkChillerAlarmState();
  3670. // 確認當前錯誤 Level = 2 ?
  3671. ReviewCriticalAlarm();
  3672. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  3673. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  3674. CheckGpioInStatus();
  3675. CheckErrorOccurStatus(gunIndex);
  3676. // 確認 Relay Welding or Driving Fault
  3677. CheckRelayWeldingOrDrivingFault(gunIndex);
  3678. ChkOcppStatus(gunIndex);
  3679. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  3680. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  3681. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  3682. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  3683. CheckSmartChargeProfile(gunIndex);
  3684. }
  3685. switch (pDcChargingInfo->SystemStatus) {
  3686. case S_IDLE:
  3687. if (isModeChange(gunIndex)) {
  3688. log_info("============================= S_IDLE(%x) ============================= ", gunIndex);
  3689. ResetIdleData(gunIndex);
  3690. }
  3691. isChargingAverageState();
  3692. // For RemoteStart Using
  3693. if (pDcChargingInfo->RemoteStartFlag == YES && pDcChargingInfo->IsAvailable) {
  3694. log_info("-------- IDLE Remote Start(%d) --------", gunIndex);
  3695. ChangeGunSelectByIndex(gunIndex);
  3696. setChargerMode(gunIndex, MODE_AUTHORIZING);
  3697. break;
  3698. }
  3699. autoStartCharging(gunIndex);
  3700. cancelcount = 0;
  3701. // 讀卡邏輯
  3702. if (!ShmDcCommonData->TradeCancel)
  3703. ScannerCardProcess();
  3704. if (pSysInfo->SystemPage == _PAGE_SELECT_GUN) {
  3705. ShmDcCommonData->LineStatus[gunIndex] = 0;
  3706. StopGunInfoTimeoutDet(gunIndex);
  3707. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  3708. }
  3709. if (pSysInfo->CurGunSelected == gunIndex){
  3710. if(pSysInfo->SystemPage ==_PAGE_BILL) {
  3711. StartSystemTimeoutDet(Timeout_AddLine);
  3712. if (/*ShmDcCommonData->LineStatus[gunIndex] == 1 ||*/ ShmDcCommonData->LineStatus[gunIndex] == 2) {
  3713. pSysInfo->SystemPage = _PAGE_ADD_FRIEND;
  3714. log_info("Change to Add Line Friend Page");
  3715. }
  3716. } else if(pSysInfo->SystemPage ==_PAGE_ADD_FRIEND) {
  3717. StopSystemTimeoutDet();
  3718. StartGunInfoTimeoutDet(gunIndex, Timeout_LineReigster);
  3719. if (ShmDcCommonData->LineStatus[gunIndex] == 3) {
  3720. StopGunInfoTimeoutDet(gunIndex);
  3721. pSysInfo->SystemPage =_PAGE_SELECT_PAY;
  3722. ShmDcCommonData->TransactionInfo[gunIndex].IsDonateInvoice = FALSE;
  3723. log_info("Change to Select Pay Page");
  3724. }
  3725. if (ShmDcCommonData->LineStatus[gunIndex] == 4 ) {
  3726. StopGunInfoTimeoutDet(gunIndex);
  3727. pSysInfo->SystemPage =_PAGE_SELECT_PAY;
  3728. ShmDcCommonData->TransactionInfo[gunIndex].IsDonateInvoice = TRUE;
  3729. log_info("Change to Select Pay Page");
  3730. }
  3731. }
  3732. }
  3733. goto CheckStatus;
  3734. break;
  3735. case S_RESERVATION:
  3736. if (isModeChange(gunIndex)) {
  3737. log_info("============================= S_RESERVATION(%x) ============================= ", gunIndex);
  3738. ShmOCPP16Data->CsMsg.bits[gunIndex].ReserveNowConf = YES;
  3739. }
  3740. if (!isReservationExpired(gunIndex)) {
  3741. pDcChargingInfo->SystemStatus = S_IDLE;
  3742. }
  3743. goto CheckStatus;
  3744. break;
  3745. case S_FAULT:
  3746. if (isModeChange(gunIndex)) {
  3747. if(pDcChargingInfo->SystemStatus == S_FAULT) {
  3748. log_info("============================= S_FAULT(%x) ============================= ", gunIndex);
  3749. //pSysInfo->SystemPage = _LCM_ERROR;
  3750. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3751. }
  3752. }
  3753. CheckStatus:
  3754. if (pDcChargingInfo->IsAvailable == NO) {
  3755. setChargerMode(gunIndex, MODE_MAINTAIN);
  3756. break;
  3757. }
  3758. // Refresh Error Status
  3759. if (pSysWarning->Level == WARN_LV_ER) {
  3760. CheckErrorCode(gunIndex);
  3761. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3762. continue;
  3763. }
  3764. if (PrecheckIsPass(gunIndex) == false) {
  3765. log_error("Relay welding");
  3766. setChargerMode(gunIndex, MODE_FAULT);
  3767. if (gunIndex == pSysInfo->CurGunSelected) {
  3768. //pSysInfo->SystemPage = _LCM_ERROR;
  3769. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  3770. }
  3771. break;
  3772. }
  3773. if (pDcChargingInfo->SystemStatus == S_FAULT) {
  3774. systemPageRestoreInit();
  3775. setChargerMode(gunIndex, MODE_IDLE);
  3776. }
  3777. break;
  3778. case S_AUTHORIZING:
  3779. if (isModeChange(gunIndex)) {
  3780. log_info("============================= S_AUTHORIZING(%x) ============================= ", gunIndex);
  3781. StartSystemTimeoutDet(Timeout_AuthorizingForStop);
  3782. }
  3783. ScannerCardProcess();
  3784. // 隨插即充
  3785. if (pSysInfo->SystemPage == _PAGE_PLUGIN && ShmDcCommonData->TradeCancel == FALSE) {
  3786. pDcChargingInfo->Replug_flag = TRUE;
  3787. StopSystemTimeoutDet();
  3788. StartGunInfoTimeoutDet(gunIndex,Timeout_WaitPlug);
  3789. }
  3790. if (pSysInfo->SystemPage == _PAGE_PLUGOUT) {
  3791. StartSystemTimeoutDet(Timeout_VerifyFail);
  3792. }
  3793. if (isDetectPlugin()) {
  3794. // 卡號驗證成功後,等待充電槍插入充電車
  3795. if (pDcChargingInfo->RemoteStartFlag == YES) {
  3796. if (pDcChargingInfo->ConnectorPlugIn == YES &&
  3797. pDcChargingInfo->IsAvailable ) {
  3798. log_info("-------- S_AUTHORIZING Remote Start(%d) --------", gunIndex);
  3799. pDcChargingInfo->RemoteStartFlag = NO;
  3800. pDcChargingInfo->isRemoteStart = YES; //DS60-120
  3801. ChangeGunSelectByIndex(gunIndex);
  3802. //AddPlugInTimes(gunIndex);
  3803. setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
  3804. strcpy((char *)pDcChargingInfo->StartUserId, "");
  3805. ClearDetectPluginFlag();
  3806. continue;
  3807. }
  3808. } else if (pSysInfo->OrderCharging == NO_DEFINE) {
  3809. if (pDcChargingInfo->ConnectorPlugIn == YES &&
  3810. pDcChargingInfo->IsAvailable &&
  3811. pDcChargingInfo->SystemStatus == S_AUTHORIZING &&
  3812. ShmDcCommonData->AuthPass_flag[pSysInfo->CurGunSelected] == TRUE &&
  3813. //waitSelectGunPlugIt(gunIndex)
  3814. (waitRightGunPlugIt(gunIndex) == PASS ||
  3815. waitLeftGunPlugIt(gunIndex) == PASS)
  3816. ) {
  3817. log_info("-------- RFID/Auto Start(%d) --------", gunIndex);
  3818. ChangeGunSelectByIndex(gunIndex);
  3819. //AddPlugInTimes(gunIndex);
  3820. pDcChargingInfo->isRemoteStart = NO;
  3821. strcpy((char *)pDcChargingInfo->StartUserId, (char *)pSysConfig->UserId);
  3822. log_info("index = %d, CardNumber = %s ",
  3823. gunIndex,
  3824. pDcChargingInfo->StartUserId);
  3825. strcpy((char *)pSysConfig->UserId, "");
  3826. // 當前操作的槍號,進入 Preparing
  3827. setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
  3828. ClearDetectPluginFlag();
  3829. continue;
  3830. }
  3831. }
  3832. if (!GetIsCardScan() && pSysInfo->CurGunSelected == gunIndex &&
  3833. pSysInfo->SystemPage != _PAGE_AUTHORIZE_FAIL &&
  3834. pSysInfo->SystemPage != _PAGE_SENSING) {
  3835. pSysInfo->SystemPage = _PAGE_PLUGIN;
  3836. }
  3837. }
  3838. break;
  3839. case S_REASSIGN_CHECK: {
  3840. if (isModeChange(gunIndex)) {
  3841. log_info("============================= S_REASSIGN_CHECK(%x) ============================= ", gunIndex);
  3842. if (pSysInfo->OrderCharging != NO_DEFINE) {
  3843. pSysInfo->OrderCharging = NO_DEFINE;
  3844. pDcChargingInfo->_SaftyDetect = FALSE;
  3845. pDcChargingInfo->Replug_flag = TRUE;
  3846. }
  3847. StopSystemTimeoutDet();
  3848. StopGunInfoTimeoutDet(gunIndex);
  3849. gettimeofday(&pDcChargingInfo->PreChargeTimer, NULL);
  3850. }
  3851. setChargerMode(gunIndex, S_PREPARNING);
  3852. if (pSysInfo->CurGunSelected == gunIndex) {
  3853. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3854. }
  3855. }
  3856. break;
  3857. case S_PREPARNING:
  3858. if (isModeChange(gunIndex)) {
  3859. log_info("============================= S_PREPARNING(%x) ============================= ", gunIndex);
  3860. StopGunInfoTimeoutDet(gunIndex);
  3861. StartGunInfoTimeoutDet(gunIndex, Timeout_Preparing);
  3862. }
  3863. if (ShmPsuData->SystemPresentPsuQuantity > 0 &&
  3864. ShmPsuData->SystemAvailablePower > 10 &&
  3865. GetTimeoutValue(pDcChargingInfo->TimeoutTimer) >= 5000000) {
  3866. setChargerMode(gunIndex, MODE_PREPARE_FOR_EV);
  3867. }
  3868. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3869. if (pSysInfo->CurGunSelected == gunIndex) {
  3870. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3871. }
  3872. break;
  3873. case S_PREPARING_FOR_EV: // 等待車端的通訊 (EV 小板),待車端回報後,開始樁端的測試
  3874. if (isModeChange(gunIndex)) {
  3875. log_info("============================= S_PREPARING_FOR_EV(%x) ============================= ", gunIndex);
  3876. log_info("Waitting for Gun locked.");
  3877. StopGunInfoTimeoutDet(gunIndex);
  3878. StartGunInfoTimeoutDet(gunIndex, Timeout_EvChargingDet);
  3879. }
  3880. if (pDcChargingInfo->Type == _Type_Chademo) {
  3881. if (isEvGunLocked_chademo(gunIndex) == YES) {
  3882. log_info("Gun Locked");
  3883. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3884. }
  3885. } else if (pDcChargingInfo->Type == _Type_GB) {
  3886. if (isEvGunLocked_gb(gunIndex) == YES) {
  3887. log_info("Gun Locked");
  3888. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3889. }
  3890. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  3891. if (isEvGunLocked_ccs(gunIndex) == YES) {
  3892. log_info("Gun Locked");
  3893. setChargerMode(gunIndex, MODE_PREPARE_FOR_EVSE);
  3894. }
  3895. }
  3896. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3897. if (pSysInfo->CurGunSelected == gunIndex) {
  3898. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3899. }
  3900. break;
  3901. case S_PREPARING_FOR_EVSE: // Ground fault test, 等待 Relay Board 通訊及測試,並將狀態回報, CSU 確認 Pass 後,開始進入充電
  3902. if (isModeChange(gunIndex)) {
  3903. log_info("============================= S_PREPARING_FOR_EVSE(%x) ============================= ", gunIndex);
  3904. StopGunInfoTimeoutDet(gunIndex);
  3905. StartGunInfoTimeoutDet(gunIndex, Timeout_EvseChargingDet);
  3906. }
  3907. checkPileEndGfdResult(gunIndex, pDcChargingInfo->Type, pDcChargingInfo->SystemStatus);
  3908. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3909. if (pSysInfo->CurGunSelected == gunIndex) {
  3910. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3911. }
  3912. break;
  3913. case S_CCS_PRECHARGE_ST0:
  3914. if (isModeChange(gunIndex)) {
  3915. log_info("============================= CCS Precharge Processing 1(%x) ============================= ", gunIndex);
  3916. StopGunInfoTimeoutDet(gunIndex);
  3917. StartGunInfoTimeoutDet(gunIndex, Timeout_ForCcsPrechargeDet);
  3918. }
  3919. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3920. // GFD 錯誤停止
  3921. RecordAlarmCode(gunIndex, "012235");
  3922. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3923. }
  3924. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3925. // 等待 EV 小板 (CCS) 通知可以開始 Precharge
  3926. // 切換 D+ Relay to Precharge Relay
  3927. if (isPrechargeStatus_ccs(gunIndex) == 39 ||
  3928. isPrechargeStatus_ccs(gunIndex) == 40) {
  3929. if ((pDcChargingInfo->RelayKPK2Status == YES || pDcChargingInfo->PantographFlag == YES) &&
  3930. pDcChargingInfo->PrechargeStatus != PRECHARGE_READY)
  3931. //if (pDcChargingInfo->PrechargeStatus != PRECHARGE_PRERELAY_PASS)
  3932. {
  3933. //log_info("Send precharge ready 1..........%x, status = %d ",
  3934. // gunIndex,
  3935. // isPrechargeStatus_ccs(gunIndex));
  3936. if (isPrechargeStatus_ccs(gunIndex) == 39) {
  3937. log_info("Conn %x, Precharge ready, CCS status = PreChargeResponse (%d) ",
  3938. gunIndex,
  3939. isPrechargeStatus_ccs(gunIndex));
  3940. } else if (isPrechargeStatus_ccs(gunIndex) == 40) {
  3941. log_info("Conn %x, Precharge ready, CCS status = PowerDeliveryRequest start (%d) ",
  3942. gunIndex,
  3943. isPrechargeStatus_ccs(gunIndex));
  3944. }
  3945. pDcChargingInfo->PrechargeStatus = PRECHARGE_READY;
  3946. }
  3947. } else if (isPrechargeStatus_ccs(gunIndex) == 45 ||
  3948. isPrechargeStatus_ccs(gunIndex) == 46
  3949. ) {
  3950. setChargerMode(gunIndex, MODE_CCS_PRECHARGE_STEP1);
  3951. }
  3952. if (pSysInfo->CurGunSelected == gunIndex) {
  3953. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3954. }
  3955. break;
  3956. case S_CCS_PRECHARGE_ST1:
  3957. if (isModeChange(gunIndex)) {
  3958. log_info("============================= CCS Precharge Processing 2(%x) ============================= ", gunIndex);
  3959. }
  3960. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  3961. // GFD 錯誤停止
  3962. RecordAlarmCode(gunIndex, "012235");
  3963. ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSGfdTrip = YES;
  3964. }
  3965. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  3966. // 等待小板通知進入充電
  3967. // 切換 D+ Relay to Precharge Relay
  3968. if (pDcChargingInfo->RelayK1K2Status == YES || pDcChargingInfo->PantographFlag == YES) {
  3969. pDcChargingInfo->PrechargeStatus = PRECHARGE_READY;
  3970. // pSysInfo->CurGunSelected = gunIndex;
  3971. setChargerMode(gunIndex, MODE_CHARGING);
  3972. }
  3973. if (pSysInfo->CurGunSelected == gunIndex) {
  3974. pSysInfo->SystemPage = _PAGE_PRECHARGE;
  3975. }
  3976. break;
  3977. case S_CHARGING: // 剛進入充電狀態,等待 EV 小板要求的輸出電流後開始輸出
  3978. if (isModeChange(gunIndex)) {
  3979. log_info("============================= S_CHARGING(%x) ============================= ", gunIndex);
  3980. StopGunInfoTimeoutDet(gunIndex);
  3981. ftime(&startChargingTime[gunIndex]);
  3982. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].ResponseIdTagInfo.Status, ""); //DS60-120 add
  3983. ChangeStartOrStopDateTime(YES, gunIndex);
  3984. pDcChargingInfo->Replug_flag = FALSE;
  3985. ShmDcCommonData->finalcost_flag[gunIndex] = FALSE;
  3986. ShmDcCommonData->TransactionInfo[gunIndex].isIntoCharge = TRUE;
  3987. ShmDcCommonData->RecordEnergyTime[gunIndex] = time((time_t*)NULL);
  3988. UpdateDeductInfoStatus(gunIndex, &ShmDcCommonData->TransactionInfo[gunIndex]);
  3989. }
  3990. if (ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionConf) {
  3991. ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionConf = NO;
  3992. }
  3993. ftime(&endChargingTime[gunIndex]);
  3994. pDcChargingInfo->PresentChargedDuration = DiffTimeb(startChargingTime[gunIndex], endChargingTime[gunIndex]);
  3995. ShmDcCommonData->TransactionInfo[gunIndex].Energy = pDcChargingInfo->PresentChargedEnergy;
  3996. // 每秒紀錄使用電量到資料庫內
  3997. if ((time((time_t*)NULL) - ShmDcCommonData->RecordEnergyTime[gunIndex]) >= 1) {
  3998. ShmDcCommonData->RecordEnergyTime[gunIndex] = time((time_t*)NULL);
  3999. UpdateDeductInfoStatus(gunIndex, &ShmDcCommonData->TransactionInfo[gunIndex]);
  4000. }
  4001. checkPileEndGfdResult(gunIndex, pDcChargingInfo->Type, pDcChargingInfo->SystemStatus);
  4002. checkEvBoardReqStop(pDcChargingInfo->SystemStatus, gunIndex);
  4003. // Check Stop Charging
  4004. AuthorizeStopCharging(gunIndex);
  4005. if (pSysInfo->SystemPage == _PAGE_STOP_CONFIRM_LEFT ||
  4006. pSysInfo->SystemPage == _PAGE_STOP_CONFIRM_RIGHT)
  4007. break;
  4008. // LCM => Charging
  4009. if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _PAGE_IDLE &&
  4010. pSysInfo->SystemPage != _PAGE_SELECT_GUN) {
  4011. pSysInfo->SystemPage = _PAGE_CHARGING;
  4012. }
  4013. break;
  4014. case S_TERMINATING:
  4015. if (isModeChange(gunIndex)) {
  4016. log_info("============================= S_TERMINATING(%x) ============================= ", gunIndex);
  4017. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  4018. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Local");
  4019. }
  4020. StopGunInfoTimeoutDet(gunIndex);
  4021. StartGunInfoTimeoutDet(gunIndex, Timeout_FinalCost);
  4022. StartSystemTimeoutDet(Timeout_Terminating);
  4023. //pSysInfo->CurGunSelected = gunIndex;
  4024. /*
  4025. if (pDcChargingInfo->Replug_flag == TRUE) {
  4026. ShmDcCommonData->TradeCancel = TRUE;
  4027. StartSystemTimeoutDet(Timeout_TradeCancel);
  4028. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  4029. ShmDcCommonData->PreAuth_Result = 0;
  4030. pSysInfo->SystemPage = _PAGE_SENSING;
  4031. }*/
  4032. }
  4033. // For Precharging timeout
  4034. if (pDcChargingInfo->Type == _Type_Chademo) {
  4035. if (isEvStopCharging_chademo(gunIndex) == YES ||
  4036. isPrechargeStatus_chademo(gunIndex) <= 0) {
  4037. setChargerMode(gunIndex, MODE_COMPLETE);
  4038. }
  4039. } else if (pDcChargingInfo->Type == _Type_GB) {
  4040. if (isEvStopCharging_gb(gunIndex) == YES ||
  4041. isPrechargeStatus_gb(gunIndex) <= 0) {
  4042. setChargerMode(gunIndex, MODE_COMPLETE);
  4043. }
  4044. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  4045. if (isEvStopCharging_ccs(gunIndex) == YES &&
  4046. (isPrechargeStatus_ccs(gunIndex) >= 53 ||
  4047. isPrechargeStatus_ccs(gunIndex) == 0 ||
  4048. isPrechargeStatus_ccs(gunIndex) == 13 ||
  4049. isPrechargeStatus_ccs(gunIndex) == 14)
  4050. ) {
  4051. setChargerMode(gunIndex, MODE_COMPLETE);
  4052. }
  4053. }
  4054. //if (pSysInfo->SystemPage == _LCM_ERROR) {
  4055. if (pSysInfo->SystemPage == _PAGE_MAINTAIN) {
  4056. break;
  4057. }
  4058. if (pSysInfo->CurGunSelected == gunIndex &&
  4059. pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING) {
  4060. if (pDcChargingInfo->Replug_flag == TRUE)
  4061. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4062. else {
  4063. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4064. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4065. else
  4066. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4067. }
  4068. }
  4069. break;
  4070. case S_COMPLETE:
  4071. if (isModeChange(gunIndex)) {
  4072. log_info ("============================= S_COMPLETE(%x) ============================= ", gunIndex);
  4073. if (strcmp((char *)pDcChargingInfo->StartDateTime, "") != EQUAL) {
  4074. OcppStopTransation(gunIndex);
  4075. }
  4076. TheEndCharging(gunIndex);
  4077. if (pDcChargingInfo->Replug_flag != TRUE && pSysInfo->SystemPage != _PAGE_PLUGOUT)
  4078. StopSystemTimeoutDet();
  4079. if (ShmDcCommonData->is_AutoStart[gunIndex] == TRUE && pSysInfo->CurGunSelected == gunIndex)
  4080. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4081. }
  4082. /*
  4083. if (ShmDcCommonData->PreAuth_Config == _CREDITCARD_CANCEL &&
  4084. ShmDcCommonData->PreAuth_Result != 0 && cancelcount < 30) {
  4085. sleep(1);
  4086. cancelcount++;
  4087. log_info("Cancel Not Complete yet");
  4088. break;
  4089. }
  4090. */
  4091. //if (pSysInfo->SystemPage == _LCM_ERROR) {
  4092. if (pSysInfo->SystemPage == _PAGE_MAINTAIN) {
  4093. break;
  4094. }
  4095. if (pSysInfo->CurGunSelected == gunIndex && ShmDcCommonData->is_exit[gunIndex]) {
  4096. pSysInfo->SystemPage = _PAGE_EXIT;
  4097. break;
  4098. }
  4099. if (pSysInfo->CurGunSelected == gunIndex && pDcChargingInfo->ConnectorPlugIn == NO &&
  4100. (pSysInfo->SystemPage != _PAGE_PAYING || pSysInfo->SystemPage != _PAGE_SENSING)) {
  4101. StartGunInfoTimeoutDet(gunIndex, Timeout_ExitPage);
  4102. }
  4103. if (pSysInfo->CurGunSelected == gunIndex &&
  4104. pSysInfo->SystemPage != _PAGE_PAYING && pSysInfo->SystemPage != _PAGE_SENSING) {
  4105. if (pDcChargingInfo->Replug_flag == TRUE)
  4106. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4107. else {
  4108. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4109. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4110. else
  4111. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4112. }
  4113. }
  4114. break;
  4115. case S_ALARM:
  4116. if (isModeChange(gunIndex)) {
  4117. log_info("============================= S_ALARM(%x) ============================= ", gunIndex);
  4118. if (strcmp((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "") == EQUAL) {
  4119. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Local");
  4120. }
  4121. UpdateErrorCodeToOcpp(gunIndex);
  4122. if (strcmp((char *)pDcChargingInfo->StartDateTime, "") != EQUAL) {
  4123. OcppStopTransation(gunIndex);
  4124. }
  4125. TheEndCharging(gunIndex);
  4126. StopGunInfoTimeoutDet(gunIndex);
  4127. if (pDcChargingInfo->Replug_flag == TRUE) {
  4128. /*
  4129. ShmDcCommonData->TradeCancel = TRUE;
  4130. StartSystemTimeoutDet(Timeout_TradeCancel);
  4131. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  4132. ShmDcCommonData->PreAuth_Result = 0;
  4133. pSysInfo->SystemPage = _PAGE_SENSING;
  4134. */
  4135. } else {
  4136. StartGunInfoTimeoutDet(gunIndex, Timeout_FinalCost);
  4137. if(ShmDcCommonData->finalcost_flag[gunIndex] == FALSE) {
  4138. pSysInfo->SystemPage = _PAGE_PAYING;
  4139. }
  4140. }
  4141. }
  4142. /*
  4143. if (ShmDcCommonData->PreAuth_Config == _CREDITCARD_CANCEL &&
  4144. ShmDcCommonData->PreAuth_Result != 0 && cancelcount < 30) {
  4145. sleep(1);
  4146. cancelcount++;
  4147. //log_info("Cancel Not Complete yet");
  4148. break;
  4149. }
  4150. */
  4151. if (pSysWarning->Level == WARN_LV_ER) {
  4152. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4153. continue;
  4154. }
  4155. if (pSysInfo->CurGunSelected == gunIndex && ShmDcCommonData->is_exit[gunIndex]) {
  4156. pSysInfo->SystemPage = _PAGE_EXIT;
  4157. break;
  4158. }
  4159. if (pSysInfo->CurGunSelected == gunIndex && pDcChargingInfo->ConnectorPlugIn == NO &&
  4160. (pSysInfo->SystemPage != _PAGE_PAYING || pSysInfo->SystemPage != _PAGE_SENSING)) {
  4161. StartGunInfoTimeoutDet(gunIndex, Timeout_ExitPage);
  4162. }
  4163. if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _PAGE_PAYING ) {
  4164. if (pDcChargingInfo->Replug_flag == TRUE)
  4165. pSysInfo->SystemPage = _PAGE_PLUGOUT;
  4166. else{
  4167. if (ShmDcCommonData->PayPass_flag[pSysInfo->CurGunSelected] == TRUE)
  4168. pSysInfo->SystemPage = _PAGE_COMPLETE;
  4169. else
  4170. pSysInfo->SystemPage = _PAGE_PAYFAIL;
  4171. }
  4172. }
  4173. break;
  4174. case S_MAINTAIN:
  4175. if (isModeChange(gunIndex)) {
  4176. log_info("============================= S_MAINTAIN(%x) ============================= ", gunIndex);
  4177. if (pSysInfo->FirmwareUpdate == YES) {
  4178. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4179. continue;
  4180. }
  4181. if (ShmDcCommonData->RoutineSettlement == TRUE) {
  4182. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4183. continue;
  4184. }
  4185. if (pDcChargingInfo->IsAvailable == NO )
  4186. break;
  4187. if (pSysWarning->Level != WARN_LV_ER) {
  4188. if (!DisplaySelfTestFailReason()) { //DS60-120 add
  4189. log_info("Soft reboot for retry self-tets. ");
  4190. sleep(3);
  4191. system("killall OcppBackend &");
  4192. KillAllTask();
  4193. system("/usr/bin/run_evse_restart.sh");
  4194. }
  4195. }
  4196. sleep(3);
  4197. if (pSysWarning->Level == WARN_LV_ER) { //DS60-120 add
  4198. KillTaskExceptPrimary();
  4199. } else {
  4200. KillTask();
  4201. }
  4202. if (pSysInfo->SelfTestSeq == _STEST_FAIL)
  4203. StopProcessingLoop();
  4204. }
  4205. /*
  4206. if (pDcChargingInfo->IsAvailable == TRUE) {
  4207. log_info("Gun[%d] set Available",gunIndex);
  4208. setChargerMode(gunIndex, MODE_IDLE);
  4209. break;
  4210. }
  4211. */
  4212. if (pSysInfo->CurGunSelected == gunIndex) {
  4213. StopSystemTimeoutDet();
  4214. StopGunInfoTimeoutDet(gunIndex);
  4215. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4216. }
  4217. break;
  4218. case S_UPDATE:
  4219. if (isModeChange(gunIndex)) {
  4220. log_info("============================= S_UPDATE ============================= ");
  4221. }
  4222. if (pSysInfo->FirmwareUpdate == YES) {
  4223. pSysInfo->SystemPage = _PAGE_MAINTAIN;
  4224. continue;
  4225. } else {
  4226. }
  4227. break;
  4228. }//switch
  4229. }//for
  4230. //if (pSysInfo->SystemPage != _LCM_VIEW)
  4231. //ChangeLcmByIndex(pSysInfo->SystemPage);
  4232. TryFeedWatchdog();
  4233. usleep(WHILE_LOOP_TIME);
  4234. }
  4235. return FAIL;
  4236. }