main.c 169 KB

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