main.c 201 KB

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