Module_PsuComm.c 244 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454
  1. #include "Module_PsuComm.h"
  2. #include "Config.h"
  3. #include "Common.h"
  4. #define DERATING_COUNT 30
  5. #define DERATING_GAP 30
  6. #define ELEMENT_NOT_FIND 255
  7. #define CHK_VOL_RANGE 50
  8. #define CHK_CUR_RANGE 10
  9. #define DERATING_RANGE 100
  10. #define ZERO_CURRENT 10 // 該值須保持最小為 1A
  11. #define ZERO_VOLTAGE 50
  12. #define STOP_CURRENT 30
  13. #define PSU_MAX_CUR 1000 // unit: 0.1A
  14. #define PSU_MIN_VOL 1000 // unit: 0.1V
  15. #define PRE_CHARG_STEP_CUR 30
  16. #define PRE_CHARG_RANGE 50
  17. #define PSU_TASK_CHECK_TIME 1
  18. #define PSU_COMM_CHECK_TIME 1
  19. #define GET_PSU_COUNT_INTERVAL 1 // unit: second
  20. #define GET_PSU_COUNT_TIME 13 // unit: second
  21. #define GET_PSU_LOCATION_INTERVAL 200 // unit: millisecond
  22. #define PSU_COUNT_CONFIRM_INTERVAL 200 // unit: millisecond
  23. #define PSU_COUNT_CONFIRM_TIME 1 // unit: second
  24. #define GET_PSU_VERSION_INTERVAL 200 // unit: millisecond
  25. #define GET_PSU_CAP_INTERVAL 200 // unit: millisecond
  26. #define GET_PSU_CAP_TIME 1 // unit: second
  27. #define STABLE_CURRENT_TOLERANCE 10 // unit: 0.1A, 1A
  28. #define MAX_STABLE_COUNT 24
  29. #define WAIT_EV_DERATING_TIMEOUT 5 // unit: second
  30. #define WAIT_SLAVE_POWER_OFF_TIMEOUT 5 // unit: second
  31. #define WAIT_PARALLEL_RELAY_DELAY 1 // unit: second
  32. #define WAIT_RELAY_CONFIRMED_TIME 3 // unit: second
  33. #define MAX_PREPARE_SWITCH_OFF_TIME 10 // unit: second
  34. #define MIN_POWER_OFF_TIME 1 // unit: second
  35. #define WAIT_SLAVE_TO_CHARGING 1 // unit: second
  36. #define WAIT_SLAVE_TIMEOUT 5 // unit: second
  37. #define WAIT_GRAB_TIME 15 // unit: second
  38. #define MAX_PSU_POWER_OFF_CURRENT 50 // unit: 0.1A, 5A
  39. #define MAX_PSU_POWER_OFF_VOLTAGE 100 // unit: 0.1A, 10V
  40. #define PRECHARGE_OFFSET_VOLTAGE 20 // unit: 0.1V, 2V
  41. #define PRECHARGE_RANGE_VOLTAGE 200 // unit: 0.1V, 10V
  42. #define WAIT_PRECHARGE_TIME 10 // unit: second
  43. #define EXTEND_CAPABILITY_DELAY 30 // unit: second
  44. #define EXTEND_AFTER_DERATING_DELAY 3 // unit: second
  45. #define EXTEND_LOADING 8000 // unit: 0.01%, 80%
  46. #define RELEASE_LOADING 5000 // unit: 0.01%, 50%
  47. #define RELEASE_LOADING_OFFSET 1000 // unit: 0.01%, 10%
  48. #define BALANCE_CURRENT_INTERVAL 100 // unit: 1ms, 100ms
  49. #define SMOOTH_DERATING_INTERVAL 100 // unit: 1ms, 100ms
  50. #define CURRENT_REACH_TARGET_TIME 5 // unit: 1s, 5s
  51. #define CURRENT_STABLE_TIME 10 // unit: 1s, 10s
  52. #define REACH_CURRENT_TOLERANCE 10 // unit: 0.1A, 1A
  53. #define MAX_ADJ_BALANCE_CURRENT 30 // unit: 0.1A, 3A
  54. #define START_BALANCE_CRITERIA 100 // unit: 0.01%, 1%
  55. #define STOP_BALANCE_CRITERIA 10 // unit: 0.01%, 0.1%
  56. #define EV_MAX_CURRENT_DELAY 60 // unit: second
  57. #define EV_MAX_STAGE_CURRENT_DELAY 30 // unit: second
  58. #define WAIT_SLAVE_READY_TIME 15 // unit: second
  59. #define WAIT_SLAVE_DELAY 1 // unit: second
  60. #define SHOW_OUTPUT_DELAY 1
  61. #define CURRENT_BALANCE_CRITERIA 400 // unit: 0.1A, 40A
  62. #define SAFETY_PRECHARGE_OFFSET 200 // unit: 0.1V, 20V
  63. #define CHARGING_DELAY_INTERVAL 200 // unit: 1ms, 400ms
  64. #define MAX_CHARGING_DELAY_COUNT 15
  65. #define VOLTAGE_RESUME_STEP 10 // unit: 0.1V, 1V
  66. #define POWER_ONOFF_RESEND_INTERVAL 1 // unit: 1s, 1s
  67. #define COMM_LOST_CRITICAL 0
  68. #define LOST_CNT_CRITICAL 10
  69. #define PSU_CLEAN_ERR_INTERVAL 3 // unit: 1s, 3s
  70. #if SAFETY_TEST_ENABLE
  71. #define PRECHARGE_OFFSET 1 // 0: normal output, 1: precharge voltage offset enable
  72. #define ONE_MODULE_OUTPUT 1 // 0: normal output, 1: only one module output enable
  73. #define MASTER_OUTPUT_FIRST 0 // 0: normal output, 1: master output first enable
  74. #else
  75. #define PRECHARGE_OFFSET 0 // 0: normal output, 1: precharge voltage offset enable
  76. #define ONE_MODULE_OUTPUT 0 // 0: normal output, 1: only one module output enable
  77. #define MASTER_OUTPUT_FIRST 0 // 0: normal output, 1: master output first enable
  78. #endif
  79. #define MIN_RELEASE_POWER 30 // unit: 1kw
  80. #define MAX_DIFF_POWER_TO_DERATING 5 // unit: 1kw
  81. #define MAX_DIFF_POWER_TO_EXTEND 3 // unit: 1kw
  82. #define MIN_DIFF_PHYSICAL_POWER 3 // unit: 1kw
  83. #define PSU_DEBUG_MSG 0
  84. #define ENABLE_SMOOTH_DERATING 1
  85. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  86. struct StatusCodeData *ShmStatusCodeData;
  87. struct PsuData *ShmPsuData;
  88. ChargerInfoData *ShmChargerInfo;
  89. PsuPositionInfoData *ShmPsuPosition;
  90. PsuGroupingInfoData *ShmPsuGrouping;
  91. bool libInitialize = false;
  92. byte _gunCount = 0;
  93. byte _maxGroupCount = 0;
  94. byte getAvailableCapOffset = 5;
  95. byte deratingKeepCount = 0;
  96. byte psuCmdSeq = _PSU_CMD_CAP;
  97. bool psuReceiveRecovery = false;
  98. bool isCommStart = false;
  99. int lostCnt = 0;
  100. bool _isTriggerShutdown = false;
  101. bool _isShutdownCompleted = false;
  102. pid_t _RxPsuPid = 0;
  103. unsigned short evseOutVol[CONNECTOR_QUANTITY] = {0, 0, 0, 0};
  104. unsigned short evseOutCur[CONNECTOR_QUANTITY] = {0, 0, 0, 0};
  105. unsigned short evseOutputDelay[CONNECTOR_QUANTITY] = {0, 0, 0, 0};
  106. struct timespec _PsuReceiveRecoveryCheck_time;
  107. struct timespec _PsuWorkStep_time;
  108. struct timespec _cmdSubPriority_time;
  109. struct timespec _PsuGroupRole_time[CONNECTOR_QUANTITY];
  110. struct timespec _ChargingRequest_time[CONNECTOR_QUANTITY];
  111. struct timespec _PsuGroupDerating_time[CONNECTOR_QUANTITY];
  112. struct timespec _StopCharging_time[CONNECTOR_QUANTITY];
  113. struct timespec _ExtendCapability_time[CONNECTOR_QUANTITY];
  114. struct timespec _ReachCurrent_time[CONNECTOR_QUANTITY];
  115. struct timespec _BalanceCurrent_time[CONNECTOR_QUANTITY];
  116. struct timespec _MaxCurrent_time[CONNECTOR_QUANTITY];
  117. struct timespec _StageCurrent_time[CONNECTOR_QUANTITY];
  118. struct timespec _CheckSlaveReady_time[CONNECTOR_QUANTITY];
  119. struct timespec _ChargingDelay_time[CONNECTOR_QUANTITY];
  120. struct timespec _PoweOnOff_time[CONNECTOR_QUANTITY];
  121. struct timespec _PsuCommCheck_time;
  122. struct timespec _SmoothDerating_time[CONNECTOR_QUANTITY];
  123. struct timespec _CleanPsuAlarm_time[CONNECTOR_QUANTITY];
  124. unsigned short GCTargetVoltage[CONNECTOR_QUANTITY];
  125. unsigned short GCTargetCurrent[CONNECTOR_QUANTITY];
  126. unsigned short StableOutputCurrent[CONNECTOR_QUANTITY];
  127. unsigned short MaxCurrentDemand[CONNECTOR_QUANTITY];
  128. unsigned short StageMaxCurrent[CONNECTOR_QUANTITY];
  129. GroupOutputConfigInfo PreGroupOutput[MAX_GROUP_QUANTITY];
  130. unsigned char OutputConfigStep[MAX_GROUP_QUANTITY];
  131. unsigned char _preOutputConfigStep[MAX_GROUP_QUANTITY];
  132. unsigned char _GfdStep[MAX_GROUP_QUANTITY];
  133. unsigned char _VoltageResumeCnt[MAX_GROUP_QUANTITY];
  134. unsigned char _GunIndexOfPrioritySequence[MAX_GROUP_QUANTITY];
  135. PsuStatusInfo _LocalPsuStatus[MAX_PSU_MODULE_QUANTITY];
  136. int GetPsuModuleQuantity(unsigned char group);
  137. //=================================
  138. // Common routine
  139. //=================================
  140. bool Is_OutputK1K2_Ready(int gunIndex)
  141. {
  142. bool ready = false;
  143. if(gunIndex < CONNECTOR_QUANTITY)
  144. {
  145. if(chargingInfo[gunIndex]->RelayK1K2Status || ShmChargerInfo->Control.TestCtrl.bits.ChargingSimulation)
  146. {
  147. ready = true;
  148. }
  149. }
  150. return ready;
  151. }
  152. // default is return enable
  153. bool Is_EnableReleaseAndExtendWhenForceCharging(int gunIndex)
  154. {
  155. if(ShmChargerInfo->Control.FCharging[gunIndex].FCtrl.bits.EnableForceCharging)
  156. {
  157. return ShmChargerInfo->Control.FCharging[gunIndex].FCtrl.bits.EnableReleaseAndExtend;
  158. }
  159. return true;
  160. }
  161. // return psu group number
  162. // return -1 when out of TotalPsuQuantity
  163. int FindTargetGroup(byte address)
  164. {
  165. return address < ShmPsuPosition->TotalPsuQuantity ? ShmPsuPosition->PsuAddressInfo[address].GroupNo : -1;
  166. }
  167. // return psu index in the group
  168. // return -1 when out of TotalPsuQuantity
  169. int FindGroupIndex(byte address)
  170. {
  171. return address < ShmPsuPosition->TotalPsuQuantity ? ShmPsuPosition->PsuAddressInfo[address].GIndex : -1;
  172. }
  173. int FindPsuIndex(byte group, byte gIndex)
  174. {
  175. int psuIndex = 0;
  176. for(int i = 0; i < _maxGroupCount; i++)
  177. {
  178. if(i < group)
  179. {
  180. psuIndex += ShmChargerInfo->Control.PsuInitQuantity[i];
  181. }
  182. else
  183. {
  184. break;
  185. }
  186. }
  187. psuIndex += gIndex;
  188. return psuIndex;
  189. }
  190. void PsuGroupOnOff(byte group, byte on_off)
  191. {
  192. if(on_off == _PSU_ON)
  193. {
  194. SwitchPower_On(group);
  195. }
  196. else
  197. {
  198. SwitchPower_Off(group);
  199. }
  200. }
  201. void PsuSingleOnOff(byte address, byte on_off)
  202. {
  203. if(on_off == _PSU_ON)
  204. {
  205. SinglePsuPower_On(address);
  206. }
  207. else
  208. {
  209. SinglePsuPower_Off(address);
  210. }
  211. }
  212. void LedGroupOnOff(byte group, byte on_off)
  213. {
  214. if(on_off == _PSU_ON)
  215. {
  216. FlashLed_Blinking(group);
  217. }
  218. else
  219. {
  220. FlashLed_Static(group);
  221. }
  222. }
  223. void LedSingleOnOff(byte address, byte on_off)
  224. {
  225. if(on_off == _PSU_ON)
  226. {
  227. SingleFlashLed_Blinking(address);
  228. }
  229. else
  230. {
  231. SingleFlashLed_Static(address);
  232. }
  233. }
  234. //=================================
  235. // Save data to share memory Function
  236. //=================================
  237. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  238. {
  239. if(GENERAL_GUN_QUANTITY > 0 && target < GENERAL_GUN_QUANTITY)
  240. {
  241. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ConnectorInfo[target].GeneralChargingData;
  242. return true;
  243. }
  244. return false;
  245. }
  246. //=================================
  247. // Alarm code mapping to share memory Function
  248. //=================================
  249. // 檢查 Byte 中某個 Bit 的值
  250. // _byte : 欲改變的 byte
  251. // _bit : 該 byte 的第幾個 bit
  252. unsigned char mask_table[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
  253. unsigned char DetectBitValue(unsigned char _byte, unsigned char _bit)
  254. {
  255. return ( _byte & mask_table[_bit] ) != 0x00;
  256. }
  257. void AbnormalStopAnalysis(byte gun_index, int errCode)
  258. {
  259. for (char i = 0; i < 4; i++)
  260. {
  261. unsigned char byteIndex = (errCode >> (8 * i)) & 0xff;
  262. for (char bitIndex = 0; bitIndex < 8; bitIndex++)
  263. {
  264. if(DetectBitValue(byteIndex , bitIndex) == 1)
  265. {
  266. switch(i)
  267. {
  268. case 0:
  269. {
  270. // err 1
  271. if (bitIndex == 2)
  272. {
  273. // 012307
  274. // fuse burn-out
  275. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFuseBurnOut = YES;
  276. }
  277. else if (bitIndex == 3)
  278. {
  279. // 012308
  280. // Communication fault between PFC and DCDC
  281. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPfcAndDcdcCommFault = YES;
  282. }
  283. else if (bitIndex == 6)
  284. {
  285. // 012309
  286. // Unbalance positive and negative BUS voltage
  287. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusVoltageUnbalance = YES;
  288. }
  289. else if (bitIndex == 7)
  290. {
  291. // 012310
  292. // BUS over voltage
  293. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusOverVoltage = YES;
  294. }
  295. }
  296. break;
  297. case 1:
  298. {
  299. // err 2
  300. if (bitIndex == 0)
  301. {
  302. // 012311
  303. // BUS voltage abnormal
  304. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusVoltageAbnormal = YES;
  305. }
  306. else if (bitIndex == 1)
  307. {
  308. // 012270
  309. // Over voltage of any phase
  310. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = YES;
  311. }
  312. else if (bitIndex == 2)
  313. {
  314. // 012263
  315. // ID number repetition
  316. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = YES;
  317. }
  318. else if (bitIndex == 3)
  319. {
  320. // 012312
  321. // BUS under voltage
  322. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusUnderVoltage = YES;
  323. }
  324. else if (bitIndex == 4)
  325. {
  326. // 012313
  327. // Phase loss
  328. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputPhaseLoss = YES;
  329. }
  330. else if (bitIndex == 6)
  331. {
  332. // 012271
  333. // Under voltage of any phase
  334. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = NO;
  335. }
  336. }
  337. break;
  338. case 2:
  339. {
  340. // err3
  341. if (bitIndex == 0)
  342. {
  343. // 012240
  344. // CAN communication fault
  345. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCommunicationFail = YES;
  346. }
  347. else if (bitIndex == 1)
  348. {
  349. // 012275
  350. // DCDC uneven current sharing
  351. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuSevereUnevenCurrent = YES;
  352. }
  353. else if (bitIndex == 3)
  354. {
  355. // 012278
  356. // PFC power off
  357. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFfcSideShutDown = YES;
  358. }
  359. else if (bitIndex == 5)
  360. {
  361. // 012314
  362. // Full speed of fan
  363. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFullSpeed = YES;
  364. }
  365. else if (bitIndex == 6)
  366. {
  367. // 012266
  368. // DCDC power off
  369. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = YES;
  370. }
  371. else if (bitIndex == 7)
  372. {
  373. // 012273
  374. // Module unders power limiting status
  375. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPowerLimitedState = YES;
  376. }
  377. }
  378. break;
  379. case 3:
  380. {
  381. // err 4
  382. if (bitIndex == 0)
  383. {
  384. // 012315
  385. // Temperature power limiting
  386. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuTemperaturePowerLimit = YES;
  387. }
  388. else if (bitIndex == 1)
  389. {
  390. // 012316
  391. // AC power limiting
  392. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuAcPowerLimit = YES;
  393. }
  394. else if (bitIndex == 2)
  395. {
  396. // 012317
  397. // DCDC eeprom faults
  398. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcdcEepromFault = YES;
  399. }
  400. else if (bitIndex == 3)
  401. {
  402. // 012269
  403. // Fan faults
  404. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = YES;
  405. }
  406. else if (bitIndex == 4)
  407. {
  408. // 012264
  409. // DCDC short circuit
  410. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = YES;
  411. }
  412. else if (bitIndex == 5)
  413. {
  414. // 012318
  415. // PFC eeprom faults
  416. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPfcEepromFault = YES;
  417. }
  418. else if (bitIndex == 6)
  419. {
  420. // 012226
  421. // DCDC over temperature
  422. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = YES;
  423. }
  424. else if (bitIndex == 7)
  425. {
  426. // 012319
  427. // DCDC output over voltage
  428. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcdcOverVoltage = YES;
  429. }
  430. }
  431. break;
  432. }
  433. }
  434. // else
  435. // {
  436. // switch (byteIndex) {
  437. // case 0: {
  438. // if (bitIndex == 0)
  439. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = NO;
  440. // else if (bitIndex == 5)
  441. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  442. // }
  443. // break;
  444. // case 1: {
  445. // if (bitIndex == 1)
  446. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = NO;
  447. // else if (bitIndex == 2)
  448. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuProtectionAlarm = NO;
  449. // else if (bitIndex == 3)
  450. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = NO;
  451. // else if (bitIndex == 4)
  452. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = NO;
  453. // else if (bitIndex == 5)
  454. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  455. // }
  456. // break;
  457. // case 2: {
  458. // if (bitIndex == 1)
  459. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = NO;
  460. // if (bitIndex == 2)
  461. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseOnputImbalance = NO;
  462. // else if (bitIndex == 3)
  463. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  464. // else if (bitIndex == 4)
  465. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuThreePhaseInputInadequate = NO;
  466. // else if (bitIndex == 5)
  467. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = NO;
  468. // else if (bitIndex == 6)
  469. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = NO;
  470. // }
  471. // break;
  472. // }
  473. // }
  474. }
  475. }
  476. }
  477. //=================================
  478. // Callback Function
  479. //=================================
  480. // 0x04: PSU_RCmd_ModuleStatus
  481. void GetGroupCallback(byte group, byte psu_index, unsigned short full_address)
  482. {
  483. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  484. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  485. {
  486. return;
  487. }
  488. if(group >= _maxGroupCount || psu_index >= MAX_PSU_MODULE_QUANTITY)
  489. {
  490. return;
  491. }
  492. ShmPsuPosition->PsuAddressInfo[psu_index].Full_Address = full_address;
  493. ShmPsuPosition->PsuAddressInfo[psu_index].GroupNo = group;
  494. if(!ShmPsuPosition->PsuAddressInfo[psu_index].CheckIn)
  495. {
  496. ShmPsuPosition->PsuAddressInfo[psu_index].CheckIn = true;
  497. ShmPsuPosition->TotalPsuQuantity++;
  498. //LOG_INFO("SN = %d At Group %02X", SN, group);
  499. }
  500. if(ShmPsuPosition->TotalPsuQuantity == ShmPsuData->SystemInitialPsuQuantity)
  501. {
  502. byte groupNo = 0, quantity = 0;
  503. if(!ShmPsuPosition->PsuLocationInit)
  504. {
  505. memset(ShmPsuPosition->GroupLocationInfo, 0x00, sizeof(ShmPsuPosition->GroupLocationInfo));
  506. for(int i = 0; i < MAX_PSU_MODULE_QUANTITY; i++)
  507. {
  508. if(ShmPsuPosition->PsuAddressInfo[i].CheckIn)
  509. {
  510. groupNo = ShmPsuPosition->PsuAddressInfo[i].GroupNo;
  511. quantity = ShmPsuPosition->GroupLocationInfo[groupNo].GroupPsuQuantity;
  512. ShmPsuPosition->PsuAddressInfo[i].GIndex = quantity;
  513. ShmPsuPosition->GroupLocationInfo[groupNo].PsuIndex[quantity] = i;
  514. ShmPsuPosition->GroupLocationInfo[groupNo].GroupPsuQuantity++;
  515. //LOG_INFO("Psu %d Assign To Group %02X At %d", index, group, ShmPsuPosition->PsuAddressInfo[index].GIndex);
  516. }
  517. }
  518. bool match = true;
  519. for(int i = 0; i < _maxGroupCount; i++)
  520. {
  521. if(ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity != ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity)
  522. {
  523. match = false;
  524. }
  525. }
  526. if(match)
  527. {
  528. ShmPsuPosition->PsuLocationInit = true;
  529. }
  530. else
  531. {
  532. // try to re-initial psu location
  533. ShmPsuPosition->ReInitPsuLocation = true;
  534. }
  535. }
  536. }
  537. }
  538. // 0x04: PSU_RCmd_ModuleStatus_alarm_flag
  539. void GetAlarmFlagCallback(byte address, unsigned int alarm1, unsigned int alarm2)
  540. {
  541. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  542. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  543. {
  544. return;
  545. }
  546. int group = FindTargetGroup(address);
  547. int gIndex = FindGroupIndex(address);
  548. if(group < 0 || gIndex < 0)
  549. {
  550. return;
  551. }
  552. if(ShmPsuPosition->PsuLocationInit)
  553. {
  554. }
  555. }
  556. void UpdatePsuGroupAlarmStatus(byte group)
  557. {
  558. int psu_index = 0;
  559. unsigned int status_or = 0, status_and = 0xFFFFFFFF;
  560. if(ShmPsuPosition->GroupLocationInfo[group].GroupPsuQuantity > 0)
  561. {
  562. for(int i = 0; i < ShmPsuPosition->GroupLocationInfo[group].GroupPsuQuantity; i++)
  563. {
  564. psu_index = ShmPsuPosition->GroupLocationInfo[group].PsuIndex[i];
  565. status_or |= ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal;
  566. status_and &= ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal;
  567. }
  568. ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR[group].StatusVal = status_or;
  569. ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND[group].StatusVal = status_and;
  570. }
  571. else
  572. {
  573. ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR[group].StatusVal = 0;
  574. ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND[group].StatusVal = 0;
  575. }
  576. }
  577. // 0x04: PSU_RCmd_ModuleStatus_alarm_status
  578. void GetAlarmStatusCallback(byte address, unsigned int status)
  579. {
  580. bool _update = false;
  581. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  582. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  583. {
  584. return;
  585. }
  586. int group = FindTargetGroup(address);
  587. int gIndex = FindGroupIndex(address);
  588. if(group < 0 || gIndex < 0)
  589. {
  590. return;
  591. }
  592. if(ShmPsuPosition->PsuLocationInit)
  593. {
  594. if(ShmPsuPosition->SinglePsuStatus[address].StatusVal != status)
  595. {
  596. _update = true;
  597. }
  598. ShmPsuPosition->SinglePsuStatus[address].StatusVal = status;
  599. if(_update)
  600. {
  601. UpdatePsuGroupAlarmStatus(group);
  602. }
  603. }
  604. }
  605. void GetInfyPwrAlarmFlagCallback(byte address, byte state_2, byte state_1, byte state_0)
  606. {
  607. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  608. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  609. {
  610. return;
  611. }
  612. int group = FindTargetGroup(address);
  613. int gIndex = FindGroupIndex(address);
  614. if(group < 0 || gIndex < 0)
  615. {
  616. return;
  617. }
  618. if(ShmPsuPosition->PsuLocationInit)
  619. {
  620. }
  621. }
  622. void GetPhPwrAlarmFlagCallback(byte address, unsigned int status, unsigned int alarm_1, unsigned int alarm_0)
  623. {
  624. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  625. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  626. {
  627. return;
  628. }
  629. int group = FindTargetGroup(address);
  630. int gIndex = FindGroupIndex(address);
  631. if(group < 0 || gIndex < 0)
  632. {
  633. return;
  634. }
  635. if(ShmPsuPosition->PsuLocationInit)
  636. {
  637. GetAlarmStatusCallback(address, status);
  638. }
  639. }
  640. // 0x04: PSU_RCmd_ModuleStatus_ambient
  641. void GetAmbientCallback(byte address, byte temp)
  642. {
  643. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  644. if(ShmPsuData->Work_Step < Get_PSU_LOCATION)
  645. {
  646. return;
  647. }
  648. int group = FindTargetGroup(address);
  649. int gIndex = FindGroupIndex(address);
  650. if(group < 0 || gIndex < 0)
  651. {
  652. return;
  653. }
  654. if(ShmPsuPosition->PsuLocationInit)
  655. {
  656. ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp1 = temp;
  657. }
  658. }
  659. // 0x02: PSU_RCmd_SysModuleCount
  660. void GetModuleCountCallback(byte group, byte count, bool summation)
  661. {
  662. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  663. if(group < _maxGroupCount)
  664. {
  665. ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity = count;
  666. }
  667. if(summation)
  668. {
  669. int total = 0;
  670. for(int i = 0; i < _maxGroupCount; i++)
  671. {
  672. total += ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity;
  673. }
  674. if(ShmPsuData->Work_Step == GET_PSU_COUNT)
  675. {
  676. ShmPsuData->SystemInitialPsuQuantity = total;
  677. }
  678. ShmPsuData->SystemPresentPsuQuantity = total;
  679. }
  680. }
  681. // 0x02: PSU_RCmd_SysModuleCount_SystemPresentPsuQuantity
  682. void GetSysModuleCountCallback(byte group, byte count)
  683. {
  684. if(ShmPsuData->Work_Step == GET_PSU_COUNT)
  685. {
  686. ShmPsuData->SystemInitialPsuQuantity = count;
  687. }
  688. ShmPsuData->SystemPresentPsuQuantity = count;
  689. }
  690. void UpdateGunAvailableCapability(unsigned char group)
  691. {
  692. int _availableCurrent = 0, _availablePower = 0, _realPower = 0;
  693. unsigned char master = 0;
  694. master = ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup;
  695. // calculate output group capability
  696. if(master == 0)
  697. {
  698. chargingInfo[group]->AvailableChargingCurrent = ShmPsuData->PsuGroup[group].GroupAvailableCurrent;
  699. chargingInfo[group]->AvailableChargingPower = ShmPsuData->PsuGroup[group].GroupAvailablePower;
  700. chargingInfo[group]->RealRatingPower = ShmPsuData->PsuGroup[group].GroupRealOutputPower * 10;
  701. }
  702. else
  703. {
  704. if(ShmPsuGrouping->GroupCollection[master - 1].Role == _GROLE_MASTER)
  705. {
  706. _availableCurrent = ShmPsuData->PsuGroup[master - 1].GroupAvailableCurrent;
  707. _availablePower = ShmPsuData->PsuGroup[master - 1].GroupAvailablePower;
  708. _realPower = ShmPsuData->PsuGroup[master - 1].GroupRealOutputPower * 10;
  709. for(byte i = 0; i < ShmPsuGrouping->GroupCollection[master - 1].Partner.Quantity; i++)
  710. {
  711. byte slave = ShmPsuGrouping->GroupCollection[master - 1].Partner.Member[i];
  712. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE ||
  713. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF)
  714. {
  715. _availableCurrent += ShmPsuData->PsuGroup[slave].GroupAvailableCurrent;
  716. _availablePower += ShmPsuData->PsuGroup[slave].GroupAvailablePower;
  717. _realPower += ShmPsuData->PsuGroup[slave].GroupRealOutputPower * 10;
  718. }
  719. }
  720. if(ShmPsuGrouping->GroupCollection[master - 1].GroupCtrl.bits.DeratingConfirmed)
  721. {
  722. chargingInfo[master - 1]->AvailableChargingCurrent = ShmPsuGrouping->GroupCollection[master - 1].ReAssignAvailableCurrent;
  723. }
  724. else
  725. {
  726. chargingInfo[master - 1]->AvailableChargingCurrent = _availableCurrent;
  727. }
  728. chargingInfo[master - 1]->AvailableChargingPower = _availablePower;
  729. chargingInfo[master - 1]->RealRatingPower = _realPower;
  730. // if((master - 1) != group)
  731. // {
  732. // chargingInfo[group]->AvailableChargingCurrent = 0;;
  733. // chargingInfo[group]->AvailableChargingPower = 0;
  734. // chargingInfo[group]->RealRatingPower = 0;
  735. // }
  736. }
  737. }
  738. }
  739. void UpdateSystemAvailable(void)
  740. {
  741. int _sysCurrent = 0, _sysPower = 0;
  742. // summation of system current & power
  743. for(byte i = 0; i < _maxGroupCount; i++)
  744. {
  745. _sysCurrent += ShmPsuData->PsuGroup[i].GroupAvailableCurrent;
  746. _sysPower += ShmPsuData->PsuGroup[i].GroupAvailablePower;
  747. }
  748. ShmPsuData->SystemAvailableCurrent = _sysCurrent;
  749. ShmPsuData->SystemAvailablePower = _sysPower;
  750. }
  751. // maxVol, minVol unit: 0.1V
  752. // maxCur unit: 0.1A
  753. // totalPow unit: 0.1kW
  754. // 0x0A: PSU_RCmd_ModuleCapability
  755. void GetAvailableCapCallback(byte address, short maxVol, short minVol, short maxCur, short totalPow)
  756. {
  757. int _groupCurrent = 0, _groupPower = 0;
  758. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  759. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  760. !ShmPsuPosition->PsuLocationInit)
  761. {
  762. return;
  763. }
  764. byte master = 0;
  765. int group = FindTargetGroup(address);
  766. int gIndex = FindGroupIndex(address);
  767. if(group < 0 || gIndex < 0)
  768. {
  769. return;
  770. }
  771. // calculate psu module available power
  772. ShmPsuData->PsuGroup[group].PsuModule[gIndex].AvailablePower = totalPow;
  773. //if(ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage >= PSU_MIN_VOL)
  774. if(ShmPsuGrouping->GroupOutput[group].GTargetVoltage >= PSU_MIN_VOL)
  775. {
  776. ShmPsuData->PsuGroup[group].PsuModule[gIndex].AvailableCurrent =
  777. ((ShmPsuData->PsuGroup[group].PsuModule[gIndex].AvailablePower * 100) * 10) / (ShmPsuGrouping->GroupOutput[group].GTargetVoltage / 10);
  778. }
  779. else
  780. {
  781. ShmPsuData->PsuGroup[group].PsuModule[gIndex].AvailableCurrent = maxCur > PSU_MAX_CUR ? PSU_MAX_CUR : maxCur;
  782. }
  783. // summation of psu group current & power
  784. for(byte i = 0; i < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; i++)
  785. {
  786. _groupCurrent += ShmPsuData->PsuGroup[group].PsuModule[i].AvailableCurrent;
  787. _groupPower += ShmPsuData->PsuGroup[group].PsuModule[i].AvailablePower;
  788. }
  789. if(ShmPsuData->PsuGroup[group].StableIAvailableCurrent != 0)
  790. {
  791. ShmPsuData->PsuGroup[group].GroupAvailableCurrent = ShmPsuData->PsuGroup[group].StableIAvailableCurrent;
  792. }
  793. else
  794. {
  795. if(ShmPsuData->PsuGroup[group].GroupRealOutputPower != 0 &&
  796. ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage >= PSU_MIN_VOL)
  797. {
  798. ShmPsuData->PsuGroup[group].GroupAvailableCurrent = ((ShmPsuData->PsuGroup[group].GroupRealOutputPower * 1000) * 10) / (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10);
  799. }
  800. else
  801. {
  802. ShmPsuData->PsuGroup[group].GroupAvailableCurrent = _groupCurrent;
  803. }
  804. }
  805. ShmPsuData->PsuGroup[group].GroupAvailablePower = _groupPower;
  806. // update MaximumChargingVoltage
  807. master = ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup;
  808. if(master == 0)
  809. {
  810. chargingInfo[group]->MaximumChargingVoltage = maxVol;
  811. }
  812. else
  813. {
  814. if(ShmPsuGrouping->GroupCollection[master - 1].Role == _GROLE_MASTER)
  815. {
  816. chargingInfo[master - 1]->MaximumChargingVoltage = maxVol;
  817. // if((master - 1) != group)
  818. // {
  819. // chargingInfo[group]->MaximumChargingVoltage = 0;
  820. // }
  821. }
  822. }
  823. UpdateGunAvailableCapability(group);
  824. UpdateSystemAvailable();
  825. //LOG_INFO("address = %d, maxVol = %d, minVol = %d, maxCur = %d, totalPow = %d", address, maxVol, minVol, maxCur, totalPow);
  826. }
  827. // 0x07: PSU_RCmd_ModuleVersion
  828. void GetFwCallback(byte address, short dcSwVer, short pfcSwVer, short hwVer)
  829. {
  830. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  831. if (ShmPsuData->Work_Step != Get_PSU_VERSION || address >= ShmPsuData->SystemInitialPsuQuantity ||
  832. !ShmPsuPosition->PsuLocationInit)
  833. {
  834. return;
  835. }
  836. int group = FindTargetGroup(address);
  837. int gIndex = FindGroupIndex(address);
  838. if(group < 0 || gIndex < 0)
  839. {
  840. return;
  841. }
  842. sprintf((char *)ShmPsuData->PsuVersion[address].FwPrimaryVersion, "DC %d.%02d", (dcSwVer & 0xFF00) >> 8, dcSwVer & 0xFF);
  843. sprintf((char *)ShmPsuData->PsuVersion[address].FwSecondVersion, "PFC %d.%02d", (pfcSwVer & 0xFF00) >> 8, pfcSwVer & 0xFF);
  844. sprintf((char *)ShmPsuData->PsuGroup[group].PsuModule[gIndex].FwVersion, "DC %d.%02d", (dcSwVer & 0xFF00) >> 8, dcSwVer & 0xFF);
  845. //LOG_INFO("Psu %d %s %s", address, ShmPsuData->PsuVersion[address].FwPrimaryVersion, ShmPsuData->PsuVersion[address].FwSecondVersion);
  846. }
  847. // 0x07: PSU_RCmd_ModuleVersion_dc
  848. void GetDcFwCallback(byte address, char *dcSwVer)
  849. {
  850. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  851. if (ShmPsuData->Work_Step != Get_PSU_VERSION || address >= ShmPsuData->SystemInitialPsuQuantity ||
  852. !ShmPsuPosition->PsuLocationInit)
  853. {
  854. return;
  855. }
  856. int group = FindTargetGroup(address);
  857. int gIndex = FindGroupIndex(address);
  858. if(group < 0 || gIndex < 0)
  859. {
  860. return;
  861. }
  862. strcpy((char *)ShmPsuData->PsuVersion[address].FwPrimaryVersion, dcSwVer);
  863. strcpy((char *)ShmPsuData->PsuGroup[group].PsuModule[gIndex].FwVersion, dcSwVer);
  864. }
  865. // 0x07: PSU_RCmd_ModuleVersion_pfc
  866. void GetPfcFwCallback(byte address, char *pfcSwVer)
  867. {
  868. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  869. if (ShmPsuData->Work_Step != Get_PSU_VERSION || address >= ShmPsuData->SystemInitialPsuQuantity ||
  870. !ShmPsuPosition->PsuLocationInit)
  871. {
  872. return;
  873. }
  874. int group = FindTargetGroup(address);
  875. int gIndex = FindGroupIndex(address);
  876. if(group < 0 || gIndex < 0)
  877. {
  878. return;
  879. }
  880. strcpy((char *)ShmPsuData->PsuVersion[address].FwSecondVersion, pfcSwVer);
  881. }
  882. // no using -- GetInputVoltageCallback
  883. void GetInputVoltageCallback(byte address, unsigned short vol1, unsigned short vol2, unsigned short vol3)
  884. {
  885. }
  886. // no using -- GetInputVoltageCallback End
  887. // no using -- GetPresentOutputCallback
  888. void GetPresentOutputCallback(byte group, unsigned short outVol, unsigned short outCur)
  889. {
  890. }
  891. // no using -- GetPresentOutputCallback End
  892. // type 1: FAN_SPEED_CMD
  893. // type 2: TEMP_DC_CMD
  894. // type 3: TEMP_PFC_CMD
  895. // 0x0E: PSU_RCmd_ModuleMiscInfo
  896. void GetMisCallback(byte address, unsigned int value, byte type)
  897. {
  898. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  899. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  900. !ShmPsuPosition->PsuLocationInit)
  901. {
  902. return;
  903. }
  904. int group = FindTargetGroup(address);
  905. int gIndex = FindGroupIndex(address);
  906. if(group < 0 || gIndex < 0)
  907. {
  908. return;
  909. }
  910. if (type == 1)
  911. {
  912. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_1 = value;
  913. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_2 = value;
  914. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_3 = value;
  915. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_4 = value;
  916. }
  917. else if (type == 2)
  918. {
  919. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp1 = value;
  920. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp2 = value;
  921. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp3 = value;
  922. ShmPsuData->PsuGroup[group].PsuModule[gIndex].ExletTemp = value;
  923. }
  924. else if (type == 3)
  925. {
  926. //printf("PFC - group = %d, index = %d, value = %d \n", group, address, value);
  927. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InletTemp = value;
  928. }
  929. }
  930. // 0x0E: PSU_RCmd_ModuleMiscInfo_FanSpeed
  931. void GetFanSpeedCallback(byte address, unsigned int speed)
  932. {
  933. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  934. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  935. !ShmPsuPosition->PsuLocationInit)
  936. {
  937. return;
  938. }
  939. int group = FindTargetGroup(address);
  940. int gIndex = FindGroupIndex(address);
  941. if(group < 0 || gIndex < 0)
  942. {
  943. return;
  944. }
  945. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_1 = speed;
  946. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_2 = speed;
  947. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_3 = speed;
  948. ShmPsuData->PsuGroup[group].PsuModule[gIndex].FanSpeed_4 = speed;
  949. }
  950. // 0x0E: PSU_RCmd_ModuleMiscInfo_InletTemp
  951. void GetInletTempCallback(byte address, char temp)
  952. {
  953. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  954. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  955. !ShmPsuPosition->PsuLocationInit)
  956. {
  957. return;
  958. }
  959. int group = FindTargetGroup(address);
  960. int gIndex = FindGroupIndex(address);
  961. if(group < 0 || gIndex < 0)
  962. {
  963. return;
  964. }
  965. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InletTemp = temp;
  966. }
  967. // 0x0E: PSU_RCmd_ModuleMiscInfo_ExletTemp
  968. void GetExletTempCallback(byte address, char temp)
  969. {
  970. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  971. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  972. !ShmPsuPosition->PsuLocationInit)
  973. {
  974. return;
  975. }
  976. int group = FindTargetGroup(address);
  977. int gIndex = FindGroupIndex(address);
  978. if(group < 0 || gIndex < 0)
  979. {
  980. return;
  981. }
  982. ShmPsuData->PsuGroup[group].PsuModule[gIndex].ExletTemp = temp;
  983. }
  984. // 0x0E: PSU_RCmd_ModuleMiscInfo_OutletTemp
  985. void GetOutletTempCallback(byte address, char temp)
  986. {
  987. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  988. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  989. !ShmPsuPosition->PsuLocationInit)
  990. {
  991. return;
  992. }
  993. int group = FindTargetGroup(address);
  994. int gIndex = FindGroupIndex(address);
  995. if(group < 0 || gIndex < 0)
  996. {
  997. return;
  998. }
  999. ShmPsuData->PsuGroup[group].PsuModule[gIndex].OutletTemp = temp;
  1000. }
  1001. // temp1: dd in 1
  1002. // temp2: dd in 2
  1003. // temp3: dd out 1
  1004. // temp4: dd out 2
  1005. // 0x0E: PSU_RCmd_ModuleMiscInfo_OtherTemp
  1006. void GetOtherTempCallback(byte address, char temp1, char temp2, char temp3, char temp4)
  1007. {
  1008. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1009. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  1010. !ShmPsuPosition->PsuLocationInit)
  1011. {
  1012. return;
  1013. }
  1014. int group = FindTargetGroup(address);
  1015. int gIndex = FindGroupIndex(address);
  1016. if(group < 0 || gIndex < 0)
  1017. {
  1018. return;
  1019. }
  1020. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InletTemp_1 = temp1;
  1021. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InletTemp_2 = temp2;
  1022. ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp2 = temp3;
  1023. ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp3 = temp4;
  1024. }
  1025. // Iavail unit: 0.1A
  1026. // Vext unit: 0.1V
  1027. // 0x0C: PSU_RCmd_ModuleIAvailable
  1028. // 0x02CCF0XX
  1029. void GetIavailableCallback(byte address, unsigned short Iavail, unsigned short Vext)
  1030. {
  1031. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1032. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  1033. !ShmPsuPosition->PsuLocationInit)
  1034. {
  1035. return;
  1036. }
  1037. byte master = 0;
  1038. unsigned short diffIAvailable = 0;
  1039. int totalCurrent = 0;
  1040. int group = FindTargetGroup(address);
  1041. int gIndex = FindGroupIndex(address);
  1042. if(group < 0 || gIndex < 0)
  1043. {
  1044. return;
  1045. }
  1046. ShmPsuData->PsuGroup[group].PsuModule[gIndex].IAvailableCurrent = Iavail;
  1047. // summation of psu group i available current
  1048. for (byte i = 0; i < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; i++)
  1049. {
  1050. totalCurrent += ShmPsuData->PsuGroup[group].PsuModule[i].IAvailableCurrent;
  1051. }
  1052. ShmPsuData->PsuGroup[group].TotalIAvailableCurrent = totalCurrent;
  1053. diffIAvailable = totalCurrent >= ShmPsuData->PsuGroup[group].TempIAvailableCurrent ?
  1054. totalCurrent - ShmPsuData->PsuGroup[group].TempIAvailableCurrent : ShmPsuData->PsuGroup[group].TempIAvailableCurrent - totalCurrent;
  1055. if(diffIAvailable > STABLE_CURRENT_TOLERANCE)
  1056. {
  1057. ShmPsuData->PsuGroup[group].StableCurrentCounter = 0;
  1058. ShmPsuData->PsuGroup[group].StableIAvailableCurrent = 0;
  1059. }
  1060. ShmPsuData->PsuGroup[group].TempIAvailableCurrent = ShmPsuData->PsuGroup[group].TotalIAvailableCurrent;
  1061. ShmPsuData->PsuGroup[group].StableCurrentCounter++;
  1062. if(ShmPsuData->PsuGroup[group].StableCurrentCounter >= MAX_STABLE_COUNT)
  1063. {
  1064. // get stable StableIAvailableCurrent
  1065. ShmPsuData->PsuGroup[group].StableIAvailableCurrent = ShmPsuData->PsuGroup[group].TotalIAvailableCurrent;
  1066. // get stable GroupRealOutputPower
  1067. ShmPsuData->PsuGroup[group].GroupRealOutputPower = (ShmPsuData->PsuGroup[group].StableIAvailableCurrent * ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage) / 100 / 1000;
  1068. ShmPsuData->PsuGroup[group].StableCurrentCounter = 0;
  1069. }
  1070. master = ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup;
  1071. if(master == 0)
  1072. {
  1073. // unit: 0.1A
  1074. chargingInfo[group]->DeratingChargingCurrent = ShmPsuData->PsuGroup[group].StableIAvailableCurrent;
  1075. chargingInfo[group]->DeratingChargingPower = (chargingInfo[group]->DeratingChargingCurrent * chargingInfo[group]->PresentChargingVoltage) / 10 / 100;
  1076. }
  1077. else
  1078. {
  1079. // calculate DeratingChargingCurrent of master group
  1080. totalCurrent = ShmPsuData->PsuGroup[master - 1].StableIAvailableCurrent;
  1081. for(byte i = 0; i < ShmPsuGrouping->GroupCollection[master - 1].Partner.Quantity; i++)
  1082. {
  1083. byte slave = ShmPsuGrouping->GroupCollection[master - 1].Partner.Member[i];
  1084. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE)
  1085. {
  1086. totalCurrent += ShmPsuData->PsuGroup[slave].StableIAvailableCurrent;
  1087. }
  1088. }
  1089. chargingInfo[master - 1]->DeratingChargingCurrent = totalCurrent;
  1090. chargingInfo[master - 1]->DeratingChargingPower = (chargingInfo[master - 1]->DeratingChargingCurrent * chargingInfo[master - 1]->PresentChargingVoltage) / 10 / 100;
  1091. if((master - 1) != group)
  1092. {
  1093. chargingInfo[group]->DeratingChargingCurrent = 0;
  1094. chargingInfo[group]->DeratingChargingPower = 0;
  1095. }
  1096. }
  1097. }
  1098. // outVol unit: 1V
  1099. // outCur unit: 1A
  1100. // 0x01: PSU_RCmd_SysOutputVolCur_F
  1101. void GetPresentOutputFCallback(byte group, float outVol, float outCur)
  1102. {
  1103. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1104. if (ShmPsuData->Work_Step < GET_SYS_CAP || group >= _maxGroupCount ||
  1105. !ShmPsuPosition->PsuLocationInit)
  1106. {
  1107. return;
  1108. }
  1109. byte master = 0;
  1110. unsigned short pVoltage = 0, pCurrent = 0;
  1111. unsigned short gVoltage = 0, gCurrent = 0;
  1112. pVoltage = isinf(outVol) == 0 ? (unsigned short)(outVol * 10) : 0;
  1113. pCurrent = isinf(outCur) == 0 ? (unsigned short)(outCur * 10) : 0;
  1114. ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage = pVoltage;
  1115. ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent = pCurrent;
  1116. ShmPsuData->PsuGroup[group].GroupPresentOutputPower = (pVoltage * pCurrent) / 100 / 100;
  1117. master = ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup;
  1118. if(master == 0)
  1119. {
  1120. // calculate PresentChargingVoltage and PresentChargingCurrent of self group
  1121. chargingInfo[group]->PresentChargingVoltage = (float)ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10;
  1122. chargingInfo[group]->PresentChargingCurrent = (float)ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent / 10;
  1123. }
  1124. else
  1125. {
  1126. // calculate PresentChargingVoltage and PresentChargingCurrent of master group
  1127. gVoltage = ShmPsuData->PsuGroup[master - 1].GroupPresentOutputVoltage;
  1128. gCurrent = ShmPsuData->PsuGroup[master - 1].GroupPresentOutputCurrent;
  1129. for(byte i = 0; i < ShmPsuGrouping->GroupCollection[master - 1].Partner.Quantity; i++)
  1130. {
  1131. byte slave = ShmPsuGrouping->GroupCollection[master - 1].Partner.Member[i];
  1132. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE ||
  1133. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF ||
  1134. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE_POWER_OFF)
  1135. {
  1136. if(ShmPsuData->PsuGroup[slave].GroupPresentOutputVoltage > gVoltage)
  1137. {
  1138. gVoltage = ShmPsuData->PsuGroup[slave].GroupPresentOutputVoltage;
  1139. }
  1140. gCurrent += ShmPsuData->PsuGroup[slave].GroupPresentOutputCurrent;
  1141. }
  1142. }
  1143. chargingInfo[master - 1]->PresentChargingVoltage = (float)gVoltage / 10;
  1144. chargingInfo[master - 1]->PresentChargingCurrent = (float)gCurrent / 10;
  1145. if((master - 1) != group)
  1146. {
  1147. chargingInfo[group]->PresentChargingVoltage = 0;
  1148. chargingInfo[group]->PresentChargingCurrent = 0;
  1149. }
  1150. }
  1151. }
  1152. // outVol unit: 1V
  1153. // outCur unit: 1A
  1154. void GetModuleOutputCallback(byte address, float outVol, float outCur)
  1155. {
  1156. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1157. if (ShmPsuData->Work_Step < GET_SYS_CAP || !ShmPsuPosition->PsuLocationInit)
  1158. {
  1159. return;
  1160. }
  1161. unsigned short voltage = isinf(outVol) == 0 ? (unsigned short)(outVol * 10) : 0;
  1162. unsigned short current = isinf(outCur) == 0 ? (unsigned short)(outCur * 10) : 0;
  1163. int group = FindTargetGroup(address);
  1164. int gIndex = FindGroupIndex(address);
  1165. if(group < 0 || gIndex < 0)
  1166. {
  1167. return;
  1168. }
  1169. ShmPsuData->PsuGroup[group].PsuModule[gIndex].PresentOutputVoltage = voltage;
  1170. ShmPsuData->PsuGroup[group].PsuModule[gIndex].PresentOutputCurrent = current;
  1171. }
  1172. // phihong pwr only
  1173. void GetErrorRecordCallback(byte psu_index, byte count_down, byte *error_record)
  1174. {
  1175. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1176. if (ShmPsuData->Work_Step < GET_SYS_CAP || !ShmPsuPosition->PsuLocationInit)
  1177. {
  1178. return;
  1179. }
  1180. int err_cnt = 0;
  1181. bool _change = false;
  1182. for(int i = 0; i < 7; i++)
  1183. {
  1184. if(error_record[i] != 0)
  1185. {
  1186. err_cnt++;
  1187. if(ShmPsuPosition->SinglePsuError[psu_index].PsuError[i] != error_record[i] || _change)
  1188. {
  1189. _change = true;
  1190. }
  1191. }
  1192. else
  1193. {
  1194. break;
  1195. }
  1196. }
  1197. if(_change)
  1198. {
  1199. memset(ShmPsuPosition->SinglePsuError[psu_index].PsuError, 0x00, sizeof(ShmPsuPosition->SinglePsuError[psu_index].PsuError));
  1200. memcpy(ShmPsuPosition->SinglePsuError[psu_index].PsuError, error_record, err_cnt);
  1201. }
  1202. else
  1203. {
  1204. _change = ShmPsuPosition->SinglePsuError[psu_index].ErrorCount != err_cnt ? true : false;
  1205. }
  1206. ShmPsuPosition->SinglePsuError[psu_index].ErrorCount = err_cnt;
  1207. ShmPsuPosition->SinglePsuError[psu_index].ErrFlag.bits.Changed |= _change;
  1208. }
  1209. //==========================================
  1210. // 特規用指令
  1211. //==========================================
  1212. // 0x1901: Nexton_PSU_DcOutputValue
  1213. void GetOutputAndTempCallback(byte address, unsigned short outputVol_s,
  1214. unsigned short outputCur_s, unsigned short outputPower, unsigned char Temperature)
  1215. {
  1216. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1217. return;
  1218. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  1219. !ShmPsuPosition->PsuLocationInit)
  1220. {
  1221. return;
  1222. }
  1223. int group = FindTargetGroup(address);
  1224. int gIndex = FindGroupIndex(address);
  1225. if(group < 0 || gIndex < 0)
  1226. {
  1227. return;
  1228. }
  1229. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp1 = Temperature;
  1230. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp2 = Temperature;
  1231. //ShmPsuData->PsuGroup[group].PsuModule[gIndex].CriticalTemp3 = Temperature;
  1232. }
  1233. // 0x1902: Nexton_PSU_StatusEvent
  1234. void GetModuleStatusCallback(byte address, unsigned char isErr, unsigned char status,
  1235. unsigned char err1, unsigned char err2, unsigned char err3, unsigned char err4)
  1236. {
  1237. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1238. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  1239. !ShmPsuPosition->PsuLocationInit)
  1240. {
  1241. return;
  1242. }
  1243. int group = FindTargetGroup(address);
  1244. int gIndex = FindGroupIndex(address);
  1245. if(group < 0 || gIndex < 0)
  1246. {
  1247. return;
  1248. }
  1249. int alarm = (err4 << 24) | (err3 << 16) | (err2 << 8) | err1;
  1250. ShmPsuData->PsuGroup[group].PsuModule[gIndex].AlarmCode = alarm;
  1251. AbnormalStopAnalysis(group, alarm);
  1252. if(isErr)
  1253. {
  1254. // 012267
  1255. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = YES;
  1256. ShmPsuData->PsuGroup[group].GroupErrorFlag.bits.PsuFailure = true;
  1257. }
  1258. }
  1259. // 0x1903: Nexton_PSU_AcInputValue
  1260. void GetModuleInputCallback(byte address, unsigned short inputR,
  1261. unsigned short inputS, unsigned short inputT)
  1262. {
  1263. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt++;
  1264. if (ShmPsuData->Work_Step < GET_SYS_CAP || address >= ShmPsuData->SystemInitialPsuQuantity ||
  1265. !ShmPsuPosition->PsuLocationInit)
  1266. {
  1267. return;
  1268. }
  1269. int group = FindTargetGroup(address);
  1270. int gIndex = FindGroupIndex(address);
  1271. if(group < 0 || gIndex < 0)
  1272. {
  1273. return;
  1274. }
  1275. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InputVoltageL1 = inputR;
  1276. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InputVoltageL2 = inputS;
  1277. ShmPsuData->PsuGroup[group].PsuModule[gIndex].InputVoltageL3 = inputT;
  1278. }
  1279. //==========================================
  1280. // Init all share memory
  1281. //==========================================
  1282. int InitShareMemory()
  1283. {
  1284. int result = PASS;
  1285. int MeterSMId;
  1286. //creat ShmSysConfigAndInfo
  1287. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  1288. {
  1289. #ifdef SystemLogMessage
  1290. LOG_ERROR("shmget ShmSysConfigAndInfo NG %d");
  1291. #endif
  1292. result = FAIL;
  1293. }
  1294. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  1295. {
  1296. #ifdef SystemLogMessage
  1297. LOG_ERROR("shmat ShmSysConfigAndInfo NG");
  1298. #endif
  1299. result = FAIL;
  1300. }
  1301. else
  1302. {}
  1303. //creat ShmStatusCodeData
  1304. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  1305. {
  1306. #ifdef SystemLogMessage
  1307. LOG_ERROR("shmget ShmStatusCodeData NG");
  1308. #endif
  1309. result = FAIL;
  1310. }
  1311. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  1312. {
  1313. #ifdef SystemLogMessage
  1314. LOG_ERROR("shmat ShmStatusCodeData NG");
  1315. #endif
  1316. result = FAIL;
  1317. }
  1318. else
  1319. {}
  1320. //creat ShmPsuData
  1321. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  1322. {
  1323. #ifdef SystemLogMessage
  1324. LOG_ERROR("shmget ShmPsuData NG");
  1325. #endif
  1326. result = FAIL;
  1327. }
  1328. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  1329. {
  1330. #ifdef SystemLogMessage
  1331. LOG_ERROR("shmat ShmPsuData NG");
  1332. #endif
  1333. result = FAIL;
  1334. }
  1335. if ((MeterSMId = shmget(SM_ChargerInfoKey, sizeof(ChargerInfoData), 0777)) < 0)
  1336. {
  1337. #ifdef SystemLogMessage
  1338. LOG_ERROR("shmat ChargerInfoData NG");
  1339. #endif
  1340. result = FAIL;
  1341. }
  1342. else if ((ShmChargerInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  1343. {
  1344. #ifdef SystemLogMessage
  1345. LOG_ERROR("shmat ChargerInfoData NG");
  1346. #endif
  1347. result = FAIL;
  1348. }
  1349. if(result == PASS)
  1350. {
  1351. ShmPsuPosition = &ShmChargerInfo->PsuPosition;
  1352. ShmPsuGrouping = &ShmChargerInfo->PsuGrouping;
  1353. }
  1354. return result;
  1355. }
  1356. //================================================
  1357. // Main process
  1358. //================================================
  1359. void InitialPsuData(void)
  1360. {
  1361. ShmPsuData->SystemInitialPsuQuantity = 0;
  1362. ShmPsuData->SystemPresentPsuQuantity = 0;
  1363. ShmPsuData->SystemAvailablePower = 0;
  1364. LOG_INFO("************ psu Group = %d", ShmPsuData->GroupCount);
  1365. for (byte _groupCount = 0; _groupCount < ShmPsuData->GroupCount; _groupCount++)
  1366. {
  1367. ShmPsuData->PsuGroup[_groupCount].GroupPresentPsuQuantity = 0;
  1368. ShmPsuData->PsuGroup[_groupCount].GroupAvailablePower = 0;
  1369. ShmPsuData->PsuGroup[_groupCount].GroupAvailableCurrent = 0;
  1370. ShmPsuData->PsuGroup[_groupCount].GroupErrorFlag.PsuGroupErrorValue = 0;
  1371. }
  1372. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFuseBurnOut = NO;
  1373. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPfcAndDcdcCommFault = NO;
  1374. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusVoltageUnbalance = NO;
  1375. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusOverVoltage = NO;
  1376. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusVoltageAbnormal = NO;
  1377. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputOVP = NO;
  1378. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDuplicateID = NO;
  1379. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuBusUnderVoltage = NO;
  1380. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputPhaseLoss = NO;
  1381. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuInputUVP = NO;
  1382. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCommunicationFail = NO;
  1383. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuSevereUnevenCurrent = NO;
  1384. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFfcSideShutDown = NO;
  1385. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFullSpeed = NO;
  1386. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcSideShutDown = NO;
  1387. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPowerLimitedState = NO;
  1388. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuTemperaturePowerLimit = NO;
  1389. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuAcPowerLimit = NO;
  1390. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcdcEepromFault = NO;
  1391. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFanFailureAlarm = NO;
  1392. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuOutputShortCircuit = NO;
  1393. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuPfcEepromFault = NO;
  1394. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuCriticalPointOTP = NO;
  1395. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuDcdcOverVoltage = NO;
  1396. memset(_LocalPsuStatus, 0x00, sizeof(_LocalPsuStatus));
  1397. memset(&ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR, 0x00, sizeof(ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR));
  1398. memset(&ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND, 0x00, sizeof(ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND));
  1399. }
  1400. void Initialization()
  1401. {
  1402. bool isPass = false;
  1403. while(!isPass)
  1404. {
  1405. isPass = true;
  1406. for (byte _index = 0; _index < _maxGroupCount; _index++)
  1407. {
  1408. if (!FindChargingInfoData(_index, &chargingInfo[0]))
  1409. {
  1410. LOG_ERROR("Module_PsuComm : FindChargingInfoData false");
  1411. isPass = false;
  1412. break;
  1413. }
  1414. }
  1415. sleep(1);
  1416. }
  1417. ShmPsuData->GroupCount = _maxGroupCount;
  1418. }
  1419. bool Is_PsuRxComm_Alive(void)
  1420. {
  1421. if(_RxPsuPid > 0)
  1422. {
  1423. if(kill(_RxPsuPid, 0) == 0)
  1424. {
  1425. // Process exists.
  1426. return true;
  1427. }
  1428. }
  1429. return false;
  1430. }
  1431. void Run_PsuRxCommProcess(void)
  1432. {
  1433. _RxPsuPid = InitialCommunication();
  1434. LOG_INFO("Create PsuRx PID = %d", _RxPsuPid);
  1435. }
  1436. void PsuReceiveRecoveryCheck(void)
  1437. {
  1438. char *ptrSave, *ptrToken;
  1439. int fd, psuTaskCount = 0;
  1440. char pathBuffer[64], psuTaskPidString[64];
  1441. system("pidof Module_PsuComm > /tmp/Module_PsuTask");
  1442. snprintf(pathBuffer, sizeof(pathBuffer), "/tmp/Module_PsuTask");
  1443. fd = open(pathBuffer, O_RDWR);
  1444. if(fd < 0)
  1445. {
  1446. close(fd);
  1447. return;
  1448. }
  1449. if(read(fd, psuTaskPidString, 64) < 0)
  1450. {
  1451. close(fd);
  1452. return;
  1453. }
  1454. ptrToken = strtok_r(psuTaskPidString, " ", &ptrSave);
  1455. while(ptrToken != NULL)
  1456. {
  1457. int psuPid = atoi(ptrToken);
  1458. if(psuPid > 0)
  1459. {
  1460. psuTaskCount++;
  1461. }
  1462. ptrToken = strtok_r(NULL, " ", &ptrSave);
  1463. }
  1464. close(fd);
  1465. if(psuTaskCount == 1)
  1466. {
  1467. LOG_INFO("************ PSU Receive Task Need Recovery ************\n");
  1468. Run_PsuRxCommProcess();
  1469. psuReceiveRecovery = true;
  1470. }
  1471. }
  1472. void ShowGroupMember(unsigned char group)
  1473. {
  1474. if(group < MAX_GROUP_QUANTITY)
  1475. {
  1476. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  1477. {
  1478. for(byte psu = 0; psu < ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity; psu++)
  1479. {
  1480. LOG_INFO("Group %d - Number = %d, SN = %02X", group + 1, psu,
  1481. ShmPsuPosition->GroupLocationInfo[group].PsuIndex[psu]);
  1482. }
  1483. }
  1484. }
  1485. }
  1486. void ShowPsuVersion(unsigned char group)
  1487. {
  1488. if(group < MAX_GROUP_QUANTITY)
  1489. {
  1490. if(ShmPsuPosition->GroupLocationInfo[group].GroupPsuQuantity > 0)
  1491. {
  1492. LOG_INFO("Group %d PSU Version Info", group + 1);
  1493. for(int i = 0; i < ShmPsuPosition->GroupLocationInfo[group].GroupPsuQuantity; i++)
  1494. {
  1495. int psuIndex = ShmPsuPosition->GroupLocationInfo[group].PsuIndex[i];
  1496. LOG_INFO("PSU Primary: %s, Second: %s",
  1497. ShmPsuData->PsuVersion[psuIndex].FwPrimaryVersion,
  1498. ShmPsuData->PsuVersion[psuIndex].FwSecondVersion);
  1499. }
  1500. }
  1501. }
  1502. }
  1503. void ShowGroupAvailableCurrentPower(unsigned char group)
  1504. {
  1505. if(group < MAX_GROUP_QUANTITY)
  1506. {
  1507. LOG_INFO("Group %d Available Current = %3d.%dA, Power = %3d.%dkW", group + 1,
  1508. (ShmPsuData->PsuGroup[group].GroupAvailableCurrent / 10), (ShmPsuData->PsuGroup[group].GroupAvailableCurrent % 10),
  1509. (ShmPsuData->PsuGroup[group].GroupAvailablePower / 10), (ShmPsuData->PsuGroup[group].GroupAvailablePower % 10));
  1510. }
  1511. }
  1512. unsigned char _TempType = 0;
  1513. void PsuGroupRoutineQuery(void)
  1514. {
  1515. for(byte group = 0; group < GENERAL_GUN_QUANTITY; group++)
  1516. {
  1517. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  1518. {
  1519. if (psuCmdSeq == _PSU_CMD_CAP)
  1520. {
  1521. // 取系統總輸出能力
  1522. GetModuleCap(group);
  1523. }
  1524. else if (psuCmdSeq == _PSU_CMD_OUTPUT)
  1525. {
  1526. // 取各群輸出電壓電流 (float)
  1527. GetModuleOutputF(group);
  1528. }
  1529. else if (psuCmdSeq == _PSU_CMD_IVAILIABLE)
  1530. {
  1531. // 取得模塊輸出額定電流能力
  1532. unsigned short voltage = 0;
  1533. if(ShmPsuGrouping->GroupCollection[group].TargetGroup == 0)
  1534. {
  1535. voltage = (unsigned short)(chargingInfo[group]->FireChargingVoltage);
  1536. }
  1537. else
  1538. {
  1539. voltage = (unsigned short)(chargingInfo[ShmPsuGrouping->GroupCollection[group].TargetGroup - 1]->FireChargingVoltage);
  1540. }
  1541. GetModuleIavailable(group, voltage);
  1542. }
  1543. else if (psuCmdSeq == _PSU_CMD_TEMP)
  1544. {
  1545. // 取得模塊溫度
  1546. if(_TempType == _PSU_TMP_DCDC)
  1547. {
  1548. GetDcTemperature(group);
  1549. }
  1550. else
  1551. {
  1552. GetPfcTemperature(group);
  1553. }
  1554. }
  1555. }
  1556. }
  1557. if(psuCmdSeq == _PSU_CMD_CAP)
  1558. {
  1559. psuCmdSeq = _PSU_CMD_OUTPUT;
  1560. }
  1561. else if(psuCmdSeq == _PSU_CMD_OUTPUT)
  1562. {
  1563. psuCmdSeq = _PSU_CMD_IVAILIABLE;
  1564. }
  1565. else if(psuCmdSeq == _PSU_CMD_IVAILIABLE)
  1566. {
  1567. psuCmdSeq = _PSU_CMD_TEMP;
  1568. _TempType = _TempType == _PSU_TMP_DCDC ? _PSU_TMP_PFC : _PSU_TMP_DCDC;
  1569. }
  1570. else
  1571. {
  1572. psuCmdSeq = _PSU_CMD_CAP;
  1573. }
  1574. }
  1575. void SetPsuGroupRole(byte group, byte role)
  1576. {
  1577. if(group < GENERAL_GUN_QUANTITY)
  1578. {
  1579. ShmPsuGrouping->GroupCollection[group].Role = role;
  1580. }
  1581. }
  1582. void SetPsuGroupToIdle(byte group)
  1583. {
  1584. if(group < GENERAL_GUN_QUANTITY)
  1585. {
  1586. SetPsuGroupRole(group, _GROLE_IDLE);
  1587. memset(&ShmPsuGrouping->GroupCollection[group].Partner, 0x00, sizeof(PsuGroupPartner));
  1588. memset(&ShmPsuGrouping->GroupCollection[group].PossibleMember, 0x00, sizeof(PsuGroupPartner));
  1589. ShmPsuGrouping->GroupCollection[group].TargetGroup = 0;
  1590. ShmPsuGrouping->GroupCollection[group].ReservedTarget = 0;
  1591. //LOG_INFO("Reset Group[%02X] To Idle", group);
  1592. }
  1593. }
  1594. // group: self group index
  1595. void SetPsuGroupToMaster(byte group)
  1596. {
  1597. if(group < GENERAL_GUN_QUANTITY)
  1598. {
  1599. SetPsuGroupRole(group, _GROLE_MASTER);
  1600. ShmPsuGrouping->GroupCollection[group].TargetGroup = group + 1;
  1601. //LOG_INFO("Set Group[%02X] As Master To Gun %d", group, group + 1);
  1602. }
  1603. }
  1604. // group: self group index
  1605. // target: target group index + 1
  1606. void SetPsuGroupToSlave(byte group, byte target)
  1607. {
  1608. if(group < GENERAL_GUN_QUANTITY && target <= GENERAL_GUN_QUANTITY)
  1609. {
  1610. SetPsuGroupRole(group, _GROLE_SLAVE);
  1611. ShmPsuGrouping->GroupCollection[group].TargetGroup = target;
  1612. ShmPsuGrouping->GroupCollection[group].ReservedTarget = 0;
  1613. memset(&ShmPsuGrouping->GroupCollection[group].PossibleMember, 0x00, sizeof(PsuGroupPartner));
  1614. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.SlaveCtrlValue = 0;
  1615. //LOG_INFO("Set Group[%02X] As Slave To Gun %d", group, target);
  1616. }
  1617. }
  1618. // target: target group index + 1
  1619. // tPartner: set member to power off
  1620. void PrepareToPowerOff(byte target, PsuGroupPartner *tPartner)
  1621. {
  1622. unsigned char master = 0, slave = 0;
  1623. char strMember[64];
  1624. bool find = false;
  1625. sprintf(strMember, "Set Member:");
  1626. for(int i = 0; i < tPartner->Quantity; i++)
  1627. {
  1628. slave = tPartner->Member[i];
  1629. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  1630. SetPsuGroupRole(slave, _GROLE_PREPARE_SWITCH_OFF);
  1631. ShmPsuGrouping->GroupCollection[slave].ReservedTarget = target;
  1632. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedDerating = true;
  1633. char strSlave[8];
  1634. sprintf(strSlave, " [%02X]", slave);
  1635. strcat(strMember, strSlave);
  1636. find = true;
  1637. }
  1638. if(find)
  1639. {
  1640. char strTemp[32];
  1641. if(target != 0)
  1642. {
  1643. sprintf(strTemp, " Prepare To Change To Gun %d", target);
  1644. }
  1645. else
  1646. {
  1647. sprintf(strTemp, " Prepare To Power Of");
  1648. }
  1649. strcat(strMember, strTemp);
  1650. LOG_INFO("%s", strMember);
  1651. }
  1652. }
  1653. // target: target group index + 1
  1654. // tPartner: set member to prepare to attach on
  1655. void PrepareToExtendCapability(byte target, PsuGroupPartner *tPartner)
  1656. {
  1657. char strMember[64];
  1658. sprintf(strMember, "Set Member:");
  1659. for(int i = 0; i < tPartner->Quantity; i++)
  1660. {
  1661. SetPsuGroupRole(tPartner->Member[i], _GROLE_PREPARE_ATTACH_ON);
  1662. ShmPsuGrouping->GroupCollection[tPartner->Member[i]].ReservedTarget = target;
  1663. char strSlave[8];
  1664. sprintf(strSlave, " [%02X]", tPartner->Member[i]);
  1665. strcat(strMember, strSlave);
  1666. }
  1667. if(tPartner->Quantity > 0)
  1668. {
  1669. char strTemp[32];
  1670. sprintf(strTemp, " Prepare To Attach To Gun %d", target);
  1671. strcat(strMember, strTemp);
  1672. LOG_INFO("%s", strMember);
  1673. }
  1674. }
  1675. void FindPsuGroupPartner(byte master, int condition, PsuGroupPartner *tPartner, int type, int quantityLimit)
  1676. {
  1677. int slave = 0, location = 0;
  1678. PsuGroupPartner partner;
  1679. int extendPower = 0;
  1680. bool done = false;
  1681. int parallelRelay = 0;
  1682. unsigned short parallelFlag = 0;
  1683. memset(&partner, 0x00, sizeof(PsuGroupPartner));
  1684. // search from left
  1685. location = ShmPsuGrouping->GroupCollection[master].Location - 1;
  1686. for(int i = location; i >= 0; i--)
  1687. {
  1688. switch(type)
  1689. {
  1690. case _EXTEND_TYPE_QUANTITY:
  1691. if(partner.Quantity >= condition)
  1692. {
  1693. done = true;
  1694. }
  1695. break;
  1696. case _EXTEND_TYPE_POWER:
  1697. if(extendPower >= condition)
  1698. {
  1699. done = true;
  1700. }
  1701. break;
  1702. default:
  1703. done = true;
  1704. break;
  1705. }
  1706. if(done || partner.Quantity >= quantityLimit)
  1707. {
  1708. break;
  1709. }
  1710. slave = ShmPsuGrouping->Layout[i];
  1711. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_IDLE ||
  1712. (ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_WAIT_SLAVE && (ShmPsuGrouping->GroupCollection[slave].ReservedTarget - 1) == master))
  1713. {
  1714. parallelRelay = ShmPsuGrouping->GroupCollection[master].ParallelConfig[slave];
  1715. parallelFlag |= parallelRelay != 0 ? (1 << (parallelRelay - 1)) : 0;
  1716. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0)
  1717. {
  1718. partner.Member[partner.Quantity] = slave;
  1719. partner.ParallelFlag[partner.Quantity] = parallelFlag;
  1720. partner.Quantity++;
  1721. extendPower += (ShmPsuData->PsuGroup[slave].GroupAvailablePower / 10);
  1722. parallelFlag = 0;
  1723. }
  1724. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay)
  1725. {
  1726. parallelFlag = 0;
  1727. }
  1728. }
  1729. else
  1730. {
  1731. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  1732. {
  1733. // Enable6ParallelRelay = 0, need to check slave is the same target or not
  1734. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE && master == (ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1))
  1735. {
  1736. continue;
  1737. }
  1738. break;
  1739. }
  1740. }
  1741. }
  1742. parallelFlag = 0;
  1743. // search from right
  1744. location = ShmPsuGrouping->GroupCollection[master].Location + 1;
  1745. for(int i = location; i < ShmChargerInfo->Control.MaxConnector; i++)
  1746. {
  1747. switch(type)
  1748. {
  1749. case _EXTEND_TYPE_QUANTITY:
  1750. if(partner.Quantity >= condition)
  1751. {
  1752. done = true;
  1753. }
  1754. break;
  1755. case _EXTEND_TYPE_POWER:
  1756. if(extendPower >= condition)
  1757. {
  1758. done = true;
  1759. }
  1760. break;
  1761. default:
  1762. done = true;
  1763. break;
  1764. }
  1765. if(done || partner.Quantity >= quantityLimit)
  1766. {
  1767. break;
  1768. }
  1769. slave = ShmPsuGrouping->Layout[i];
  1770. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_IDLE ||
  1771. (ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_WAIT_SLAVE && (ShmPsuGrouping->GroupCollection[slave].ReservedTarget - 1) == master))
  1772. {
  1773. parallelRelay = ShmPsuGrouping->GroupCollection[master].ParallelConfig[slave];
  1774. parallelFlag |= parallelRelay != 0 ? (1 << (parallelRelay - 1)) : 0;
  1775. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0)
  1776. {
  1777. partner.Member[partner.Quantity] = slave;
  1778. partner.ParallelFlag[partner.Quantity] = parallelFlag;
  1779. partner.Quantity++;
  1780. extendPower += (ShmPsuData->PsuGroup[slave].GroupAvailablePower / 10);
  1781. parallelFlag = 0;
  1782. }
  1783. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay)
  1784. {
  1785. parallelFlag = 0;
  1786. }
  1787. }
  1788. else
  1789. {
  1790. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  1791. {
  1792. // Enable6ParallelRelay = 0, need to check slave is the same target or not
  1793. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE && master == (ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1))
  1794. {
  1795. continue;
  1796. }
  1797. break;
  1798. }
  1799. }
  1800. }
  1801. memcpy(tPartner, &partner, sizeof(PsuGroupPartner));
  1802. }
  1803. int GetPsuGroupAvailable(byte group)
  1804. {
  1805. PsuGroupPartner partner;
  1806. FindPsuGroupPartner(group, MAX_GROUP_QUANTITY, &partner, _EXTEND_TYPE_QUANTITY, MAX_GROUP_QUANTITY);
  1807. return partner.Quantity;
  1808. }
  1809. // return quantity which role is _GROLE_MASTER
  1810. int FindChargingMasterQuantity(void)
  1811. {
  1812. int quantity = 0;
  1813. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  1814. {
  1815. if(ShmPsuGrouping->GroupCollection[i].Role == _GROLE_MASTER)
  1816. {
  1817. quantity++;
  1818. }
  1819. }
  1820. return quantity;
  1821. }
  1822. // return total psu group quantity
  1823. int FindTotalPsuGroupQuantity(void)
  1824. {
  1825. int quantity = 0;
  1826. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  1827. {
  1828. if(ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity > 0)
  1829. {
  1830. quantity++;
  1831. }
  1832. }
  1833. return quantity;
  1834. }
  1835. void ShowGunPrioritySequence(unsigned char *sequence, int quantity)
  1836. {
  1837. char strSequence[256];
  1838. sprintf(strSequence, "Priority Sequence:");
  1839. for(int i = 0; i < quantity; i++)
  1840. {
  1841. char strGun[32];
  1842. sprintf(strGun, " [Gun %d: %d kW]",
  1843. sequence[i] + 1,
  1844. (int)ShmPsuGrouping->GroupCollection[sequence[i]].DiffPower_PhysicalLimit);
  1845. strcat(strSequence, strGun);
  1846. }
  1847. PSU_LOG("%s", strSequence);
  1848. }
  1849. void CheckExtendConflictPriority(unsigned char *sequence, int quantity)
  1850. {
  1851. bool done = true;
  1852. int temp = 0;
  1853. for(int i = 0; i < quantity - 1; i++)
  1854. {
  1855. done = true;
  1856. for(int j = 0; j < quantity - i - 1; j++)
  1857. {
  1858. if(ShmPsuGrouping->GroupCollection[sequence[j + 1]].DiffPower_PhysicalLimit > ShmPsuGrouping->GroupCollection[sequence[j]].DiffPower_PhysicalLimit)
  1859. {
  1860. temp = sequence[j];
  1861. sequence[j] = sequence[j + 1];
  1862. sequence[j + 1] = temp;
  1863. done = false;
  1864. }
  1865. }
  1866. //ShowGunPrioritySequence(sequence, quantity);
  1867. if(done)
  1868. {
  1869. break;
  1870. }
  1871. }
  1872. }
  1873. // return conflict reason
  1874. int IsExtendConflict(byte master)
  1875. {
  1876. int available = 0, conflictMasterCnt = 0, conflictGroupCnt = 0, average = 0, remainder = 0;
  1877. available = GetPsuGroupAvailable(master);
  1878. if(available == 0)
  1879. {
  1880. return _CONFLICT_AVAILABLE;
  1881. }
  1882. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  1883. {
  1884. if(ShmPsuGrouping->GroupCollection[i].GroupCtrl.bits.ExtendAvailable ||
  1885. ShmPsuGrouping->GroupCollection[i].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue != 0)
  1886. {
  1887. conflictMasterCnt++;
  1888. conflictGroupCnt += ShmPsuGrouping->GroupCollection[i].Partner.Quantity + 1;
  1889. }
  1890. }
  1891. average = conflictMasterCnt != 0 ? ((conflictGroupCnt + available) / conflictMasterCnt) : 0;
  1892. remainder = conflictMasterCnt != 0 ? ((conflictGroupCnt + available) % conflictMasterCnt) : 0;
  1893. if(ShmPsuGrouping->GroupCollection[master].Partner.Quantity + 1 < average)
  1894. {
  1895. ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit = average - ShmPsuGrouping->GroupCollection[master].Partner.Quantity - 1;
  1896. #if PSU_DEBUG_MSG
  1897. LOG_INFO("Gun %d Extend Average First, Quantity Limit: %d", master + 1, ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit);
  1898. #endif
  1899. return _CONFLICT_NONE;
  1900. }
  1901. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  1902. {
  1903. if(ShmPsuGrouping->GroupCollection[i].GroupCtrl.bits.ExtendAvailable ||
  1904. ShmPsuGrouping->GroupCollection[i].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue != 0)
  1905. {
  1906. if(ShmPsuGrouping->GroupCollection[i].Partner.Quantity + 1 < average)
  1907. {
  1908. return _CONFLICT_AVERAGE;
  1909. }
  1910. }
  1911. }
  1912. if(remainder > 0)
  1913. {
  1914. int find = 0;
  1915. CheckExtendConflictPriority(_GunIndexOfPrioritySequence, MAX_GROUP_QUANTITY);
  1916. ShowGunPrioritySequence(_GunIndexOfPrioritySequence, MAX_GROUP_QUANTITY);
  1917. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  1918. {
  1919. if(find >= remainder)
  1920. {
  1921. break;
  1922. }
  1923. if(ShmPsuGrouping->GroupCollection[_GunIndexOfPrioritySequence[i]].GroupCtrl.bits.ExtendAvailable)
  1924. {
  1925. find++;
  1926. if(master == _GunIndexOfPrioritySequence[i])
  1927. {
  1928. ShmPsuGrouping->GroupCollection[_GunIndexOfPrioritySequence[i]].ExtendQuantityLimit = 1;
  1929. #if PSU_DEBUG_MSG
  1930. LOG_INFO("Gun %d Extend Via Priority First, Quantity Limit: %d", master + 1, ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit);
  1931. #endif
  1932. return _CONFLICT_NONE;
  1933. }
  1934. }
  1935. }
  1936. }
  1937. return _CONFLICT_PRIORITY;
  1938. }
  1939. void FindGrabPartner(byte group, byte GrabMaster, PsuGroupPartner *tPartner)
  1940. {
  1941. bool find = false;
  1942. int location = 0, master = 0, slave = 0;
  1943. // find other group in the same direction
  1944. if(ShmPsuGrouping->Location[group] < ShmPsuGrouping->Location[GrabMaster])
  1945. {
  1946. // find other group far to GrabMaster in the same direction
  1947. location = ShmPsuGrouping->GroupCollection[group].Location - 1;
  1948. for(int i = location; i >= 0; i--)
  1949. {
  1950. slave = ShmPsuGrouping->Layout[i];
  1951. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  1952. if(master == GrabMaster)
  1953. {
  1954. tPartner->Member[tPartner->Quantity] = slave;
  1955. tPartner->Quantity++;
  1956. find = true;
  1957. #if PSU_DEBUG_MSG
  1958. LOG_INFO("Find Priority Partner [%02X] Far To GrabMaster At Right Side", slave);
  1959. #endif
  1960. break;
  1961. }
  1962. }
  1963. if(!find)
  1964. {
  1965. // find other group near to GrabMaster in the same direction
  1966. location = ShmPsuGrouping->GroupCollection[group].Location + 1;
  1967. for(int i = location; i < ShmChargerInfo->Control.MaxConnector; i++)
  1968. {
  1969. slave = ShmPsuGrouping->Layout[i];
  1970. if(slave == GrabMaster)
  1971. {
  1972. break;
  1973. }
  1974. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  1975. if(master == GrabMaster)
  1976. {
  1977. tPartner->Member[tPartner->Quantity] = slave;
  1978. tPartner->Quantity++;
  1979. find = true;
  1980. #if PSU_DEBUG_MSG
  1981. LOG_INFO("Find Priority Partner [%02X] Near To GrabMaster At Right Side", slave);
  1982. #endif
  1983. break;
  1984. }
  1985. }
  1986. if(!find)
  1987. {
  1988. for(int i = ShmChargerInfo->Control.MaxConnector - 1; i >= 0; i--)
  1989. {
  1990. slave = ShmPsuGrouping->Layout[i];
  1991. if(slave == GrabMaster)
  1992. {
  1993. break;
  1994. }
  1995. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  1996. if(master == GrabMaster)
  1997. {
  1998. tPartner->Member[tPartner->Quantity] = slave;
  1999. tPartner->Quantity++;
  2000. find = true;
  2001. #if PSU_DEBUG_MSG
  2002. LOG_INFO("Find Priority Partner [%02X] At Right Side At Ring Mode", slave);
  2003. #endif
  2004. break;
  2005. }
  2006. }
  2007. }
  2008. }
  2009. }
  2010. if(ShmPsuGrouping->Location[group] > ShmPsuGrouping->Location[GrabMaster])
  2011. {
  2012. // find other group far to GrabMaster in the same direction
  2013. location = ShmPsuGrouping->GroupCollection[group].Location + 1;
  2014. for(int i = location; i < ShmChargerInfo->Control.MaxConnector; i++)
  2015. {
  2016. slave = ShmPsuGrouping->Layout[i];
  2017. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  2018. if(master == GrabMaster)
  2019. {
  2020. tPartner->Member[tPartner->Quantity] = slave;
  2021. tPartner->Quantity++;
  2022. find = true;
  2023. #if PSU_DEBUG_MSG
  2024. LOG_INFO("Find Priority Partner [%02X] Far To GrabMaster At Left Side", slave);
  2025. #endif
  2026. break;
  2027. }
  2028. }
  2029. if(!find)
  2030. {
  2031. // find other group near to GrabMaster in the same direction
  2032. location = ShmPsuGrouping->GroupCollection[group].Location - 1;
  2033. for(int i = location; i >= 0; i--)
  2034. {
  2035. slave = ShmPsuGrouping->Layout[i];
  2036. if(slave == GrabMaster)
  2037. {
  2038. break;
  2039. }
  2040. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  2041. if(master == GrabMaster)
  2042. {
  2043. tPartner->Member[tPartner->Quantity] = slave;
  2044. tPartner->Quantity++;
  2045. find = true;
  2046. #if PSU_DEBUG_MSG
  2047. LOG_INFO("Find Priority Partner [%02X] Near To GrabMaster At Left Side", slave);
  2048. #endif
  2049. break;
  2050. }
  2051. }
  2052. if(!find)
  2053. {
  2054. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  2055. {
  2056. slave = ShmPsuGrouping->Layout[i];
  2057. if(slave == GrabMaster)
  2058. {
  2059. break;
  2060. }
  2061. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  2062. if(master == GrabMaster)
  2063. {
  2064. tPartner->Member[tPartner->Quantity] = slave;
  2065. tPartner->Quantity++;
  2066. find = true;
  2067. #if PSU_DEBUG_MSG
  2068. LOG_INFO("Find Priority Partner [%02X] At Left Side At Ring Mode", slave);
  2069. #endif
  2070. break;
  2071. }
  2072. }
  2073. }
  2074. }
  2075. }
  2076. }
  2077. // return grab success or fail
  2078. // return tPartner with possible member
  2079. bool PsuGroupGrabCheck(byte group, PsuGroupPartner *tPartner)
  2080. {
  2081. int slave = 0, target = 0, location = 0, average = 0, total = 0;
  2082. if(ShmPsuGrouping->GroupCollection[group].Role != _GROLE_SLAVE && ShmPsuGrouping->GroupCollection[group].Role != _GROLE_REQUEST_TO_CHARGING)
  2083. {
  2084. return false;
  2085. }
  2086. memset(tPartner, 0x00, sizeof(PsuGroupPartner));
  2087. total = GetPsuGroupAvailable(group) + 1;
  2088. average = FindTotalPsuGroupQuantity() / (1 + FindChargingMasterQuantity());
  2089. if(total < average)
  2090. {
  2091. // search from left
  2092. location = ShmPsuGrouping->GroupCollection[group].Location - 1;
  2093. for(int i = location; i >= 0; i--)
  2094. {
  2095. if(total + tPartner->Quantity < average)
  2096. {
  2097. slave = ShmPsuGrouping->Layout[i];
  2098. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE &&
  2099. (ShmPsuGrouping->GroupCollection[group].Role == _GROLE_REQUEST_TO_CHARGING ||
  2100. ShmPsuGrouping->GroupCollection[slave].TargetGroup == ShmPsuGrouping->GroupCollection[group].TargetGroup))
  2101. {
  2102. target = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  2103. if((ShmPsuGrouping->GroupCollection[target].Partner.Quantity + 1) > average)
  2104. {
  2105. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  2106. {
  2107. tPartner->Member[tPartner->Quantity] = slave;
  2108. tPartner->Quantity++;
  2109. }
  2110. else
  2111. {
  2112. FindGrabPartner(group, target, tPartner);
  2113. }
  2114. }
  2115. }
  2116. else
  2117. {
  2118. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  2119. {
  2120. break;
  2121. }
  2122. }
  2123. }
  2124. }
  2125. // search from right
  2126. location = ShmPsuGrouping->GroupCollection[group].Location + 1;
  2127. for(int i = location; i < ShmChargerInfo->Control.MaxConnector; i++)
  2128. {
  2129. if(total + tPartner->Quantity < average)
  2130. {
  2131. slave = ShmPsuGrouping->Layout[i];
  2132. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE &&
  2133. (ShmPsuGrouping->GroupCollection[group].Role == _GROLE_REQUEST_TO_CHARGING ||
  2134. ShmPsuGrouping->GroupCollection[slave].TargetGroup == ShmPsuGrouping->GroupCollection[group].TargetGroup))
  2135. {
  2136. target = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  2137. if((ShmPsuGrouping->GroupCollection[target].Partner.Quantity + 1) > average)
  2138. {
  2139. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  2140. {
  2141. tPartner->Member[tPartner->Quantity] = slave;
  2142. tPartner->Quantity++;
  2143. }
  2144. else
  2145. {
  2146. FindGrabPartner(group, target, tPartner);
  2147. }
  2148. }
  2149. }
  2150. else
  2151. {
  2152. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  2153. {
  2154. break;
  2155. }
  2156. }
  2157. }
  2158. }
  2159. }
  2160. return tPartner->Quantity > 0 ? true : false;
  2161. }
  2162. // return tPartner with possible member when group power off
  2163. void PsuGroupPowerOffCheck(byte group, PsuGroupPartner *tPartner)
  2164. {
  2165. int master = 0, quantity = 0, location = 0;
  2166. memset(tPartner, 0x00, sizeof(PsuGroupPartner));
  2167. if(ShmPsuGrouping->GroupCollection[group].Role != _GROLE_SLAVE)
  2168. {
  2169. return;
  2170. }
  2171. master = ShmPsuGrouping->GroupCollection[group].TargetGroup - 1;
  2172. quantity = ShmPsuGrouping->GroupCollection[master].Partner.Quantity;
  2173. for(int i = 0; i < quantity; i++)
  2174. {
  2175. if(tPartner->Quantity == 0)
  2176. {
  2177. if(group == ShmPsuGrouping->GroupCollection[master].Partner.Member[i])
  2178. {
  2179. location = i;
  2180. tPartner->Member[tPartner->Quantity] = group;
  2181. tPartner->Quantity++;
  2182. }
  2183. }
  2184. else
  2185. {
  2186. // find other group in the same direction
  2187. if(ShmPsuGrouping->Location[ShmPsuGrouping->GroupCollection[master].Partner.Member[location]] < ShmPsuGrouping->Location[master])
  2188. {
  2189. if(ShmPsuGrouping->Location[ShmPsuGrouping->GroupCollection[master].Partner.Member[i]] < ShmPsuGrouping->Location[master])
  2190. {
  2191. tPartner->Member[tPartner->Quantity] = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2192. tPartner->Quantity++;
  2193. //printf("\r\n Find Other Group %02X In The Same Direction", ShmPsuGrouping->GroupCollection[master].Partner.Member[i]);
  2194. }
  2195. }
  2196. if(ShmPsuGrouping->Location[ShmPsuGrouping->GroupCollection[master].Partner.Member[location]] > ShmPsuGrouping->Location[master])
  2197. {
  2198. if(ShmPsuGrouping->Location[ShmPsuGrouping->GroupCollection[master].Partner.Member[i]] > ShmPsuGrouping->Location[master])
  2199. {
  2200. tPartner->Member[tPartner->Quantity] = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2201. tPartner->Quantity++;
  2202. //printf("\r\n Find Other Group %02X In The Same Direction", ShmPsuGrouping->GroupCollection[master].Partner.Member[i]);
  2203. }
  2204. }
  2205. }
  2206. }
  2207. }
  2208. void UpdateGunTotalPsuQuantity(int master)
  2209. {
  2210. ShmPsuGrouping->GroupCollection[master].GunPsuQuantity = GetPsuModuleQuantity(master);
  2211. }
  2212. // group: group index, target: target index
  2213. // master: master group index
  2214. void AddMember(byte group, byte master, unsigned short flag)
  2215. {
  2216. if(group < GENERAL_GUN_QUANTITY && master < GENERAL_GUN_QUANTITY)
  2217. {
  2218. if(ShmPsuGrouping->GroupCollection[master].Role != _GROLE_MASTER &&
  2219. ShmPsuGrouping->GroupCollection[master].Role != _GROLE_REQUEST_TO_CHARGING)
  2220. {
  2221. return;
  2222. }
  2223. if(ShmPsuGrouping->GroupCollection[group].Role != _GROLE_IDLE &&
  2224. ShmPsuGrouping->GroupCollection[group].Role != _GROLE_WAIT_SLAVE &&
  2225. ShmPsuGrouping->GroupCollection[group].Role != _GROLE_PRECHARGE_READY)
  2226. {
  2227. return;
  2228. }
  2229. SetPsuGroupToSlave(group, master + 1);
  2230. ShmPsuGrouping->GroupCollection[master].Partner.Member[ShmPsuGrouping->GroupCollection[master].Partner.Quantity] = group;
  2231. ShmPsuGrouping->GroupCollection[master].Partner.ParallelFlag[ShmPsuGrouping->GroupCollection[master].Partner.Quantity] = flag;
  2232. ShmPsuGrouping->GroupCollection[master].Partner.Quantity++;
  2233. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  2234. {
  2235. ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity++;
  2236. //ShmPsuGrouping->GroupCollection[master].GunPsuQuantity += ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity;
  2237. UpdateGunTotalPsuQuantity(master);
  2238. #if PSU_DEBUG_MSG
  2239. LOG_INFO("Gun %d Add Group [%02X], Quantity: %d (%d), Flag: %04X",
  2240. master + 1, group, ShmPsuGrouping->GroupCollection[master].Partner.Quantity,
  2241. ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity, flag);
  2242. #endif
  2243. }
  2244. //printf("\r\n Add Group %02X To Gun %d (Quantity %d), Set Parallel Relay %d On", group, target + 1, ShmPsuGrouping->GroupCollection[target].Partner.Quantity, ParallelConfig);
  2245. }
  2246. }
  2247. // master: master group index
  2248. void AddAvailableMember(unsigned char master)
  2249. {
  2250. PsuGroupPartner partner;
  2251. char strMember[64];
  2252. FindPsuGroupPartner(master, MAX_GROUP_QUANTITY, &partner, _EXTEND_TYPE_QUANTITY, MAX_GROUP_QUANTITY);
  2253. sprintf(strMember, "Gun %d Add Available Member:", master + 1);
  2254. for(int i = 0; i < partner.Quantity; i++)
  2255. {
  2256. AddMember(partner.Member[i], master, partner.ParallelFlag[i]);
  2257. char strSlave[8];
  2258. sprintf(strSlave, " [%02X]", partner.Member[i]);
  2259. strcat(strMember, strSlave);
  2260. }
  2261. if(partner.Quantity > 0)
  2262. {
  2263. LOG_INFO("%s", strMember);
  2264. }
  2265. }
  2266. // master: master group index
  2267. // slave: slave group index
  2268. void RemoveMember(unsigned char master, unsigned char slave)
  2269. {
  2270. bool find = false;
  2271. int location = 0;
  2272. unsigned char other = 0;
  2273. unsigned short parallelFlag = 0;
  2274. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2275. {
  2276. if(slave == ShmPsuGrouping->GroupCollection[master].Partner.Member[i])
  2277. {
  2278. ShmPsuGrouping->GroupCollection[master].Partner.Member[i] = 0;
  2279. location = i;
  2280. find = true;
  2281. break;
  2282. }
  2283. }
  2284. if(find)
  2285. {
  2286. for(int i = location + 1; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2287. {
  2288. other = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2289. parallelFlag = ShmPsuGrouping->GroupCollection[master].Partner.ParallelFlag[i];
  2290. ShmPsuGrouping->GroupCollection[master].Partner.Member[i] = 0;
  2291. ShmPsuGrouping->GroupCollection[master].Partner.Member[i - 1] = other;
  2292. ShmPsuGrouping->GroupCollection[master].Partner.ParallelFlag[i - 1] = parallelFlag;
  2293. }
  2294. ShmPsuGrouping->GroupCollection[master].Partner.Quantity--;
  2295. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0)
  2296. {
  2297. ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity--;
  2298. //ShmPsuGrouping->GroupCollection[master].GunPsuQuantity -= ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity;
  2299. UpdateGunTotalPsuQuantity(master);
  2300. }
  2301. #if PSU_DEBUG_MSG
  2302. LOG_INFO("Gun %d Remove Group [%02X], Quantity: %d (%d)",
  2303. master + 1, slave, ShmPsuGrouping->GroupCollection[master].Partner.Quantity,
  2304. ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity);
  2305. #endif
  2306. }
  2307. }
  2308. // master: master group index
  2309. void RemoveNonGroupMember(unsigned char master)
  2310. {
  2311. unsigned char slave = 0;
  2312. char strMember[64];
  2313. PsuGroupPartner partner;
  2314. bool find = false;
  2315. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER)
  2316. {
  2317. sprintf(strMember, "Gun %d Remove Member:", master + 1);
  2318. memcpy(&partner, &ShmPsuGrouping->GroupCollection[master].Partner, sizeof(PsuGroupPartner));
  2319. for(int i = 0; i < partner.Quantity; i++)
  2320. {
  2321. slave = partner.Member[i];
  2322. if(ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_SLAVE)
  2323. {
  2324. RemoveMember(master, slave);
  2325. if(ShmPsuGrouping->GroupCollection[slave].ReservedTarget == 0)
  2326. {
  2327. SetPsuGroupToIdle(slave);
  2328. }
  2329. else
  2330. {
  2331. SetPsuGroupRole(slave, _GROLE_WAIT_SLAVE);
  2332. }
  2333. char strSlave[8];
  2334. sprintf(strSlave, " [%02X]", slave);
  2335. strcat(strMember, strSlave);
  2336. find = true;
  2337. }
  2338. }
  2339. if(find)
  2340. {
  2341. LOG_INFO("%s", strMember);
  2342. }
  2343. }
  2344. }
  2345. void SetPsuGroupPowerOnOff(unsigned char group, unsigned char power_on_off)
  2346. {
  2347. if(group < CONNECTOR_QUANTITY)
  2348. {
  2349. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  2350. {
  2351. #if ONE_MODULE_OUTPUT
  2352. // for safety test (inrush current)
  2353. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.InPrechargeMode)
  2354. {
  2355. PsuSingleOnOff(ShmPsuPosition->GroupLocationInfo[group].PsuSN[0], power_on_off);
  2356. }
  2357. else
  2358. {
  2359. PsuGroupOnOff(group, power_on_off);
  2360. }
  2361. #else
  2362. PsuGroupOnOff(group, power_on_off);
  2363. #endif
  2364. LedGroupOnOff(group, power_on_off);
  2365. }
  2366. isStartOutputSwitch[group] = power_on_off == _PSU_ON ? true : false;
  2367. }
  2368. }
  2369. // master: master group index
  2370. unsigned short GetPresentTargetCurrent(unsigned char master, unsigned char role_condition)
  2371. {
  2372. unsigned char slave = 0;
  2373. unsigned short current = 0;
  2374. current = ShmPsuGrouping->GroupOutput[master].GTargetCurrent;
  2375. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2376. {
  2377. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2378. if(role_condition == _GROLE_MASTER || ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE)
  2379. {
  2380. current += ShmPsuGrouping->GroupOutput[slave].GTargetCurrent;
  2381. }
  2382. }
  2383. return current;
  2384. }
  2385. // group: group index
  2386. int GetPsuModuleQuantity(unsigned char group)
  2387. {
  2388. int quantity = 0;
  2389. unsigned char slave = 0;
  2390. quantity = ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity;
  2391. for(int i = 0; i < ShmPsuGrouping->GroupCollection[group].Partner.Quantity; i++)
  2392. {
  2393. slave = ShmPsuGrouping->GroupCollection[group].Partner.Member[i];
  2394. quantity += ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity;
  2395. }
  2396. return quantity;
  2397. }
  2398. // group: group index
  2399. bool IsAvailableGroup(unsigned char group)
  2400. {
  2401. return ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0 ? true : false;
  2402. }
  2403. // master: master group index
  2404. int GetMasterAvailableGroup(unsigned char master)
  2405. {
  2406. int quantity = 0;
  2407. unsigned char slave = 0;
  2408. quantity = IsAvailableGroup(master) ? quantity + 1 : quantity;
  2409. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2410. {
  2411. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2412. quantity = IsAvailableGroup(slave) ? quantity + 1 : quantity;
  2413. }
  2414. return quantity;
  2415. }
  2416. // group: group index
  2417. void UpdateGunLoading(unsigned char group)
  2418. {
  2419. if(ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup != 0 &&
  2420. group == ShmChargerInfo->PsuGrouping.GroupCollection[group].TargetGroup - 1)
  2421. {
  2422. unsigned short TargetCurrent = (int)(chargingInfo[group]->EvBatterytargetCurrent * 10);
  2423. ShmPsuGrouping->GroupCollection[group].GunLoading = chargingInfo[group]->AvailableChargingCurrent != 0 ?
  2424. (TargetCurrent * 10000 / (int)chargingInfo[group]->AvailableChargingCurrent) : 0;
  2425. if(chargingInfo[group]->PresentChargingVoltage >= (PSU_MIN_VOL / 10))
  2426. {
  2427. ShmPsuGrouping->GroupCollection[group].DiffPower_Available = (((float)(chargingInfo[group]->AvailableChargingCurrent - ShmPsuGrouping->TotalGroupOutput[group].GTargetCurrent) / 10) * chargingInfo[group]->PresentChargingVoltage) / 1000;
  2428. ShmPsuGrouping->GroupCollection[group].DiffPower_Capability = (((float)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[group].CapabilityCurrent - ShmPsuGrouping->TotalGroupOutput[group].GTargetCurrent) / 10) * chargingInfo[group]->PresentChargingVoltage) / 1000;
  2429. ShmPsuGrouping->GroupCollection[group].DiffPower_PhysicalLimit = (((float)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[group].RemoteMaxPhysicalCurrent - ShmPsuGrouping->TotalGroupOutput[group].GTargetCurrent) / 10) * chargingInfo[group]->PresentChargingVoltage) / 1000;
  2430. }
  2431. else
  2432. {
  2433. ShmPsuGrouping->GroupCollection[group].DiffPower_Available = 0;
  2434. ShmPsuGrouping->GroupCollection[group].DiffPower_Capability = 0;
  2435. ShmPsuGrouping->GroupCollection[group].DiffPower_PhysicalLimit = 0;
  2436. }
  2437. }
  2438. else
  2439. {
  2440. ShmPsuGrouping->GroupCollection[group].GunLoading = 0;
  2441. }
  2442. }
  2443. // group: group index
  2444. void UpdatePsuGroupLoading(unsigned char group)
  2445. {
  2446. ShmPsuGrouping->GroupOutput[group].OutputLoading = ShmPsuData->PsuGroup[group].GroupAvailableCurrent != 0 ?
  2447. (ShmPsuGrouping->GroupOutput[group].GTargetCurrent * 10000 / ShmPsuData->PsuGroup[group].GroupAvailableCurrent) : 0;
  2448. }
  2449. // master: master group index
  2450. void UpdateMasterPsuGroupLoading(unsigned char master)
  2451. {
  2452. unsigned char slave = 0;
  2453. UpdatePsuGroupLoading(master);
  2454. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2455. {
  2456. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2457. UpdatePsuGroupLoading(slave);
  2458. }
  2459. }
  2460. void PsuGroupIncreaseCurrent(unsigned char group, unsigned short needIncrease, unsigned short *realIncreaseCurrent)
  2461. {
  2462. unsigned short increase = needIncrease;
  2463. if((ShmPsuGrouping->GroupOutput[group].GTargetCurrent + increase) <= ShmPsuData->PsuGroup[group].GroupAvailableCurrent)
  2464. {
  2465. ShmPsuGrouping->GroupOutput[group].GTargetCurrent += increase;
  2466. }
  2467. else
  2468. {
  2469. increase = ShmPsuData->PsuGroup[group].GroupAvailableCurrent - ShmPsuGrouping->GroupOutput[group].GTargetCurrent;
  2470. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = ShmPsuData->PsuGroup[group].GroupAvailableCurrent;
  2471. }
  2472. *realIncreaseCurrent += increase;
  2473. }
  2474. void PsuGroupDecreaseCurrent(unsigned char group, unsigned short needDecrease, unsigned short *realDecreaseCurrent)
  2475. {
  2476. unsigned short decrease = needDecrease;
  2477. if(ShmPsuGrouping->GroupOutput[group].GTargetCurrent >= (decrease + ZERO_CURRENT))
  2478. {
  2479. ShmPsuGrouping->GroupOutput[group].GTargetCurrent -= decrease;
  2480. }
  2481. else
  2482. {
  2483. decrease = ShmPsuGrouping->GroupOutput[group].GTargetCurrent - ZERO_CURRENT;
  2484. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = ZERO_CURRENT;
  2485. }
  2486. *realDecreaseCurrent += decrease;
  2487. }
  2488. void IncreaseCurrentByGunLoading(unsigned char group, unsigned short loading, unsigned short *realIncrease, unsigned short MaxIncrease)
  2489. {
  2490. unsigned short target = 0, need = 0;
  2491. if(*realIncrease >= MaxIncrease)
  2492. {
  2493. return;
  2494. }
  2495. target = (loading * ShmPsuData->PsuGroup[group].GroupAvailableCurrent) / 10000;
  2496. need = target >= ShmPsuGrouping->GroupOutput[group].GTargetCurrent ?
  2497. (target - ShmPsuGrouping->GroupOutput[group].GTargetCurrent) : 0;
  2498. need = need > (MaxIncrease - *realIncrease) ? (MaxIncrease - *realIncrease) : need;
  2499. //LOG_INFO("Group [%02X] Target Current %d.%d A, Increase Current: %d.%d A",
  2500. // group, (target / 10), (target % 10), (need / 10), (need % 10));
  2501. if(need > 0)
  2502. {
  2503. PsuGroupIncreaseCurrent(group, need, realIncrease);
  2504. }
  2505. }
  2506. void DecreaseCurrentByGunLoading(unsigned char group, unsigned short loading, unsigned short *realDecrease, unsigned short MaxDecrease)
  2507. {
  2508. unsigned short target = 0, need = 0;
  2509. if(*realDecrease >= MaxDecrease)
  2510. {
  2511. return;
  2512. }
  2513. target = (loading * ShmPsuData->PsuGroup[group].GroupAvailableCurrent) / 10000;
  2514. need = ShmPsuGrouping->GroupOutput[group].GTargetCurrent >= target ?
  2515. (ShmPsuGrouping->GroupOutput[group].GTargetCurrent - target) : 0;
  2516. need = need > (MaxDecrease - *realDecrease) ? (MaxDecrease - *realDecrease) : need;
  2517. //LOG_INFO("Group [%02X] Target Current %d.%d A, Decrease Current: %d.%d A",
  2518. // group, (target / 10), (target % 10), (need / 10), (need % 10));
  2519. if(need > 0)
  2520. {
  2521. PsuGroupDecreaseCurrent(group, need, realDecrease);
  2522. }
  2523. }
  2524. // master: master group index
  2525. void AverageIncreaseCurrent(unsigned char master, unsigned short NeedIncreaseCurrent)
  2526. {
  2527. unsigned char availableGroup = 0, slave = 0;
  2528. unsigned short avgGroupCurrent = 0, excessCurrent = 0, realIncrease = 0;
  2529. #if PSU_DEBUG_MSG
  2530. PSU_LOG("Gun %d Increase By GunLoading %d.%02d Percent",
  2531. master + 1, (ShmPsuGrouping->GroupCollection[master].GunLoading / 100), (ShmPsuGrouping->GroupCollection[master].GunLoading % 100));
  2532. #endif
  2533. IncreaseCurrentByGunLoading(master, ShmPsuGrouping->GroupCollection[master].GunLoading, &realIncrease, NeedIncreaseCurrent);
  2534. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2535. {
  2536. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2537. IncreaseCurrentByGunLoading(slave, ShmPsuGrouping->GroupCollection[master].GunLoading, &realIncrease, NeedIncreaseCurrent);
  2538. }
  2539. availableGroup = GetMasterAvailableGroup(master);
  2540. if(NeedIncreaseCurrent > realIncrease && availableGroup > 0)
  2541. {
  2542. // increase current by group quantity
  2543. avgGroupCurrent = (NeedIncreaseCurrent - realIncrease) / availableGroup;
  2544. #if PSU_DEBUG_MSG
  2545. PSU_LOG("Gun %d Increase By Group, AvgGroupCurrent %d.%d A",
  2546. master + 1, (avgGroupCurrent / 10), (avgGroupCurrent % 10));
  2547. #endif
  2548. PsuGroupIncreaseCurrent(master, avgGroupCurrent, &realIncrease);
  2549. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2550. {
  2551. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2552. PsuGroupIncreaseCurrent(slave, avgGroupCurrent, &realIncrease);
  2553. }
  2554. }
  2555. if(NeedIncreaseCurrent > realIncrease)
  2556. {
  2557. // increase excess current to master group
  2558. excessCurrent = NeedIncreaseCurrent - realIncrease;
  2559. #if PSU_DEBUG_MSG
  2560. PSU_LOG("Gun %d Increase, ExcessCurrent %d.%d A", master + 1, (excessCurrent / 10), (excessCurrent % 10));
  2561. #endif
  2562. PsuGroupIncreaseCurrent(master, excessCurrent, &realIncrease);
  2563. }
  2564. }
  2565. // master: master group index
  2566. void AverageDecreaseCurrent(unsigned char master, unsigned short NeedDecreaseCurrent)
  2567. {
  2568. unsigned char availableGroup = 0, slave = 0;
  2569. unsigned short avgGroupCurrent = 0, excessCurrent = 0, realDecrease = 0;
  2570. #if PSU_DEBUG_MSG
  2571. PSU_LOG("Gun %d Decrease By GunLoading %d.%02d Percent",
  2572. master + 1, (ShmPsuGrouping->GroupCollection[master].GunLoading / 100), (ShmPsuGrouping->GroupCollection[master].GunLoading % 100));
  2573. #endif
  2574. DecreaseCurrentByGunLoading(master, ShmPsuGrouping->GroupCollection[master].GunLoading, &realDecrease, NeedDecreaseCurrent);
  2575. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2576. {
  2577. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2578. DecreaseCurrentByGunLoading(slave, ShmPsuGrouping->GroupCollection[master].GunLoading, &realDecrease, NeedDecreaseCurrent);
  2579. }
  2580. availableGroup = GetMasterAvailableGroup(master);
  2581. if(NeedDecreaseCurrent > realDecrease)
  2582. {
  2583. // decrease current by group quantity
  2584. avgGroupCurrent = (NeedDecreaseCurrent - realDecrease) / availableGroup;
  2585. #if PSU_DEBUG_MSG
  2586. PSU_LOG("Gun %d Decrease By Group, AvgGroupCurrent %d.%d A",
  2587. master + 1, (avgGroupCurrent / 10), (avgGroupCurrent % 10));
  2588. #endif
  2589. PsuGroupDecreaseCurrent(master, avgGroupCurrent, &realDecrease);
  2590. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2591. {
  2592. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2593. PsuGroupDecreaseCurrent(slave, avgGroupCurrent, &realDecrease);
  2594. }
  2595. }
  2596. if(NeedDecreaseCurrent > realDecrease)
  2597. {
  2598. // decrease excess current
  2599. excessCurrent = NeedDecreaseCurrent - realDecrease;
  2600. #if PSU_DEBUG_MSG
  2601. PSU_LOG("Gun %d Decrease, ExcessCurrent %d.%d A", master + 1, (excessCurrent / 10), (excessCurrent % 10));
  2602. #endif
  2603. PsuGroupDecreaseCurrent(master, excessCurrent, &realDecrease);
  2604. }
  2605. }
  2606. void MasterIncreaseCurrent(unsigned char master, unsigned short NeedIncreaseCurrent)
  2607. {
  2608. unsigned short excessCurrent = 0, realIncrease = 0;
  2609. PsuGroupIncreaseCurrent(master, NeedIncreaseCurrent, &realIncrease);
  2610. if(NeedIncreaseCurrent > realIncrease)
  2611. {
  2612. excessCurrent = NeedIncreaseCurrent - realIncrease;
  2613. AverageIncreaseCurrent(master, excessCurrent);
  2614. }
  2615. }
  2616. void MasterDecreaseCurrent(unsigned char master, unsigned short NeedDecreaseCurrent)
  2617. {
  2618. unsigned char slave = 0;
  2619. unsigned short avgGroupCurrent = 0, excessCurrent = 0, realDecrease = 0;
  2620. if(ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity > 0)
  2621. {
  2622. // decrease current by group quantity
  2623. avgGroupCurrent = NeedDecreaseCurrent / ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity;
  2624. #if PSU_DEBUG_MSG
  2625. PSU_LOG("Gun %d Decrease By Group, AvgGroupCurrent %d.%d A",
  2626. master + 1, (avgGroupCurrent / 10), (avgGroupCurrent % 10));
  2627. #endif
  2628. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2629. {
  2630. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2631. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0)
  2632. {
  2633. PsuGroupDecreaseCurrent(slave, avgGroupCurrent, &realDecrease);
  2634. }
  2635. }
  2636. }
  2637. if(NeedDecreaseCurrent > realDecrease)
  2638. {
  2639. excessCurrent = NeedDecreaseCurrent - realDecrease;
  2640. PsuGroupDecreaseCurrent(master, excessCurrent, &realDecrease);
  2641. }
  2642. }
  2643. void UpdateMaxCurrent(unsigned char master, unsigned short current)
  2644. {
  2645. int time = 0;
  2646. // update max stage current
  2647. if(current > StageMaxCurrent[master])
  2648. {
  2649. StageMaxCurrent[master] = current;
  2650. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent = false;
  2651. GetClockTime(&_StageCurrent_time[master]);
  2652. }
  2653. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent)
  2654. {
  2655. time = GetTimeoutValue(_StageCurrent_time[master]) / uSEC_VAL;
  2656. if(time >= EV_MAX_STAGE_CURRENT_DELAY)
  2657. {
  2658. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent = true;
  2659. LOG_INFO("Gun %d Reach Max Stage Current", master + 1);
  2660. }
  2661. }
  2662. // update max target current and reset max current time
  2663. if(current > MaxCurrentDemand[master])
  2664. {
  2665. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxCurrentDemand)
  2666. {
  2667. LOG_INFO("Gun %d Max Current Demand Timer Reset", master + 1);
  2668. }
  2669. MaxCurrentDemand[master] = current;
  2670. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxCurrentDemand = false;
  2671. GetClockTime(&_MaxCurrent_time[master]);
  2672. }
  2673. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxCurrentDemand)
  2674. {
  2675. time = GetTimeoutValue(_MaxCurrent_time[master]) / uSEC_VAL;
  2676. if(time >= EV_MAX_CURRENT_DELAY)
  2677. {
  2678. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxCurrentDemand = true;
  2679. LOG_INFO("Gun %d Reach Max Current Demand", master + 1);
  2680. }
  2681. }
  2682. }
  2683. // master: master group index
  2684. bool IsMasterOutputCurrentStable(unsigned char master)
  2685. {
  2686. int time = 0;
  2687. bool stable = false, reachTarget = false;
  2688. unsigned short presentOutput = (int)chargingInfo[master]->PresentChargingCurrent * 10;
  2689. unsigned short TargetCurrent = 0;
  2690. TargetCurrent = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  2691. reachTarget = presentOutput > (TargetCurrent - REACH_CURRENT_TOLERANCE) && presentOutput < (TargetCurrent + REACH_CURRENT_TOLERANCE);
  2692. if((presentOutput >= StableOutputCurrent[master] && presentOutput - StableOutputCurrent[master] > REACH_CURRENT_TOLERANCE) ||
  2693. (presentOutput < StableOutputCurrent[master] && StableOutputCurrent[master] - presentOutput > REACH_CURRENT_TOLERANCE))
  2694. {
  2695. GetClockTime(&_ReachCurrent_time[master]);
  2696. StableOutputCurrent[master] = presentOutput;
  2697. }
  2698. time = GetTimeoutValue(_ReachCurrent_time[master]) / uSEC_VAL;
  2699. if(reachTarget || time >= CURRENT_STABLE_TIME ||
  2700. (ShmChargerInfo->Control.FCharging[master].FCtrl.bits.EnableForceCharging && time >= CURRENT_REACH_TARGET_TIME))
  2701. {
  2702. stable = true;
  2703. }
  2704. return stable;
  2705. }
  2706. // master: master group index
  2707. void MasterBalanceCurrent(unsigned char master)
  2708. {
  2709. int time = 0;
  2710. unsigned char slave = 0;
  2711. unsigned short realBalance = 0, grabCurrent = 0;
  2712. time = GetTimeoutValue(_BalanceCurrent_time[master]) / mSEC_VAL;
  2713. if(time >= BALANCE_CURRENT_INTERVAL)
  2714. {
  2715. //LOG_INFO("Gun %d Start Balance Current", master + 1);
  2716. DecreaseCurrentByGunLoading(master, ShmPsuGrouping->GroupCollection[master].GunLoading, &grabCurrent, MAX_ADJ_BALANCE_CURRENT);
  2717. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2718. {
  2719. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2720. DecreaseCurrentByGunLoading(slave, ShmPsuGrouping->GroupCollection[master].GunLoading, &grabCurrent, MAX_ADJ_BALANCE_CURRENT);
  2721. }
  2722. //LOG_INFO("Gun %d Grab Balance Current %d.%d A", master + 1, (grabCurrent / 10), (grabCurrent % 10));
  2723. IncreaseCurrentByGunLoading(master, ShmPsuGrouping->GroupCollection[master].GunLoading, &realBalance, grabCurrent);
  2724. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2725. {
  2726. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2727. IncreaseCurrentByGunLoading(slave, ShmPsuGrouping->GroupCollection[master].GunLoading, &realBalance, grabCurrent);
  2728. }
  2729. //LOG_INFO("Gun %d Increase Balance Current %d.%d A", master + 1, (realBalance / 10), (realBalance % 10));
  2730. UpdateMasterPsuGroupLoading(master);
  2731. GetClockTime(&_BalanceCurrent_time[master]);
  2732. }
  2733. }
  2734. unsigned short GetLoadingDiff(unsigned char master)
  2735. {
  2736. unsigned char slave = 0;
  2737. unsigned short maxLoading = 0, minLoading = 0, diffLoading = 0;
  2738. maxLoading = ShmPsuGrouping->GroupOutput[master].OutputLoading;
  2739. minLoading = ShmPsuGrouping->GroupOutput[master].OutputLoading;
  2740. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2741. {
  2742. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2743. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity == 0 || ShmPsuData->PsuGroup[slave].GroupAvailableCurrent == 0)
  2744. {
  2745. continue;
  2746. }
  2747. maxLoading = ShmPsuGrouping->GroupOutput[slave].OutputLoading > maxLoading ?
  2748. ShmPsuGrouping->GroupOutput[slave].OutputLoading : maxLoading;
  2749. minLoading = ShmPsuGrouping->GroupOutput[slave].OutputLoading < minLoading ?
  2750. ShmPsuGrouping->GroupOutput[slave].OutputLoading : minLoading;
  2751. }
  2752. diffLoading = maxLoading - minLoading;
  2753. return diffLoading;
  2754. }
  2755. void CheckCurrentBalance(unsigned char master)
  2756. {
  2757. unsigned short diffLoading = 0;
  2758. diffLoading = GetLoadingDiff(master);
  2759. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance)
  2760. {
  2761. if(diffLoading >= START_BALANCE_CRITERIA)
  2762. {
  2763. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance = true;
  2764. PSU_LOG("Gun %d Output Current Is Unbalance, diffLoading = %d.%02d", master + 1, (diffLoading / 100), (diffLoading % 100));
  2765. GetClockTime(&_BalanceCurrent_time[master]);
  2766. }
  2767. }
  2768. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance)
  2769. {
  2770. MasterBalanceCurrent(master);
  2771. diffLoading = GetLoadingDiff(master);
  2772. if(diffLoading <= STOP_BALANCE_CRITERIA)
  2773. {
  2774. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance = false;
  2775. PSU_LOG("Gun %d Output Current Is Balance", master + 1);
  2776. }
  2777. }
  2778. }
  2779. // master: master group index
  2780. // slave: slave group index
  2781. bool IsGroupPartner(unsigned char master, unsigned char slave)
  2782. {
  2783. bool find = false;
  2784. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2785. {
  2786. if(slave == ShmPsuGrouping->GroupCollection[master].Partner.Member[i])
  2787. {
  2788. find = true;
  2789. break;
  2790. }
  2791. }
  2792. return find;
  2793. }
  2794. void CleanSmoothDerating(unsigned char master)
  2795. {
  2796. ShmPsuGrouping->GroupCollection[master].SmoothDeratingTarget = 0;
  2797. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating = false;
  2798. }
  2799. void SetSmoothDerating(unsigned char master, unsigned char slave)
  2800. {
  2801. ShmPsuGrouping->GroupCollection[master].SmoothDeratingTarget = slave + 1;
  2802. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating = true;
  2803. GetClockTime(&_SmoothDerating_time[master]);
  2804. }
  2805. // master: master group index
  2806. void CheckSmoothBalance(unsigned char master)
  2807. {
  2808. int time = 0;
  2809. unsigned char slave = 0;
  2810. unsigned short realBalance = 0, grabCurrent = 0;
  2811. unsigned char _ReleaseSlave = 0;
  2812. if(ShmPsuGrouping->GroupCollection[master].SmoothDeratingTarget == 0 ||
  2813. !IsGroupPartner(master, ShmPsuGrouping->GroupCollection[master].SmoothDeratingTarget - 1))
  2814. {
  2815. CleanSmoothDerating(master);
  2816. LOG_INFO("Gun %d Smooth Derating Target Is Not Available!", master + 1);
  2817. return;
  2818. }
  2819. unsigned short _CapCurrent = 0; // unit: 0.1A
  2820. unsigned short _ReleaseCurrent = 0; // unit: 0.1A
  2821. unsigned short _ReleaseLoading = 0; // unit: 0.01%
  2822. unsigned short TargetCurrent = 0; // unit: 0.1A
  2823. PsuGroupPartner ReleaseMember;
  2824. _CapCurrent = (int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent;
  2825. TargetCurrent = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  2826. _ReleaseSlave = ShmPsuGrouping->GroupCollection[master].SmoothDeratingTarget - 1;
  2827. _ReleaseCurrent = (int)chargingInfo[master]->AvailableChargingCurrent > (int)ShmPsuData->PsuGroup[_ReleaseSlave].GroupAvailableCurrent ?
  2828. (int)chargingInfo[master]->AvailableChargingCurrent - (int)ShmPsuData->PsuGroup[_ReleaseSlave].GroupAvailableCurrent : 0;
  2829. _ReleaseLoading = _ReleaseCurrent != 0 ? (TargetCurrent * 10000 / _ReleaseCurrent) : 0;
  2830. if(ShmPsuGrouping->GroupOutput[_ReleaseSlave].GTargetCurrent <= MAX_ADJ_BALANCE_CURRENT)
  2831. {
  2832. float originalPower = 0, capabilityPower = 0, releasePower = 0;
  2833. memset(&ReleaseMember, 0x00, sizeof(PsuGroupPartner));
  2834. ReleaseMember.Member[0] = _ReleaseSlave;
  2835. ReleaseMember.Quantity = 1;
  2836. PrepareToPowerOff(0, &ReleaseMember);
  2837. originalPower = ((chargingInfo[master]->AvailableChargingCurrent / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2838. capabilityPower = ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2839. releasePower = (((float)(_ReleaseCurrent) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2840. LOG_INFO("Gun %d Smooth Release [%02X]", master + 1, ReleaseMember.Member[0]);
  2841. LOG_INFO("Gun %d Available %d A (%d kW) >> %d A (%d kW)",
  2842. master + 1,
  2843. ((int)chargingInfo[master]->AvailableChargingCurrent / 10), (int)originalPower,
  2844. (_ReleaseCurrent / 10), (int)releasePower);
  2845. LOG_INFO("Gun %d Capability %d A (%d kW) >> %d A (%d kW)",
  2846. master + 1,
  2847. ((int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent / 10), (int)capabilityPower,
  2848. _ReleaseCurrent >= _CapCurrent ? (_CapCurrent / 10) : (_ReleaseCurrent / 10), (int)releasePower);
  2849. CleanSmoothDerating(master);
  2850. return;
  2851. }
  2852. time = GetTimeoutValue(_SmoothDerating_time[master]) / mSEC_VAL;
  2853. if(time >= SMOOTH_DERATING_INTERVAL)
  2854. {
  2855. DecreaseCurrentByGunLoading(master, _ReleaseLoading, &grabCurrent, MAX_ADJ_BALANCE_CURRENT);
  2856. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2857. {
  2858. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2859. if(slave != _ReleaseSlave)
  2860. {
  2861. DecreaseCurrentByGunLoading(slave, _ReleaseLoading, &grabCurrent, MAX_ADJ_BALANCE_CURRENT);
  2862. }
  2863. else
  2864. {
  2865. DecreaseCurrentByGunLoading(slave, 0, &grabCurrent, MAX_ADJ_BALANCE_CURRENT);
  2866. }
  2867. }
  2868. //LOG_INFO("Gun %d Grab Balance Current %d.%d A", master + 1, (grabCurrent / 10), (grabCurrent % 10));
  2869. IncreaseCurrentByGunLoading(master, _ReleaseLoading, &realBalance, grabCurrent);
  2870. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2871. {
  2872. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2873. if(slave != _ReleaseSlave)
  2874. {
  2875. IncreaseCurrentByGunLoading(slave, _ReleaseLoading, &realBalance, grabCurrent);
  2876. }
  2877. }
  2878. //LOG_INFO("Gun %d Increase Balance Current %d.%d A", master + 1, (realBalance / 10), (realBalance % 10));
  2879. UpdateMasterPsuGroupLoading(master);
  2880. GetClockTime(&_SmoothDerating_time[master]);
  2881. }
  2882. }
  2883. bool IsOtherCharging(unsigned char group)
  2884. {
  2885. bool find = false;
  2886. int other = 0, selfTarget = 0, location = 0;
  2887. if(ShmPsuGrouping->GroupCollection[group].TargetGroup == 0)
  2888. {
  2889. return find;
  2890. }
  2891. selfTarget = ShmPsuGrouping->GroupCollection[group].TargetGroup - 1;
  2892. // search from left
  2893. location = ShmPsuGrouping->GroupCollection[group].Location - 1;
  2894. for(int i = location; i >= 0; i--)
  2895. {
  2896. other = ShmPsuGrouping->Layout[i];
  2897. if(ShmPsuGrouping->GroupCollection[other].Role == _GROLE_MASTER)
  2898. {
  2899. find = other != selfTarget ? true : false;
  2900. break;
  2901. }
  2902. }
  2903. if(!find)
  2904. {
  2905. // search from right
  2906. location = ShmPsuGrouping->GroupCollection[group].Location + 1;
  2907. for(int i = location; i < ShmChargerInfo->Control.MaxConnector; i++)
  2908. {
  2909. other = ShmPsuGrouping->Layout[i];
  2910. if(ShmPsuGrouping->GroupCollection[other].Role == _GROLE_MASTER)
  2911. {
  2912. find = other != selfTarget ? true : false;
  2913. break;
  2914. }
  2915. }
  2916. }
  2917. return find;
  2918. }
  2919. // master: master group index
  2920. void MasterReleasePsuGroup(unsigned char master)
  2921. {
  2922. bool findOtherInCharging = false;
  2923. unsigned char slave = 0, member = 0, releaseTarget = 0;
  2924. unsigned char otherCharging[MAX_GROUP_QUANTITY] = {0};
  2925. unsigned char releaseList[MAX_GROUP_QUANTITY] = {0};
  2926. float releasePower[MAX_GROUP_QUANTITY] = {0};
  2927. unsigned short releaseCurrent[MAX_GROUP_QUANTITY] = {0};
  2928. PsuGroupPartner ReleaseMember;
  2929. unsigned short target = 0, oriAvailableCurrent = 0, oriCapabilityCurrent = 0, maxReleaseCurrent = 0;
  2930. float targetPower = 0, oriAvailablePower = 0, capabilityPower = 0, maxReleasePower = 0;
  2931. if(ShmChargerInfo->PsuGrouping.GroupCollection[master].Role != _GROLE_MASTER ||
  2932. ShmPsuGrouping->GroupCollection[master].Partner.Quantity == 0)
  2933. {
  2934. return;
  2935. }
  2936. target = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  2937. targetPower = (((float)(target) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2938. oriAvailableCurrent = (int)chargingInfo[master]->AvailableChargingCurrent;
  2939. oriAvailablePower = (((float)oriAvailableCurrent / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2940. oriCapabilityCurrent = (int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent;
  2941. capabilityPower = (((float)oriCapabilityCurrent / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2942. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2943. {
  2944. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  2945. unsigned short current = 0;
  2946. PsuGroupPowerOffCheck(slave, &ReleaseMember);
  2947. otherCharging[i] = IsOtherCharging(slave);
  2948. findOtherInCharging = otherCharging[i] ? otherCharging[i] : findOtherInCharging;
  2949. releaseList[i] = slave;
  2950. for(int j = 0; j < ReleaseMember.Quantity; j++)
  2951. {
  2952. member = ReleaseMember.Member[j];
  2953. current += ShmPsuData->PsuGroup[member].GroupAvailableCurrent;
  2954. }
  2955. releaseCurrent[i] = current;
  2956. float power = (((float)(oriAvailableCurrent - releaseCurrent[i]) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  2957. if(power >= (targetPower + MAX_DIFF_POWER_TO_DERATING) ||
  2958. (oriAvailableCurrent - releaseCurrent[i]) >= oriCapabilityCurrent)
  2959. {
  2960. releasePower[i] = power;
  2961. }
  2962. else
  2963. {
  2964. releasePower[i] = 0;
  2965. }
  2966. //LOG_INFO("Gun %d Release [%02X], Total Release %d Group, Gun Loading %d.%02d >> %d.%02d", master + 1, slave, ReleaseMember.Quantity,
  2967. // (originalLoading / 100), (originalLoading % 100),
  2968. // (releaseLoading[i] / 100), (releaseLoading[i] % 100));
  2969. }
  2970. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  2971. {
  2972. if((otherCharging[i] || !findOtherInCharging) &&
  2973. releasePower[i] > maxReleasePower && releasePower[i] != 0)
  2974. {
  2975. maxReleasePower = releasePower[i];
  2976. maxReleaseCurrent = releaseCurrent[i];
  2977. releaseTarget = releaseList[i];
  2978. }
  2979. }
  2980. if(maxReleasePower > 0)
  2981. {
  2982. unsigned short _current = 0;
  2983. _current = oriAvailableCurrent - maxReleaseCurrent;
  2984. ShmPsuGrouping->GroupCollection[releaseTarget].GroupCtrl.bits.SlavePowerOffRequest = true;
  2985. LOG_INFO("Gun %d Set [%02X] Release(%s)",
  2986. master + 1, releaseTarget, findOtherInCharging ? "Other In Charging" : "Normal");
  2987. LOG_INFO("Gun %d Available %d A (%d kW) >> %d A (%d kW)",
  2988. master + 1,
  2989. (oriAvailableCurrent / 10), (int)oriAvailablePower, (_current / 10), (int)maxReleasePower);
  2990. LOG_INFO("Gun %d Capability %d A (%d kW) >> %d A (%d kW)",
  2991. master + 1,
  2992. (oriCapabilityCurrent / 10), (int)capabilityPower,
  2993. _current >= oriCapabilityCurrent ? (oriCapabilityCurrent / 10) : (_current / 10), (int)maxReleasePower);
  2994. }
  2995. }
  2996. // master: master group index
  2997. void MasterDynamicRelease(unsigned char master)
  2998. {
  2999. unsigned char slave = 0;
  3000. PsuGroupPartner ReleaseMember;
  3001. unsigned short target = 0, releaseCurrent = 0, originalAvailable = 0, originalCapability = 0;
  3002. float targetPower = 0, originalPower = 0, capabilityPower = 0, releasePower = 0;
  3003. if(ShmChargerInfo->PsuGrouping.GroupCollection[master].Role != _GROLE_MASTER ||
  3004. ShmPsuGrouping->GroupCollection[master].Partner.Quantity == 0)
  3005. {
  3006. return;
  3007. }
  3008. target = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  3009. targetPower = (((float)(target) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3010. originalAvailable = (int)chargingInfo[master]->AvailableChargingCurrent;
  3011. originalCapability = (int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent;
  3012. releaseCurrent = 0;
  3013. memset(&ReleaseMember, 0x00, sizeof(PsuGroupPartner));
  3014. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3015. {
  3016. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3017. releasePower = (((float)(originalAvailable - releaseCurrent - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3018. if(releasePower >= (targetPower + MAX_DIFF_POWER_TO_DERATING) ||
  3019. (originalAvailable - releaseCurrent - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) >= originalCapability)
  3020. {
  3021. releaseCurrent += ShmPsuData->PsuGroup[slave].GroupAvailableCurrent;
  3022. ReleaseMember.Member[ReleaseMember.Quantity] = slave;
  3023. ReleaseMember.Quantity++;
  3024. }
  3025. }
  3026. if(ReleaseMember.Quantity > 0)
  3027. {
  3028. char strMember[64];
  3029. memset(strMember, 0x00, sizeof(strMember));
  3030. for(int i = 0; i < ReleaseMember.Quantity; i++)
  3031. {
  3032. char strTemp[16];
  3033. sprintf(strTemp, " [%02X]", ReleaseMember.Member[i]);
  3034. strcat(strMember, strTemp);
  3035. }
  3036. PrepareToPowerOff(0, &ReleaseMember);
  3037. originalPower = (((float)originalAvailable / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3038. capabilityPower = (((float)originalCapability / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3039. releasePower = (((float)(originalAvailable - releaseCurrent) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3040. LOG_INFO("Gun %d Direct Release%s", master + 1, strMember);
  3041. LOG_INFO("Gun %d Available %d A (%d kW) >> %d A (%d kW)",
  3042. master + 1,
  3043. (originalAvailable / 10), (int)originalPower,
  3044. ((originalAvailable - releaseCurrent) / 10), (int)releasePower);
  3045. LOG_INFO("Gun %d Capability %d A (%d kW) >> %d A (%d kW)",
  3046. master + 1,
  3047. (originalCapability / 10), (int)capabilityPower,
  3048. ((originalAvailable - releaseCurrent) / 10), (int)releasePower);
  3049. }
  3050. }
  3051. void FindDeratingPriority(unsigned char master, PsuGroupPartner *tPartner)
  3052. {
  3053. unsigned char slave = 0;
  3054. memset(tPartner, 0x00, sizeof(PsuGroupPartner));
  3055. if((ShmChargerInfo->Control.MaxConnector - 1 - ShmPsuGrouping->GroupCollection[master].Location) > ShmPsuGrouping->GroupCollection[master].Location - 0)
  3056. {
  3057. for(int i = ShmChargerInfo->Control.MaxConnector - 1; i >= 0; i--)
  3058. {
  3059. slave = ShmPsuGrouping->Layout[i];
  3060. if(slave != master)
  3061. {
  3062. if((ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1) == master)
  3063. {
  3064. tPartner->Member[tPartner->Quantity++] = slave;
  3065. }
  3066. }
  3067. else
  3068. {
  3069. break;
  3070. }
  3071. }
  3072. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  3073. {
  3074. slave = ShmPsuGrouping->Layout[i];
  3075. if(slave != master)
  3076. {
  3077. if((ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1) == master)
  3078. {
  3079. tPartner->Member[tPartner->Quantity++] = slave;
  3080. }
  3081. }
  3082. else
  3083. {
  3084. break;
  3085. }
  3086. }
  3087. }
  3088. else
  3089. {
  3090. for(int i = 0; i < ShmChargerInfo->Control.MaxConnector; i++)
  3091. {
  3092. slave = ShmPsuGrouping->Layout[i];
  3093. if(slave != master)
  3094. {
  3095. if((ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1) == master)
  3096. {
  3097. tPartner->Member[tPartner->Quantity++] = slave;
  3098. }
  3099. }
  3100. else
  3101. {
  3102. break;
  3103. }
  3104. }
  3105. for(int i = ShmChargerInfo->Control.MaxConnector - 1; i >= 0; i--)
  3106. {
  3107. slave = ShmPsuGrouping->Layout[i];
  3108. if(slave != master)
  3109. {
  3110. if((ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1) == master)
  3111. {
  3112. tPartner->Member[tPartner->Quantity++] = slave;
  3113. }
  3114. }
  3115. else
  3116. {
  3117. break;
  3118. }
  3119. }
  3120. }
  3121. }
  3122. // master: master group index
  3123. void CheckSmoothDerating(unsigned char master)
  3124. {
  3125. unsigned char slave = 0;
  3126. unsigned short target = 0, originalAvailable = 0, originalCapability = 0;
  3127. float targetPower = 0, releasePower = 0;
  3128. PsuGroupPartner releasePriority;
  3129. if(ShmChargerInfo->PsuGrouping.GroupCollection[master].Role != _GROLE_MASTER ||
  3130. ShmPsuGrouping->GroupCollection[master].Partner.Quantity == 0 ||
  3131. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating)
  3132. {
  3133. return;
  3134. }
  3135. target = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  3136. targetPower = (((float)(target) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3137. originalAvailable = (int)chargingInfo[master]->AvailableChargingCurrent;
  3138. originalCapability = (int)ShmSysConfigAndInfo->SysInfo.ConnectorInfo[master].CapabilityCurrent;
  3139. FindDeratingPriority(master, &releasePriority);
  3140. for(int i = 0; i < releasePriority.Quantity; i++)
  3141. {
  3142. slave = releasePriority.Member[i];
  3143. releasePower = (((float)(originalAvailable - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3144. if(releasePower >= (targetPower + MAX_DIFF_POWER_TO_DERATING) ||
  3145. (originalAvailable - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) >= originalCapability)
  3146. {
  3147. SetSmoothDerating(master, slave);
  3148. LOG_INFO("Gun %d Set Smooth Derating Member: [%02X]", master + 1, slave);
  3149. break;
  3150. }
  3151. }
  3152. /*
  3153. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3154. {
  3155. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3156. releasePower = (((float)(originalAvailable - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) / 10) * chargingInfo[master]->PresentChargingVoltage) / 1000;
  3157. if(releasePower >= (targetPower + MAX_DIFF_POWER_TO_DERATING) ||
  3158. (originalAvailable - ShmPsuData->PsuGroup[slave].GroupAvailableCurrent) >= originalCapability)
  3159. {
  3160. SetSmoothDerating(master, slave);
  3161. LOG_INFO("Gun %d Set Smooth Derating Member: [%02X]", master + 1, slave);
  3162. break;
  3163. }
  3164. }
  3165. */
  3166. }
  3167. void CheckReleaseOrExtend(unsigned char master)
  3168. {
  3169. int time = 0;
  3170. if((ShmChargerInfo->Control.TestCtrl.bits.ChargingSimulation || Is_EnableReleaseAndExtendWhenForceCharging(master)) &&
  3171. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.DeratingCtrlValue == 0 &&
  3172. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue == 0)
  3173. {
  3174. if(ShmPsuGrouping->GroupCollection[master].DiffPower_Available >= MIN_RELEASE_POWER)
  3175. {
  3176. if(ShmPsuGrouping->GroupCollection[master].Partner.Quantity > 0 &&
  3177. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent &&
  3178. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxCurrentDemand)
  3179. {
  3180. #if ENABLE_SMOOTH_DERATING == 0
  3181. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  3182. {
  3183. MasterReleasePsuGroup(master);
  3184. }
  3185. else
  3186. {
  3187. MasterDynamicRelease(master);
  3188. }
  3189. #else
  3190. CheckSmoothDerating(master);
  3191. #endif
  3192. }
  3193. }
  3194. else if(ShmPsuGrouping->GroupCollection[master].DiffPower_Capability <= MAX_DIFF_POWER_TO_EXTEND &&
  3195. ShmPsuGrouping->GroupCollection[master].DiffPower_PhysicalLimit >= MIN_DIFF_PHYSICAL_POWER)
  3196. {
  3197. time = GetTimeoutValue(_ExtendCapability_time[master]) / uSEC_VAL;
  3198. if(time >= EXTEND_AFTER_DERATING_DELAY)
  3199. {
  3200. int available = GetPsuGroupAvailable(master);
  3201. if(available > 0)
  3202. {
  3203. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendAvailable)
  3204. {
  3205. LOG_INFO("Gun %d Extend Capability Available, DifPcap: %.1f kW, DifPphy: %.1f",
  3206. master + 1,
  3207. ShmPsuGrouping->GroupCollection[master].DiffPower_Capability,
  3208. ShmPsuGrouping->GroupCollection[master].DiffPower_PhysicalLimit);
  3209. GetClockTime(&_ExtendCapability_time[master]);
  3210. }
  3211. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendAvailable = true;
  3212. }
  3213. }
  3214. }
  3215. }
  3216. }
  3217. bool IsPsuGroupOutputConfigDifferent(unsigned char group)
  3218. {
  3219. bool different = false;
  3220. if(ShmPsuGrouping->GroupOutput[group].GTargetVoltage != PreGroupOutput[group].GTargetVoltage ||
  3221. ShmPsuGrouping->GroupOutput[group].GTargetCurrent != PreGroupOutput[group].GTargetCurrent)
  3222. {
  3223. different = true;
  3224. }
  3225. PreGroupOutput[group].GTargetVoltage = ShmPsuGrouping->GroupOutput[group].GTargetVoltage;
  3226. PreGroupOutput[group].GTargetCurrent = ShmPsuGrouping->GroupOutput[group].GTargetCurrent;
  3227. return different;
  3228. }
  3229. // Gun X Demand Change -> Voltage: XXXX.X V, Current: XXXX.X A, Available: XXXX.X A, Loading: XXX.XX
  3230. // Master [XX] -> Voltage: XXXX.X V, Current: XXXX.X A, Available: XXXX.X A, Loading: XXX.XX
  3231. // Member [XX] -> Voltage: XXXX.X V, Current: XXXX.X A, Available: XXXX.X A, Loading: XXX.XX
  3232. void ShowPsuGroupOutputConfig(unsigned char master)
  3233. {
  3234. unsigned char slave = 0;
  3235. PSU_LOG("Gun %d Demand Change -> Voltage: %4d V, Current: %4d.%d A, Available: %4d.%d A, Loading: %3d.%02d",
  3236. master + 1, (ShmPsuGrouping->GroupOutput[master].GTargetVoltage / 10),
  3237. ((int)chargingInfo[master]->EvBatterytargetCurrent), (((int)(chargingInfo[master]->EvBatterytargetCurrent * 10)) % 10),
  3238. ((int)chargingInfo[master]->AvailableChargingCurrent / 10), ((int)chargingInfo[master]->AvailableChargingCurrent % 10),
  3239. (ShmPsuGrouping->GroupCollection[master].GunLoading / 100), (ShmPsuGrouping->GroupCollection[master].GunLoading % 100));
  3240. PSU_LOG(" Master [%02X] -> Voltage: %4d V, Current: %4d.%d A, Available: %4d.%d A, Loading: %3d.%02d",
  3241. master, (ShmPsuGrouping->GroupOutput[master].GTargetVoltage / 10),
  3242. (ShmPsuGrouping->GroupOutput[master].GTargetCurrent / 10), (ShmPsuGrouping->GroupOutput[master].GTargetCurrent % 10),
  3243. (ShmPsuData->PsuGroup[master].GroupAvailableCurrent / 10), (ShmPsuData->PsuGroup[master].GroupAvailableCurrent % 10),
  3244. (ShmPsuGrouping->GroupOutput[master].OutputLoading / 100), (ShmPsuGrouping->GroupOutput[master].OutputLoading % 100));
  3245. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3246. {
  3247. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3248. PSU_LOG(" Member [%02X] -> Voltage: %4d V, Current: %4d.%d A, Available: %4d.%d A, Loading: %3d.%02d",
  3249. slave, (ShmPsuGrouping->GroupOutput[slave].GTargetVoltage / 10),
  3250. (ShmPsuGrouping->GroupOutput[slave].GTargetCurrent / 10), (ShmPsuGrouping->GroupOutput[slave].GTargetCurrent % 10),
  3251. (ShmPsuData->PsuGroup[slave].GroupAvailableCurrent / 10), (ShmPsuData->PsuGroup[slave].GroupAvailableCurrent % 10),
  3252. (ShmPsuGrouping->GroupOutput[slave].OutputLoading / 100), (ShmPsuGrouping->GroupOutput[slave].OutputLoading % 100));
  3253. }
  3254. }
  3255. void PsuGroupOutputConfigCheck(unsigned char master)
  3256. {
  3257. unsigned char slave = 0;
  3258. bool show = false;
  3259. show = IsPsuGroupOutputConfigDifferent(master);
  3260. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3261. {
  3262. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3263. if(IsPsuGroupOutputConfigDifferent(slave))
  3264. {
  3265. show = true;
  3266. }
  3267. }
  3268. if(show)
  3269. {
  3270. ShowPsuGroupOutputConfig(master);
  3271. }
  3272. }
  3273. void StepRecognition(unsigned char master, unsigned short voltage)
  3274. {
  3275. if(_GfdStep[master] == PREPARE_STEP_NONE && voltage > 0)
  3276. {
  3277. // gfd step
  3278. _GfdStep[master] = PREPARE_STEP_CABLE_CHECK;
  3279. LOG_INFO("Gun %d GFD Start Step", master + 1);
  3280. }
  3281. else if(_GfdStep[master] == PREPARE_STEP_CABLE_CHECK && voltage == 0)
  3282. {
  3283. // gfd done step
  3284. _GfdStep[master] = PREPARE_STEP_GFD_DONE;
  3285. LOG_INFO("Gun %d GFD Stop Step", master + 1);
  3286. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.CableCheckDone = true;
  3287. }
  3288. else if(_GfdStep[master] == PREPARE_STEP_GFD_DONE && voltage >= SAFETY_PRECHARGE_OFFSET)
  3289. {
  3290. // precharge step
  3291. _GfdStep[master] = PREPARE_STEP_PRECHARGE;
  3292. LOG_INFO("Gun %d PreCharge Step", master + 1);
  3293. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.InPrechargeMode = true;
  3294. }
  3295. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AlreadyInChargingMode)
  3296. {
  3297. // charging step
  3298. if(_GfdStep[master] != PREPARE_STEP_CHARGING)
  3299. {
  3300. LOG_INFO("Gun %d Charging Step", master + 1);
  3301. }
  3302. _GfdStep[master] = PREPARE_STEP_CHARGING;
  3303. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.InPrechargeMode)
  3304. {
  3305. if(_VoltageResumeCnt[master] < MAX_CHARGING_DELAY_COUNT)
  3306. {
  3307. int time = GetTimeoutValue(_ChargingDelay_time[master]) / mSEC_VAL;
  3308. if(time >= CHARGING_DELAY_INTERVAL)
  3309. {
  3310. GetClockTime(&_ChargingDelay_time[master]);
  3311. _VoltageResumeCnt[master]++;
  3312. }
  3313. }
  3314. else
  3315. {
  3316. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.InPrechargeMode = false;
  3317. }
  3318. }
  3319. }
  3320. }
  3321. // master: master group index
  3322. // voltage: target voltage, unit: 0.1V
  3323. void UpdateOutputGroupVoltage(unsigned char master, unsigned short voltage)
  3324. {
  3325. unsigned char slave = 0;
  3326. ShmPsuGrouping->TotalGroupOutput[master].GTargetVoltage = voltage;
  3327. // set master group output voltage
  3328. ShmPsuGrouping->GroupOutput[master].GTargetVoltage = voltage;
  3329. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3330. {
  3331. // set slave group output voltage
  3332. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3333. #if ONE_MODULE_OUTPUT
  3334. // for safety test (inrush current)
  3335. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.InPrechargeMode)
  3336. {
  3337. ShmPsuGrouping->GroupOutput[slave].GTargetVoltage = 0;
  3338. }
  3339. else
  3340. {
  3341. ShmPsuGrouping->GroupOutput[slave].GTargetVoltage = voltage;
  3342. }
  3343. #else
  3344. ShmPsuGrouping->GroupOutput[slave].GTargetVoltage = voltage;
  3345. #endif
  3346. }
  3347. }
  3348. // master: master group index
  3349. // group: self group index
  3350. void UpdatePsuGroupOutputConfig(unsigned char master)
  3351. {
  3352. unsigned char slave = 0;
  3353. unsigned short TargetVoltage = 0, TargetCurrent = 0, PresentTargetCurrent = 0;
  3354. unsigned short current = 0;
  3355. TargetVoltage = (int)(chargingInfo[master]->EvBatterytargetVoltage * 10);
  3356. TargetCurrent = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  3357. if(Is_OutputK1K2_Ready(master) || ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.CableCheckDone)
  3358. {
  3359. // update target voltage
  3360. StepRecognition(master, TargetVoltage);
  3361. #if PRECHARGE_OFFSET
  3362. // for safety test (inrush current)
  3363. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AlreadyInChargingMode)
  3364. {
  3365. GCTargetVoltage[master] = _GfdStep[master] == PREPARE_STEP_PRECHARGE ?
  3366. TargetVoltage - SAFETY_PRECHARGE_OFFSET : TargetVoltage;
  3367. }
  3368. else
  3369. {
  3370. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.InPrechargeMode)
  3371. {
  3372. GCTargetVoltage[master] = TargetVoltage > (GCTargetVoltage[master] + VOLTAGE_RESUME_STEP) ?
  3373. (GCTargetVoltage[master] + VOLTAGE_RESUME_STEP) : TargetVoltage;
  3374. }
  3375. else
  3376. {
  3377. GCTargetVoltage[master] = TargetVoltage;
  3378. }
  3379. }
  3380. #else
  3381. GCTargetVoltage[master] = TargetVoltage;
  3382. #endif
  3383. UpdateOutputGroupVoltage(master, GCTargetVoltage[master]);
  3384. // update target current
  3385. if(((ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity + 1) * ZERO_CURRENT) > TargetCurrent ||
  3386. !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AlreadyInChargingMode)
  3387. {
  3388. current = ZERO_CURRENT;
  3389. #if PSU_DEBUG_MSG
  3390. if(ShmPsuGrouping->GroupOutput[master].GTargetCurrent != current)
  3391. {
  3392. LOG_INFO("Gun %d Need Minimum Target Current = %d", master + 1, current);
  3393. }
  3394. #endif
  3395. ShmPsuGrouping->TotalGroupOutput[master].GTargetCurrent = current;
  3396. ShmPsuGrouping->GroupOutput[master].GTargetCurrent = current;
  3397. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3398. {
  3399. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3400. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE || ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF)
  3401. {
  3402. #if ONE_MODULE_OUTPUT
  3403. // for safety test (inrush current)
  3404. ShmPsuGrouping->GroupOutput[slave].GTargetCurrent = 0;
  3405. #else
  3406. ShmPsuGrouping->GroupOutput[slave].GTargetCurrent =
  3407. ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0 ? ZERO_CURRENT : 0;
  3408. #endif
  3409. ShmPsuGrouping->TotalGroupOutput[master].GTargetCurrent += ShmPsuGrouping->GroupOutput[slave].GTargetCurrent;
  3410. }
  3411. }
  3412. unsigned short diffCurrent = 0;
  3413. diffCurrent = ShmPsuGrouping->TotalGroupOutput[master].GTargetCurrent < TargetCurrent ? (TargetCurrent - ShmPsuGrouping->TotalGroupOutput[master].GTargetCurrent) : 0;
  3414. ShmPsuGrouping->GroupOutput[master].GTargetCurrent += diffCurrent;
  3415. }
  3416. else
  3417. {
  3418. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed)
  3419. {
  3420. // master in normal output mode
  3421. PresentTargetCurrent = GetPresentTargetCurrent(master, _GROLE_MASTER);
  3422. current = TargetCurrent <= (int)chargingInfo[master]->AvailableChargingCurrent ?
  3423. TargetCurrent : (int)chargingInfo[master]->AvailableChargingCurrent;
  3424. #if PSU_DEBUG_MSG
  3425. if(GCTargetCurrent[master] != current)
  3426. {
  3427. LOG_INFO("Gun %d Need Normal Target Current = %d.%d A", master + 1, (current / 10), (current % 10));
  3428. }
  3429. #endif
  3430. ShmPsuGrouping->TotalGroupOutput[master].GTargetCurrent = current;
  3431. GCTargetCurrent[master] = current;
  3432. UpdateMaxCurrent(master, GCTargetCurrent[master]);
  3433. if(GCTargetCurrent[master] > PresentTargetCurrent)
  3434. {
  3435. // increase current
  3436. OutputConfigStep[master] = _CURRENT_MODE_INCREASE;
  3437. PSU_LOG("Gun %d Increase Current: %d.%d A, %d.%d A -> %d.%d A", master + 1,
  3438. ((GCTargetCurrent[master] - PresentTargetCurrent) / 10), ((GCTargetCurrent[master] - PresentTargetCurrent) % 10),
  3439. (PresentTargetCurrent / 10), (PresentTargetCurrent % 10), (GCTargetCurrent[master] / 10), (GCTargetCurrent[master] % 10));
  3440. #if MASTER_OUTPUT_FIRST
  3441. // for safety test
  3442. if(GCTargetCurrent[master] <= CURRENT_BALANCE_CRITERIA)
  3443. {
  3444. MasterIncreaseCurrent(master, GCTargetCurrent[master] - PresentTargetCurrent);
  3445. }
  3446. else
  3447. {
  3448. AverageIncreaseCurrent(master, GCTargetCurrent[master] - PresentTargetCurrent);
  3449. }
  3450. #else
  3451. AverageIncreaseCurrent(master, GCTargetCurrent[master] - PresentTargetCurrent);
  3452. #endif
  3453. }
  3454. else if(GCTargetCurrent[master] < PresentTargetCurrent)
  3455. {
  3456. // decrease current
  3457. OutputConfigStep[master] = _CURRENT_MODE_DECREASE;
  3458. PSU_LOG("Gun %d Decrease Current: %d.%d A, %d.%d A -> %d.%d A", master + 1,
  3459. ((PresentTargetCurrent - GCTargetCurrent[master]) / 10), ((PresentTargetCurrent - GCTargetCurrent[master]) % 10),
  3460. (PresentTargetCurrent / 10), (PresentTargetCurrent % 10), (GCTargetCurrent[master] / 10), (GCTargetCurrent[master] % 10));
  3461. #if MASTER_OUTPUT_FIRST
  3462. // for safety test
  3463. if(GCTargetCurrent[master] <= ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity * CURRENT_BALANCE_CRITERIA)
  3464. {
  3465. MasterDecreaseCurrent(master, PresentTargetCurrent - GCTargetCurrent[master]);
  3466. }
  3467. else
  3468. {
  3469. AverageDecreaseCurrent(master, PresentTargetCurrent - GCTargetCurrent[master]);
  3470. }
  3471. #else
  3472. AverageDecreaseCurrent(master, PresentTargetCurrent - GCTargetCurrent[master]);
  3473. #endif
  3474. }
  3475. else
  3476. {
  3477. // balance current or do not change
  3478. OutputConfigStep[master] = _CURRENT_MODE_BALANCE;
  3479. if(OutputConfigStep[master] != _preOutputConfigStep[master])
  3480. {
  3481. GetClockTime(&_ReachCurrent_time[master]);
  3482. PSU_LOG("Gun %d In Balance Mode", master + 1);
  3483. StableOutputCurrent[master] = (int)chargingInfo[master]->PresentChargingCurrent * 10;
  3484. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.OutputCurrentStable = false;
  3485. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance = false;
  3486. }
  3487. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.OutputCurrentStable)
  3488. {
  3489. if(IsMasterOutputCurrentStable(master))
  3490. {
  3491. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.OutputCurrentStable = true;
  3492. LOG_INFO("Gun %d Output Current = %5.1f A Stable", master + 1, chargingInfo[master]->PresentChargingCurrent);
  3493. }
  3494. }
  3495. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.OutputCurrentStable ||
  3496. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating)
  3497. {
  3498. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating)
  3499. {
  3500. CheckSmoothBalance(master);
  3501. }
  3502. else
  3503. {
  3504. #if MASTER_OUTPUT_FIRST
  3505. // for safety test
  3506. if(GCTargetCurrent[master] > ShmPsuGrouping->GroupCollection[master].Partner.RealQuantity * CURRENT_BALANCE_CRITERIA)
  3507. {
  3508. CheckCurrentBalance(master);
  3509. }
  3510. else
  3511. {
  3512. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance = false;
  3513. }
  3514. #else
  3515. CheckCurrentBalance(master);
  3516. #endif
  3517. }
  3518. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedCurrentBalance &&
  3519. !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.SmoothDerating)
  3520. {
  3521. CheckReleaseOrExtend(master);
  3522. }
  3523. }
  3524. }
  3525. }
  3526. else
  3527. {
  3528. // master in derating mode
  3529. OutputConfigStep[master] = _CURRENT_MODE_DERATING;
  3530. if(OutputConfigStep[master] != _preOutputConfigStep[master])
  3531. {
  3532. LOG_INFO("Gun %d In Derating Mode", master + 1);
  3533. }
  3534. }
  3535. _preOutputConfigStep[master] = OutputConfigStep[master];
  3536. }
  3537. }
  3538. else
  3539. {
  3540. ShmPsuGrouping->GroupOutput[master].GTargetVoltage = 0;
  3541. ShmPsuGrouping->GroupOutput[master].GTargetCurrent = 0;
  3542. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3543. {
  3544. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3545. ShmPsuGrouping->GroupOutput[slave].GTargetVoltage = 0;
  3546. ShmPsuGrouping->GroupOutput[slave].GTargetCurrent = 0;
  3547. }
  3548. }
  3549. }
  3550. // group: self group index
  3551. void SetPsuGroupOutput(unsigned char group)
  3552. {
  3553. int time = 0;
  3554. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  3555. {
  3556. if(ShmPsuGrouping->GroupOutput[group].GTargetVoltage >= PSU_MIN_VOL)
  3557. {
  3558. #if ONE_MODULE_OUTPUT
  3559. // for safety test (inrush current)
  3560. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.InPrechargeMode)
  3561. {
  3562. SingleOutputVol(ShmPsuPosition->GroupLocationInfo[group].PsuSN[0], ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3563. }
  3564. else
  3565. {
  3566. PresentOutputVol(group, ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3567. }
  3568. #else
  3569. PresentOutputVol(group, ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3570. #endif
  3571. if(!isStartOutputSwitch[group])
  3572. {
  3573. SetPsuGroupPowerOnOff(group, _PSU_ON);
  3574. GetClockTime(&_PoweOnOff_time[group]);
  3575. }
  3576. }
  3577. else
  3578. {
  3579. if(isStartOutputSwitch[group])
  3580. {
  3581. SetPsuGroupPowerOnOff(group, _PSU_OFF);
  3582. GetClockTime(&_PoweOnOff_time[group]);
  3583. }
  3584. #if ONE_MODULE_OUTPUT
  3585. // for safety test (inrush current)
  3586. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.InPrechargeMode)
  3587. {
  3588. SingleOutputVol(ShmPsuPosition->GroupLocationInfo[group].PsuSN[0], ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3589. }
  3590. else
  3591. {
  3592. PresentOutputVol(group, ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3593. }
  3594. #else
  3595. PresentOutputVol(group, ShmPsuGrouping->GroupOutput[group].GTargetVoltage, ShmPsuGrouping->GroupOutput[group].GTargetCurrent);
  3596. #endif
  3597. }
  3598. }
  3599. time = GetTimeoutValue(_PoweOnOff_time[group]) / uSEC_VAL;
  3600. if(time > POWER_ONOFF_RESEND_INTERVAL)
  3601. {
  3602. SetPsuGroupPowerOnOff(group, isStartOutputSwitch[group] ? _PSU_ON : _PSU_OFF);
  3603. GetClockTime(&_PoweOnOff_time[group]);
  3604. }
  3605. //UpdatePsuGroupLoading(group);
  3606. UpdateGunLoading(group);
  3607. }
  3608. // master: master group index
  3609. bool CanMasterStartDerating(unsigned char master)
  3610. {
  3611. bool start = false;
  3612. unsigned short TargetCurrent = 0;
  3613. TargetCurrent = (int)(chargingInfo[master]->EvBatterytargetCurrent * 10);
  3614. if(TargetCurrent <= ShmPsuGrouping->GroupCollection[master].ReAssignAvailableCurrent)
  3615. {
  3616. start = true;
  3617. }
  3618. return start;
  3619. }
  3620. // master: master group index
  3621. // role_condition: when role_condition = _GROLE_MASTER, stop all member
  3622. void SetMemberStartPowerOff(unsigned char master, unsigned char role_condition)
  3623. {
  3624. unsigned char slave = 0;
  3625. char strMember[64];
  3626. bool find = false;
  3627. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER)
  3628. {
  3629. sprintf(strMember, "Gun %d Set Member:", master + 1);
  3630. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3631. {
  3632. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3633. if(role_condition == _GROLE_MASTER || ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF)
  3634. {
  3635. SetPsuGroupRole(slave, _GROLE_SLAVE_POWER_OFF);
  3636. char strSlave[8];
  3637. sprintf(strSlave, " [%02X]", slave);
  3638. strcat(strMember, strSlave);
  3639. find = true;
  3640. }
  3641. }
  3642. if(find)
  3643. {
  3644. strcat(strMember, " Power Off");
  3645. LOG_INFO("%s", strMember);
  3646. }
  3647. }
  3648. }
  3649. // master: master group index
  3650. bool IsMemberPowerOffOK(unsigned char master)
  3651. {
  3652. bool done = true;
  3653. unsigned char slave = 0;
  3654. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3655. {
  3656. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3657. if(ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_SLAVE && ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_SWITCH_OFF_OK)
  3658. {
  3659. done = false;
  3660. }
  3661. }
  3662. return done;
  3663. }
  3664. // master: master group index
  3665. void SetMemberPowerOffDone(unsigned char master)
  3666. {
  3667. unsigned char slave = 0;
  3668. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER)
  3669. {
  3670. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].Partner.Quantity; i++)
  3671. {
  3672. slave = ShmPsuGrouping->GroupCollection[master].Partner.Member[i];
  3673. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SWITCH_OFF_OK)
  3674. {
  3675. SetPsuGroupRole(slave, _GROLE_WAIT_IDLE);
  3676. }
  3677. else if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE_POWER_OFF)
  3678. {
  3679. // can not power off normally
  3680. SetPsuGroupRole(slave, _GROLE_TERMINATE);
  3681. }
  3682. }
  3683. }
  3684. }
  3685. unsigned char _ParallelRelay[MAX_GROUP_QUANTITY];
  3686. void SetPCabinetParallelRelay(unsigned short parallelConfig)
  3687. {
  3688. bool change = false;
  3689. if(ShmChargerInfo->Control.CabinetRole == _CROLE_MASTER)
  3690. {
  3691. for(int i = 0; i < MAX_SLAVE_CABINET_QUANTITY; i++)
  3692. {
  3693. change = false;
  3694. if(ShmChargerInfo->ParallelCabinet.PCabinet[i].LocalStatus == _DeviceStatus_Idle ||
  3695. ShmChargerInfo->ParallelCabinet.PCabinet[i].LocalStatus == _DeviceStatus_Alarm ||
  3696. ShmChargerInfo->ParallelCabinet.PCabinet[i].LocalStatus == _DeviceStatus_Charging)
  3697. {
  3698. for(int j = 0; j < GENERAL_GUN_QUANTITY; j++)
  3699. {
  3700. _ParallelRelay[j] = (parallelConfig & (1 << j)) > 0 ? YES : NO;
  3701. if(_ParallelRelay[i] != ShmChargerInfo->ParallelCabinet.PCabinet[i].ParallelRelaySetting[i])
  3702. {
  3703. change = true;
  3704. }
  3705. }
  3706. if(change)
  3707. {
  3708. char strParallel[128];
  3709. sprintf(strParallel, "Set PCabinet %d Parallel Relay:", i + 1);
  3710. for(int j = 0; j < GENERAL_GUN_QUANTITY; j++)
  3711. {
  3712. char strState[8];
  3713. sprintf(strState, " %3s", _ParallelRelay[j] ? "ON" : "OFF");
  3714. strcat(strParallel, strState);
  3715. }
  3716. LOG_INFO("%s", strParallel);
  3717. }
  3718. ShmChargerInfo->ParallelCabinet.PCabinet[i].ParallelRelaySetting[i] = _ParallelRelay[i];
  3719. }
  3720. }
  3721. }
  3722. }
  3723. // master: master group index
  3724. // Yes_No: Yes: relay on, No: relay off
  3725. // role_condition: when role_condition = _GROLE_MASTER, parallel relay of all member do the action(on or off)
  3726. void SetParallelRelayOnOff(unsigned char master, unsigned char Yes_No, unsigned char role_condition)
  3727. {
  3728. //int ParallelConfig = 0;
  3729. unsigned char slave = 0;
  3730. PsuGroupPartner *partner;
  3731. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER ||
  3732. (ShmPsuGrouping->GroupCollection[master].Role == _GROLE_REQUEST_TO_CHARGING && Yes_No))
  3733. {
  3734. ShmPsuGrouping->GroupCollection[master].ParallelCheck = 0;
  3735. partner = role_condition == _GROLE_PRECHARGE_READY ? &ShmPsuGrouping->GroupCollection[master].PossibleMember : &ShmPsuGrouping->GroupCollection[master].Partner;
  3736. for(int i = 0; i < partner->Quantity; i++)
  3737. {
  3738. slave = partner->Member[i];
  3739. if(role_condition == _GROLE_MASTER || ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_SLAVE)
  3740. {
  3741. //ParallelConfig = ShmPsuGrouping->GroupCollection[master].ParallelConfig[slave];
  3742. //if(ParallelConfig != 0)
  3743. //{
  3744. // ShmPsuGrouping->GroupCollection[master].ParallelCheck |= (1 << (ParallelConfig - 1));
  3745. //}
  3746. ShmPsuGrouping->GroupCollection[master].ParallelCheck |= partner->ParallelFlag[i];
  3747. }
  3748. }
  3749. if(Yes_No)
  3750. {
  3751. ShmPsuGrouping->ParallelRelayConfig.CtrlValue |= ShmPsuGrouping->GroupCollection[master].ParallelCheck;
  3752. }
  3753. else
  3754. {
  3755. ShmPsuGrouping->ParallelRelayConfig.CtrlValue &= ~ShmPsuGrouping->GroupCollection[master].ParallelCheck;
  3756. }
  3757. SetPCabinetParallelRelay(ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  3758. }
  3759. }
  3760. // master: master group index
  3761. bool IsParallelRelayConfirmed(unsigned char master)
  3762. {
  3763. bool confirmed = true;
  3764. for(int i = 0; i < CONNECTOR_QUANTITY; i++)
  3765. {
  3766. if((1 << i) & ShmPsuGrouping->GroupCollection[master].ParallelCheck)
  3767. {
  3768. if((ShmPsuGrouping->ParallelRelayConfig.CtrlValue & (1 << i)) != (ShmPsuGrouping->ParallelRelayConfirmed.CtrlValue & (1 << i)))
  3769. {
  3770. confirmed = false;
  3771. break;
  3772. }
  3773. }
  3774. }
  3775. return confirmed;
  3776. }
  3777. // master: master group index
  3778. bool IsPossibleMemberReady(unsigned char master)
  3779. {
  3780. bool ready = true;
  3781. unsigned char slave = 0;
  3782. if(ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity > 0)
  3783. {
  3784. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  3785. {
  3786. slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  3787. if(ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_WAIT_SLAVE)
  3788. {
  3789. ready = false;
  3790. }
  3791. }
  3792. }
  3793. return ready;
  3794. }
  3795. // master: master group index
  3796. bool IsExtendPrechargeReady(unsigned char master)
  3797. {
  3798. bool ready = true;
  3799. unsigned char slave = 0;
  3800. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  3801. {
  3802. slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  3803. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity == 0 || ShmPsuData->PsuGroup[slave].GroupAvailableCurrent == 0)
  3804. {
  3805. continue;
  3806. }
  3807. if(ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_PREPARE_ATTACH_ON ||
  3808. ShmPsuData->PsuGroup[slave].GroupPresentOutputVoltage > (ShmPsuData->PsuGroup[master].GroupPresentOutputVoltage + PRECHARGE_RANGE_VOLTAGE) ||
  3809. ShmPsuData->PsuGroup[slave].GroupPresentOutputVoltage < (ShmPsuData->PsuGroup[master].GroupPresentOutputVoltage - PRECHARGE_OFFSET_VOLTAGE - PRECHARGE_RANGE_VOLTAGE))
  3810. {
  3811. ready = false;
  3812. }
  3813. }
  3814. return ready;
  3815. }
  3816. // master: master group index
  3817. void SetExtendPrechargeCompleted(unsigned char master)
  3818. {
  3819. unsigned char slave = 0;
  3820. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  3821. {
  3822. slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  3823. SetPsuGroupRole(slave, _GROLE_PRECHARGE_READY);
  3824. }
  3825. }
  3826. // master: master group index
  3827. void SetExtendPrechargeStop(unsigned char master)
  3828. {
  3829. unsigned char slave = 0;
  3830. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  3831. {
  3832. slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  3833. SetPsuGroupRole(slave, _GROLE_EXTEND_STOP);
  3834. }
  3835. memset(&ShmPsuGrouping->GroupCollection[master].PossibleMember, 0x00, sizeof(PsuGroupPartner));
  3836. }
  3837. // master: master group index
  3838. void AddExtendMember(unsigned char master)
  3839. {
  3840. unsigned char slave = 0;
  3841. unsigned short parallelFlag = 0;
  3842. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  3843. {
  3844. slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  3845. parallelFlag = ShmPsuGrouping->GroupCollection[master].PossibleMember.ParallelFlag[i];
  3846. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PRECHARGE_READY)
  3847. {
  3848. AddMember(slave, master, parallelFlag);
  3849. }
  3850. }
  3851. }
  3852. // group: self group index
  3853. void CheckChargingRequest(unsigned char group)
  3854. {
  3855. if(ShmPsuGrouping->GroupCollection[group].Role != _GROLE_IDLE)
  3856. {
  3857. return;
  3858. }
  3859. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequest)
  3860. {
  3861. SetPsuGroupRole(group, _GROLE_REQUEST_TO_CHARGING);
  3862. }
  3863. }
  3864. // group: self group index
  3865. void ChargingRequestProcess(unsigned char group)
  3866. {
  3867. int time = 0;
  3868. PsuGroupPartner partner;
  3869. if(ShmPsuGrouping->GroupCollection[group].Role != _GROLE_REQUEST_TO_CHARGING)
  3870. {
  3871. return;
  3872. }
  3873. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequest && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequestConfirmed)
  3874. {
  3875. GetClockTime(&_ChargingRequest_time[group]);
  3876. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequest = false;
  3877. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequestConfirmed = true;
  3878. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GroupShareCheck = true;
  3879. }
  3880. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GroupShareCheck && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareConfirmed)
  3881. {
  3882. // check is there psu group to grab
  3883. if(PsuGroupGrabCheck(group, &partner))
  3884. {
  3885. GetClockTime(&_ChargingRequest_time[group]);
  3886. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GrabGroupWait = true;
  3887. PrepareToPowerOff(group + 1, &partner);
  3888. memcpy(&ShmPsuGrouping->GroupCollection[group].PossibleMember, &partner, sizeof(PsuGroupPartner));
  3889. }
  3890. else
  3891. {
  3892. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareCheckDone = true;
  3893. LOG_INFO("Gun %d Grab Nothing", group + 1);
  3894. }
  3895. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareConfirmed = true;
  3896. }
  3897. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GrabGroupWait && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareCheckDone)
  3898. {
  3899. // wait until grab psu ready or timeout
  3900. bool ready = IsPossibleMemberReady(group);
  3901. time = GetTimeoutValue(_ChargingRequest_time[group]) / uSEC_VAL;
  3902. if(ready || time >= WAIT_GRAB_TIME)
  3903. {
  3904. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareCheckDone = true;
  3905. LOG_INFO("Gun %d Grab %s", group + 1, ready ? "OK" : "Timeout");
  3906. }
  3907. }
  3908. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ShareCheckDone && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.FindGroupPartner)
  3909. {
  3910. GetClockTime(&_ChargingRequest_time[group]);
  3911. AddAvailableMember(group);
  3912. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.FindGroupPartner = true;
  3913. }
  3914. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.FindGroupPartner && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayOn)
  3915. {
  3916. // after a little delay, set parallel relay on
  3917. time = GetTimeoutValue(_ChargingRequest_time[group]) / uSEC_VAL;
  3918. if(time >= WAIT_PARALLEL_RELAY_DELAY)
  3919. {
  3920. unsigned short original = ShmPsuGrouping->ParallelRelayConfig.CtrlValue;
  3921. GetClockTime(&_ChargingRequest_time[group]);
  3922. SetParallelRelayOnOff(group, YES, _GROLE_MASTER);
  3923. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayOn = true;
  3924. LOG_INFO("Gun %d Charging Request Set All Member Parallel Relay On 0x%02X -> 0x%02X", group + 1, original, ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  3925. }
  3926. }
  3927. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayOn && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayConfirmed)
  3928. {
  3929. // wait until parallel relay on confirmed
  3930. bool confirmed = IsParallelRelayConfirmed(group);
  3931. time = GetTimeoutValue(_ChargingRequest_time[group]) / uSEC_VAL;
  3932. //if(confirmed || time >= WAIT_RELAY_CONFIRMED_TIME)
  3933. if(time >= WAIT_RELAY_CONFIRMED_TIME)
  3934. {
  3935. GetClockTime(&_ChargingRequest_time[group]);
  3936. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayConfirmed = true;
  3937. LOG_INFO("Gun %d Charging Request Parallel Relay Confirmed %s", group + 1, confirmed ? "OK" : "Timeout");
  3938. }
  3939. }
  3940. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ParallelRelayConfirmed && !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GroupingDone)
  3941. {
  3942. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GroupingDone = true;
  3943. }
  3944. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.GroupingDone)
  3945. {
  3946. SetPsuGroupToMaster(group);
  3947. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.IdleCtrlValue = 0;
  3948. LOG_INFO("Gun %d Grouping Completed", group + 1);
  3949. }
  3950. }
  3951. // master: master group index
  3952. void PsuGroupDeratingProcess(unsigned char master)
  3953. {
  3954. int time = 0;
  3955. // slave group set NeedDerating flag to start re-assign
  3956. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedDerating)
  3957. {
  3958. // reduce output current capability start
  3959. GetClockTime(&_PsuGroupDerating_time[master]);
  3960. unsigned short ReAssignCurrent = GetPresentTargetCurrent(master, _GROLE_SLAVE);
  3961. ShmPsuGrouping->GroupCollection[master].ReAssignAvailableCurrent = ReAssignCurrent;
  3962. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.NeedDerating = false;
  3963. LOG_INFO("Gun %d DeratingConfirmed%s, ReAssignAvailableCurrent = %d.%d A",
  3964. master + 1,
  3965. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed ? " Again" : "",
  3966. (ReAssignCurrent / 10), (ReAssignCurrent % 10));
  3967. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed)
  3968. {
  3969. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.DeratingCtrlValue = 0;
  3970. }
  3971. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed = true;
  3972. }
  3973. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingStart)
  3974. {
  3975. // wait until derating from ev or timeout
  3976. bool start = CanMasterStartDerating(master);
  3977. bool bypass = ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AlreadyInChargingMode ? false : true;
  3978. time = GetTimeoutValue(_PsuGroupDerating_time[master]) / uSEC_VAL;
  3979. if(start || time >= WAIT_EV_DERATING_TIMEOUT || bypass)
  3980. {
  3981. GetClockTime(&_PsuGroupDerating_time[master]);
  3982. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingStart = true;
  3983. LOG_INFO("Gun %d %s Start Derating%s", master + 1, start ? "Normal" : "Force", bypass ? " (Bypass)" : "");
  3984. SetMemberStartPowerOff(master, _GROLE_PREPARE_SWITCH_OFF);
  3985. if(!bypass)
  3986. {
  3987. // update stage max current and reset max current time
  3988. StageMaxCurrent[master] = start ?
  3989. (int)(chargingInfo[master]->EvBatterytargetCurrent * 10) :
  3990. ShmPsuGrouping->GroupCollection[master].ReAssignAvailableCurrent;
  3991. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent = false;
  3992. GetClockTime(&_StageCurrent_time[master]);
  3993. }
  3994. }
  3995. }
  3996. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingStart && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingPowerOffDone)
  3997. {
  3998. // wait until psu member power off ok or timeout
  3999. bool power_off_ok = IsMemberPowerOffOK(master);
  4000. time = GetTimeoutValue(_PsuGroupDerating_time[master]) / uSEC_VAL;
  4001. if(power_off_ok || time >= WAIT_SLAVE_POWER_OFF_TIMEOUT)
  4002. {
  4003. GetClockTime(&_PsuGroupDerating_time[master]);
  4004. SetMemberPowerOffDone(master);
  4005. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingPowerOffDone = true;
  4006. LOG_INFO("Gun %d Set Derating Member Power Off %s", master + 1, power_off_ok ? "OK" : "Timeout");
  4007. }
  4008. }
  4009. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingPowerOffDone && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayOff)
  4010. {
  4011. // after a little delay, set parallel relay off
  4012. time = GetTimeoutValue(_PsuGroupDerating_time[master]) / uSEC_VAL;
  4013. if(time >= WAIT_PARALLEL_RELAY_DELAY)
  4014. {
  4015. unsigned short original = ShmPsuGrouping->ParallelRelayConfig.CtrlValue;
  4016. GetClockTime(&_PsuGroupDerating_time[master]);
  4017. SetParallelRelayOnOff(master, NO, _GROLE_SWITCH_OFF_OK);
  4018. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayOff = true;
  4019. LOG_INFO("Gun %d Set Parallel Relay Off 0x%02X -> 0x%02X", master + 1, original, ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  4020. }
  4021. }
  4022. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayOff && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayConfirmed)
  4023. {
  4024. // wait until parallel relay off confirmed
  4025. bool confirmed = IsParallelRelayConfirmed(master);
  4026. time = GetTimeoutValue(_PsuGroupDerating_time[master]) / uSEC_VAL;
  4027. //if(confirmed || time >= WAIT_RELAY_CONFIRMED_TIME)
  4028. if(time >= WAIT_RELAY_CONFIRMED_TIME)
  4029. {
  4030. GetClockTime(&_PsuGroupDerating_time[master]);
  4031. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayConfirmed = true;
  4032. LOG_INFO("Gun %d Parallel Relay Confirmed %s", master + 1, confirmed ? "OK" : "Timeout");
  4033. }
  4034. }
  4035. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingRelayConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingCompleted)
  4036. {
  4037. // remove all non group member
  4038. RemoveNonGroupMember(master);
  4039. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingCompleted = true;
  4040. }
  4041. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingCompleted)
  4042. {
  4043. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.DeratingCtrlValue = 0;
  4044. UpdateGunAvailableCapability(master);
  4045. GetClockTime(&_ExtendCapability_time[master]);
  4046. LOG_INFO("Gun %d Derating Completed", master + 1);
  4047. }
  4048. }
  4049. void MasterStopChargingProcess(unsigned char master)
  4050. {
  4051. int time = 0;
  4052. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingRequest && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingConfirmed)
  4053. {
  4054. // set all member to power off
  4055. GetClockTime(&_StopCharging_time[master]);
  4056. SetMemberStartPowerOff(master, _GROLE_MASTER);
  4057. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingConfirmed = true;
  4058. }
  4059. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllPowerOffDone)
  4060. {
  4061. // wait until psu member power off ok or timeout
  4062. bool power_off_ok = IsMemberPowerOffOK(master);
  4063. time = GetTimeoutValue(_StopCharging_time[master]) / uSEC_VAL;
  4064. if(power_off_ok || time >= WAIT_SLAVE_POWER_OFF_TIMEOUT)
  4065. {
  4066. GetClockTime(&_StopCharging_time[master]);
  4067. SetMemberPowerOffDone(master);
  4068. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllPowerOffDone = true;
  4069. LOG_INFO("Gun %d Set All Member Power Off %s", master + 1, power_off_ok ? "OK" : "Timeout");
  4070. }
  4071. }
  4072. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllPowerOffDone && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayOff)
  4073. {
  4074. // after a little delay, set all member parallel relay off
  4075. time = GetTimeoutValue(_StopCharging_time[master]) / uSEC_VAL;
  4076. if(time >= WAIT_PARALLEL_RELAY_DELAY)
  4077. {
  4078. unsigned short original = ShmPsuGrouping->ParallelRelayConfig.CtrlValue;
  4079. GetClockTime(&_StopCharging_time[master]);
  4080. SetParallelRelayOnOff(master, NO, _GROLE_MASTER);
  4081. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayOff = true;
  4082. LOG_INFO("Gun %d Set All Member Parallel Relay Off 0x%02X -> 0x%02X", master + 1, original, ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  4083. }
  4084. }
  4085. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayOff && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayConfirmed)
  4086. {
  4087. // wait until parallel relay off confirmed
  4088. bool confirmed = IsParallelRelayConfirmed(master);
  4089. time = GetTimeoutValue(_StopCharging_time[master]) / uSEC_VAL;
  4090. //if(confirmed || time >= WAIT_RELAY_CONFIRMED_TIME)
  4091. if(time >= WAIT_RELAY_CONFIRMED_TIME)
  4092. {
  4093. GetClockTime(&_StopCharging_time[master]);
  4094. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayConfirmed = true;
  4095. LOG_INFO("Gun %d All Member Parallel Relay Confirmed %s", master + 1, confirmed ? "OK" : "Timeout");
  4096. }
  4097. }
  4098. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllParallelRelayConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllMemberStopCompleted)
  4099. {
  4100. // remove all non group member
  4101. RemoveNonGroupMember(master);
  4102. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllMemberStopCompleted = true;
  4103. LOG_INFO("Gun %d All Member Stop Completed", master + 1);
  4104. }
  4105. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.AllMemberStopCompleted && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingCompleted)
  4106. {
  4107. // check self group power down or not
  4108. if(ShmPsuData->PsuGroup[master].GroupPresentOutputCurrent <= MAX_PSU_POWER_OFF_CURRENT)
  4109. {
  4110. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingCompleted = true;
  4111. }
  4112. }
  4113. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingCompleted)
  4114. {
  4115. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.MasterCtrlValue = 0;
  4116. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.StopChargingCtrlValue = 0;
  4117. SetPsuGroupToIdle(master);
  4118. LOG_INFO("Gun %d Stop Charging Completed", master + 1);
  4119. }
  4120. }
  4121. void SlaveStopChargingProcess(unsigned char slave)
  4122. {
  4123. int time = 0;
  4124. unsigned char master = 0;
  4125. PsuGroupPartner PowerOffMember, GrabMember;
  4126. if(ShmPsuGrouping->GroupCollection[slave].Role != _GROLE_SLAVE)
  4127. {
  4128. return;
  4129. }
  4130. master = ShmPsuGrouping->GroupCollection[slave].TargetGroup - 1;
  4131. if(ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlaveChargingRequest && !ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.CheckSlaveReady)
  4132. {
  4133. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.CheckSlaveReady = true;
  4134. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_REQUEST_TO_CHARGING)
  4135. {
  4136. LOG_INFO("Gun %d Need Wait Gun %d Grouping Completed", slave + 1, master + 1);
  4137. GetClockTime(&_CheckSlaveReady_time[slave]);
  4138. }
  4139. else if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER && ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed)
  4140. {
  4141. LOG_INFO("Gun %d Need Wait Gun %d Derating Completed", slave + 1, master + 1);
  4142. GetClockTime(&_CheckSlaveReady_time[slave]);
  4143. }
  4144. else
  4145. {
  4146. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffRequest = true;
  4147. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.WaitSlaveReady = true;
  4148. LOG_INFO("Gun %d Need Power Off And Request To Charging", slave + 1);
  4149. }
  4150. }
  4151. // wait until master derating completed
  4152. if(ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.CheckSlaveReady && !ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.WaitSlaveReady)
  4153. {
  4154. time = GetTimeoutValue(_CheckSlaveReady_time[slave]) / uSEC_VAL;
  4155. if(time >= WAIT_SLAVE_READY_TIME ||
  4156. (ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed))
  4157. {
  4158. if(!(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.DeratingConfirmed))
  4159. {
  4160. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.RoleCtrl.SlaveCtrlValue = 0;
  4161. LOG_INFO("Gun %d Wait Gun %d Timeout", slave + 1);
  4162. }
  4163. else
  4164. {
  4165. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.WaitSlaveReady = true;
  4166. LOG_INFO("Gun %d Is Ready", slave + 1);
  4167. GetClockTime(&_CheckSlaveReady_time[slave]);
  4168. }
  4169. }
  4170. }
  4171. if(ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.WaitSlaveReady && !ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffRequest)
  4172. {
  4173. time = GetTimeoutValue(_CheckSlaveReady_time[slave]) / uSEC_VAL;
  4174. if(time >= WAIT_SLAVE_DELAY)
  4175. {
  4176. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffRequest = true;
  4177. }
  4178. }
  4179. // self group, other slave or master set SlavePowerOffRequest flag to power off
  4180. if(ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffRequest && !ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffConfirmed)
  4181. {
  4182. if(ShmChargerInfo->Control.SysCtrl.bits.Enable6ParallelRelay == 0)
  4183. {
  4184. PsuGroupPowerOffCheck(slave, &PowerOffMember);
  4185. }
  4186. else
  4187. {
  4188. PowerOffMember.Quantity = 1;
  4189. PowerOffMember.Member[0] = slave;
  4190. }
  4191. if(PowerOffMember.Quantity == 1 && ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlaveChargingRequest)
  4192. {
  4193. // grab here
  4194. if(PsuGroupGrabCheck(slave, &GrabMember))
  4195. {
  4196. for(int i = 0; i < GrabMember.Quantity; i++)
  4197. {
  4198. PowerOffMember.Member[PowerOffMember.Quantity++] = GrabMember.Member[i];
  4199. }
  4200. }
  4201. }
  4202. if(PowerOffMember.Quantity > 0)
  4203. {
  4204. unsigned char target = ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlaveChargingRequest ? (slave + 1) : 0;
  4205. PrepareToPowerOff(target, &PowerOffMember);
  4206. if(PowerOffMember.Quantity > 1 && ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlaveChargingRequest)
  4207. {
  4208. ShmPsuGrouping->GroupCollection[slave].PossibleMember.Quantity = PowerOffMember.Quantity - 1;
  4209. memcpy(ShmPsuGrouping->GroupCollection[slave].PossibleMember.Member, &PowerOffMember.Member[1], PowerOffMember.Quantity - 1);
  4210. }
  4211. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.bits.SlavePowerOffConfirmed = true;
  4212. }
  4213. else
  4214. {
  4215. ShmPsuGrouping->GroupCollection[slave].GroupCtrl.RoleCtrl.SlaveCtrlValue = 0;
  4216. }
  4217. }
  4218. }
  4219. void MasterExtendCapabilityProcess(unsigned char master)
  4220. {
  4221. int time = 0;
  4222. // stop extend capability process when derating or stop charging
  4223. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.DeratingCtrlValue != 0 ||
  4224. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.StopChargingRequest)
  4225. {
  4226. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.MorePowerConfirmed)
  4227. {
  4228. SetExtendPrechargeStop(master);
  4229. }
  4230. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue = 0;
  4231. ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit = 0;
  4232. return;
  4233. }
  4234. // start extend capability
  4235. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.MorePowerRequest && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.MorePowerConfirmed)
  4236. {
  4237. GetClockTime(&_ExtendCapability_time[master]);
  4238. memset(&ShmPsuGrouping->GroupCollection[master].PossibleMember, 0x00, sizeof(PsuGroupPartner));
  4239. FindPsuGroupPartner(master, (int)ShmPsuGrouping->GroupCollection[master].DiffPower_PhysicalLimit, &ShmPsuGrouping->GroupCollection[master].PossibleMember, _EXTEND_TYPE_POWER, ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit);
  4240. if(ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity > 0)
  4241. {
  4242. PrepareToExtendCapability(master + 1, &ShmPsuGrouping->GroupCollection[master].PossibleMember);
  4243. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.MorePowerConfirmed = true;
  4244. }
  4245. else
  4246. {
  4247. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue = 0;
  4248. ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit = 0;
  4249. }
  4250. }
  4251. // set extend member precharge voltage
  4252. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.MorePowerConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrechargeDone)
  4253. {
  4254. unsigned short voltage = ShmPsuData->PsuGroup[master].GroupPresentOutputVoltage >= PRECHARGE_OFFSET_VOLTAGE ?
  4255. ShmPsuData->PsuGroup[master].GroupPresentOutputVoltage - PRECHARGE_OFFSET_VOLTAGE : 0;
  4256. for(int i = 0; i < ShmPsuGrouping->GroupCollection[master].PossibleMember.Quantity; i++)
  4257. {
  4258. unsigned char slave = ShmPsuGrouping->GroupCollection[master].PossibleMember.Member[i];
  4259. if(ShmPsuData->PsuGroup[slave].GroupPresentPsuQuantity > 0 && ShmPsuData->PsuGroup[slave].GroupAvailableCurrent > 0)
  4260. {
  4261. ShmPsuGrouping->GroupOutput[slave].GTargetVoltage = voltage;
  4262. ShmPsuGrouping->GroupOutput[slave].GTargetCurrent = ZERO_CURRENT;
  4263. }
  4264. }
  4265. if(!ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrecharge)
  4266. {
  4267. GetClockTime(&_ExtendCapability_time[master]);
  4268. LOG_INFO("Gun %d Set ExtendPrecharge Voltage %d.%d V", master + 1, (voltage / 10), (voltage % 10));
  4269. }
  4270. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrecharge = true;
  4271. }
  4272. // wait for extend member precharge ready
  4273. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrecharge && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrechargeDone)
  4274. {
  4275. bool ready = IsExtendPrechargeReady(master);
  4276. time = GetTimeoutValue(_ExtendCapability_time[master]) / uSEC_VAL;
  4277. if(ready || time >= WAIT_PRECHARGE_TIME)
  4278. {
  4279. LOG_INFO("Gun %d ExtendPrecharge %s", master + 1, ready ? "Ready" : "Timeout");
  4280. if(ready)
  4281. {
  4282. GetClockTime(&_ExtendCapability_time[master]);
  4283. SetExtendPrechargeCompleted(master);
  4284. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrechargeDone = true;
  4285. }
  4286. else
  4287. {
  4288. SetExtendPrechargeStop(master);
  4289. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue = 0;
  4290. ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit = 0;
  4291. }
  4292. }
  4293. }
  4294. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendPrechargeDone && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayOn)
  4295. {
  4296. // after a little delay, set extend parallel relay on
  4297. time = GetTimeoutValue(_ExtendCapability_time[master]) / uSEC_VAL;
  4298. if(time >= WAIT_PARALLEL_RELAY_DELAY)
  4299. {
  4300. unsigned short original = ShmPsuGrouping->ParallelRelayConfig.CtrlValue;
  4301. GetClockTime(&_ExtendCapability_time[master]);
  4302. SetParallelRelayOnOff(master, YES, _GROLE_PRECHARGE_READY);
  4303. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayOn = true;
  4304. LOG_INFO("Gun %d Set Extend Parallel Relay On 0x%02X -> 0x%02X", master + 1, original, ShmPsuGrouping->ParallelRelayConfig.CtrlValue);
  4305. }
  4306. }
  4307. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayOn && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayConfirmed)
  4308. {
  4309. // wait until extend parallel relay on confirmed
  4310. bool confirmed = IsParallelRelayConfirmed(master);
  4311. time = GetTimeoutValue(_ExtendCapability_time[master]) / uSEC_VAL;
  4312. //if(confirmed || time >= WAIT_RELAY_CONFIRMED_TIME)
  4313. if(time >= WAIT_RELAY_CONFIRMED_TIME)
  4314. {
  4315. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayConfirmed = true;
  4316. LOG_INFO("Gun %d Extend Parallel Relay Confirmed %s", master + 1, confirmed ? "OK" : "Timeout");
  4317. }
  4318. }
  4319. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendRelayConfirmed && !ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendCompleted)
  4320. {
  4321. AddExtendMember(master);
  4322. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendCompleted = true;
  4323. }
  4324. if(ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ExtendCompleted)
  4325. {
  4326. ShmPsuGrouping->GroupCollection[master].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue = 0;
  4327. ShmPsuGrouping->GroupCollection[master].ExtendQuantityLimit = 0;
  4328. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.OutputCurrentStable = false;
  4329. GetClockTime(&_ReachCurrent_time[master]);
  4330. UpdateGunAvailableCapability(master);
  4331. ShmPsuGrouping->GroupCollection[master].GroupCtrl.bits.ReachMaxStageCurrent = false;
  4332. GetClockTime(&_StageCurrent_time[master]);
  4333. LOG_INFO("Gun %d Extend Capability Completed", master + 1);
  4334. }
  4335. }
  4336. void ShowGunVoltageCurrent(unsigned char master)
  4337. {
  4338. unsigned short voltage = 0, current = 0, fireVoltage = 0;
  4339. unsigned short diffVoltage = 0, diffCurrent = 0;
  4340. if(ShmPsuGrouping->GroupCollection[master].Role == _GROLE_MASTER)
  4341. {
  4342. voltage = (int)(chargingInfo[master]->PresentChargingVoltage * 10);
  4343. current = (int)(chargingInfo[master]->PresentChargingCurrent * 10);
  4344. fireVoltage = chargingInfo[master]->FireChargingVoltage;
  4345. diffVoltage = voltage >= evseOutVol[master] ? voltage - evseOutVol[master] : evseOutVol[master] - voltage;
  4346. diffCurrent = current >= evseOutCur[master] ? current - evseOutCur[master] : evseOutCur[master] - current;
  4347. if(diffVoltage >= 10 || diffCurrent >= 10)
  4348. {
  4349. evseOutputDelay[master] = SHOW_OUTPUT_DELAY;
  4350. evseOutVol[master] = voltage;
  4351. evseOutCur[master] = current;
  4352. }
  4353. if(evseOutputDelay[master] != 0)
  4354. {
  4355. LOG_INFO("Gun %d NeedV: %4d V, NeedC: %3d A, OutputV: %4d.%d V, OutputC: %3d.%d A, FireV: %4d V",
  4356. master + 1, (int)chargingInfo[master]->EvBatterytargetVoltage, (int)chargingInfo[master]->EvBatterytargetCurrent,
  4357. (voltage / 10), (voltage % 10), (current / 10), (current % 10), fireVoltage / 10);
  4358. evseOutputDelay[master]--;
  4359. }
  4360. }
  4361. }
  4362. // group: self group index
  4363. void TryCleanPsuAlarm(unsigned char group)
  4364. {
  4365. for(int i = 0; i < ShmPsuPosition->GroupLocationInfo[group].GroupPsuQuantity; i++)
  4366. {
  4367. int psu_index = ShmPsuPosition->GroupLocationInfo[group].PsuIndex[i];
  4368. if(ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal == PSU_STATUS_FLAG_LOCK)
  4369. {
  4370. UnlockPsuAlarm(ShmPsuPosition->PsuAddressInfo[psu_index].Full_Address);
  4371. PSU_LOG("Unlock PSU Group[%d] Index[%d] Alarm Status", group, ShmPsuPosition->PsuAddressInfo[psu_index].GIndex);
  4372. }
  4373. }
  4374. }
  4375. void CheckPsuAlarmStatus(void)
  4376. {
  4377. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  4378. {
  4379. for(int j = 0; j < ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity; j++)
  4380. {
  4381. int psu_index = ShmPsuPosition->GroupLocationInfo[i].PsuIndex[j];
  4382. int group = ShmPsuPosition->PsuAddressInfo[psu_index].GroupNo;
  4383. int gIndex = ShmPsuPosition->PsuAddressInfo[psu_index].GIndex;
  4384. if(ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal != _LocalPsuStatus[psu_index].StatusVal)
  4385. {
  4386. if(((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x02) != (_LocalPsuStatus[psu_index].StatusVal & 0x02)))
  4387. {
  4388. if((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x02) != 0)
  4389. {
  4390. LOG_INFO("Group[%d][%d] Psu[%2d] Fault Occur", group, gIndex, psu_index);
  4391. }
  4392. else
  4393. {
  4394. LOG_INFO("Group[%d][%d] Psu[%2d] Fault Recovery", group, gIndex, psu_index);
  4395. }
  4396. }
  4397. if(((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x04) != (_LocalPsuStatus[psu_index].StatusVal & 0x04)))
  4398. {
  4399. if((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x04) != 0)
  4400. {
  4401. LOG_INFO("Group[%d][%d] Psu[%2d] Alarm Occur", group, gIndex, psu_index);
  4402. }
  4403. else
  4404. {
  4405. LOG_INFO("Group[%d][%d] Psu[%2d] Alarm Recovery", group, gIndex, psu_index);
  4406. }
  4407. }
  4408. if(((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x08) != (_LocalPsuStatus[psu_index].StatusVal & 0x08)))
  4409. {
  4410. if((ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal & 0x08) != 0)
  4411. {
  4412. LOG_INFO("Group[%d][%d] Psu[%2d] Lock Occur", group, gIndex, psu_index);
  4413. }
  4414. else
  4415. {
  4416. LOG_INFO("Group[%d][%d] Psu[%2d] Lock Recovery", group, gIndex, psu_index);
  4417. }
  4418. }
  4419. }
  4420. _LocalPsuStatus[psu_index].StatusVal = ShmPsuPosition->SinglePsuStatus[psu_index].StatusVal;
  4421. }
  4422. }
  4423. }
  4424. void ShowPsuErrRecord(int psu_index)
  4425. {
  4426. if(ShmPsuPosition->SinglePsuError[psu_index].ErrorCount == 0)
  4427. {
  4428. LOG_INFO("PSU Group[%d] Index[%d] Error Record Clear", ShmPsuPosition->PsuAddressInfo[psu_index].GroupNo, ShmPsuPosition->PsuAddressInfo[psu_index].GIndex);
  4429. }
  4430. else
  4431. {
  4432. char strErrRecord[128];
  4433. char strError[16];
  4434. sprintf(strErrRecord, "PSU Group[%d] Index[%d] Err:", ShmPsuPosition->PsuAddressInfo[psu_index].GroupNo, ShmPsuPosition->PsuAddressInfo[psu_index].GIndex);
  4435. for(int i = 0; i < ShmPsuPosition->SinglePsuError[psu_index].ErrorCount; i++)
  4436. {
  4437. sprintf(strError, " E-%2d", ShmPsuPosition->SinglePsuError[psu_index].PsuError[i]);
  4438. strcat(strErrRecord, strError);
  4439. }
  4440. LOG_INFO("%s", strErrRecord);
  4441. }
  4442. }
  4443. void CheckPsuErrRecord(void)
  4444. {
  4445. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  4446. {
  4447. for(int j = 0; j < ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity; j++)
  4448. {
  4449. int psu_index = ShmPsuPosition->GroupLocationInfo[i].PsuIndex[j];
  4450. if(ShmPsuPosition->SinglePsuError[psu_index].ErrFlag.bits.Changed)
  4451. {
  4452. ShowPsuErrRecord(psu_index);
  4453. ShmPsuPosition->SinglePsuError[psu_index].ErrFlag.bits.Changed = false;
  4454. }
  4455. }
  4456. }
  4457. }
  4458. bool IsPsuGroupAnyAlarmFault(unsigned char group)
  4459. {
  4460. if((ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR[group].StatusVal & PSU_STATUS_FLAG_FAULT) ||
  4461. (ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR[group].StatusVal & PSU_STATUS_FLAG_ALARM))
  4462. {
  4463. return true;
  4464. }
  4465. return false;
  4466. }
  4467. bool IsPsuGroupAllAlarmFault(unsigned char group)
  4468. {
  4469. if((ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND[group].StatusVal & PSU_STATUS_FLAG_FAULT) ||
  4470. (ShmChargerInfo->PsuGrouping.GroupPsuStatus_AND[group].StatusVal & PSU_STATUS_FLAG_ALARM))
  4471. {
  4472. return true;
  4473. }
  4474. return false;
  4475. }
  4476. bool IsPsuGroupAnyLock(unsigned char group)
  4477. {
  4478. if((ShmChargerInfo->PsuGrouping.GroupPsuStatus_OR[group].StatusVal & PSU_STATUS_FLAG_LOCK))
  4479. {
  4480. return true;
  4481. }
  4482. return false;
  4483. }
  4484. void PsuGroupControlProcess(void)
  4485. {
  4486. int time = 0;
  4487. unsigned char role = 0;
  4488. //unsigned short TargetVoltage = 0, TargetCurrent = 0;
  4489. for(byte group = 0; group < GENERAL_GUN_QUANTITY; group++)
  4490. {
  4491. role = ShmPsuGrouping->GroupCollection[group].Role;
  4492. switch(role)
  4493. {
  4494. case _GROLE_IDLE:
  4495. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4496. {
  4497. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4498. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.IdleCtrlValue = 0;
  4499. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.MasterCtrlValue = 0;
  4500. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.StopChargingCtrlValue = 0;
  4501. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.DeratingCtrlValue = 0;
  4502. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue = 0;
  4503. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.SlaveCtrlValue = 0;
  4504. ShmPsuGrouping->GroupCollection[group].ExtendQuantityLimit = 0;
  4505. PSU_LOG("===== PSU Group[%02X] ===== Idle", group);
  4506. GetClockTime(&_PsuGroupRole_time[group]);
  4507. GetClockTime(&_CleanPsuAlarm_time[group]);
  4508. ShmPsuGrouping->GroupOutput[group].GTargetVoltage = 0;
  4509. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = 0;
  4510. PreGroupOutput[group].GTargetVoltage = 0;
  4511. PreGroupOutput[group].GTargetCurrent = 0;
  4512. ShmPsuGrouping->TotalGroupOutput[group].GTargetVoltage = 0;
  4513. ShmPsuGrouping->TotalGroupOutput[group].GTargetCurrent = 0;
  4514. SetPsuGroupOutput(group);
  4515. }
  4516. if(isStartOutputSwitch[group])
  4517. {
  4518. SetPsuGroupPowerOnOff(group, _PSU_OFF);
  4519. }
  4520. if(IsPsuGroupAnyAlarmFault(group))
  4521. {
  4522. time = GetTimeoutValue(_CleanPsuAlarm_time[group]) / uSEC_VAL;
  4523. if(time >= PSU_CLEAN_ERR_INTERVAL)
  4524. {
  4525. PSU_LOG("PSU Group[%d] Alarm or Fault Occur, Need Do Something", group);
  4526. GetClockTime(&_CleanPsuAlarm_time[group]);
  4527. }
  4528. }
  4529. else if(IsPsuGroupAnyLock(group))
  4530. {
  4531. time = GetTimeoutValue(_CleanPsuAlarm_time[group]) / uSEC_VAL;
  4532. if(time >= PSU_CLEAN_ERR_INTERVAL)
  4533. {
  4534. TryCleanPsuAlarm(group);
  4535. GetClockTime(&_CleanPsuAlarm_time[group]);
  4536. }
  4537. }
  4538. else
  4539. {
  4540. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.IdleCtrlValue != 0 &&
  4541. ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  4542. {
  4543. CheckChargingRequest(group);
  4544. }
  4545. }
  4546. break;
  4547. case _GROLE_MASTER:
  4548. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4549. {
  4550. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4551. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.MasterCtrlValue = 0;
  4552. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.StopChargingCtrlValue = 0;
  4553. //ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.DeratingCtrlValue = 0;
  4554. ShmPsuGrouping->GroupCollection[group].ExtendQuantityLimit = 0;
  4555. PSU_LOG("===== PSU Group[%02X] ===== Master", group);
  4556. GetClockTime(&_PsuGroupRole_time[group]);
  4557. OutputConfigStep[group] = _CURRENT_MODE_NONE;
  4558. _preOutputConfigStep[group] = _CURRENT_MODE_NONE;
  4559. MaxCurrentDemand[group] = 0;
  4560. StageMaxCurrent[group] = 0;
  4561. _GfdStep[group] = PREPARE_STEP_NONE;
  4562. _VoltageResumeCnt[group] = 0;
  4563. }
  4564. if(!ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.AlreadyInChargingMode)
  4565. {
  4566. if(chargingInfo[group]->SystemStatus == S_CHARGING && Is_OutputK1K2_Ready(group))
  4567. {
  4568. LOG_INFO("Gun %d Enter Charging Mode", group + 1);
  4569. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.AlreadyInChargingMode = true;
  4570. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ReachMaxCurrentDemand = false;
  4571. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ReachMaxStageCurrent = false;
  4572. GetClockTime(&_MaxCurrent_time[group]);
  4573. GetClockTime(&_StageCurrent_time[group]);
  4574. GetClockTime(&_ChargingDelay_time[group]);
  4575. }
  4576. }
  4577. if((chargingInfo[group]->SystemStatus <= S_IDLE) ||
  4578. (chargingInfo[group]->SystemStatus >= S_TERMINATING && chargingInfo[group]->SystemStatus <= S_FAULT))
  4579. {
  4580. if(!ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.StopChargingRequest)
  4581. {
  4582. LOG_INFO("Gun %d SystemStatus(%d) Need Stop Charging", group + 1, chargingInfo[group]->SystemStatus);
  4583. }
  4584. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.StopChargingRequest = true;
  4585. }
  4586. if(IsPsuGroupAllAlarmFault(group))
  4587. {
  4588. if(!ShmChargerInfo->GunError[group].ErrFlag.bits.PsuGroupAllAlarmFault)
  4589. {
  4590. LOG_INFO("Gun %d PsuGroup All Alarm/Fault, Need Stop Charging", group + 1);
  4591. }
  4592. if(strncmp(ShmChargerInfo->GunError[group].GunAlarmCode, "", 6) == EQUAL)
  4593. {
  4594. strcpy(ShmChargerInfo->GunError[group].GunAlarmCode, "042268");
  4595. }
  4596. ShmChargerInfo->GunError[group].ErrFlag.bits.PsuGroupAllAlarmFault = true;
  4597. }
  4598. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue == 0)
  4599. {
  4600. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ExtendAvailable)
  4601. {
  4602. time = GetTimeoutValue(_ExtendCapability_time[group]) / uSEC_VAL;
  4603. if(time >= EXTEND_CAPABILITY_DELAY)
  4604. {
  4605. #if 0
  4606. int available = GetPsuGroupAvailable(group);
  4607. if(available > 0)
  4608. {
  4609. ShmPsuGrouping->GroupCollection[group].ExtendQuantityLimit = MAX_GROUP_QUANTITY;
  4610. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.MorePowerRequest = true;
  4611. LOG_INFO("Gun %d Start Extend Capability", group + 1);
  4612. }
  4613. #endif
  4614. ShmPsuGrouping->GroupCollection[group].ExtendQuantityLimit = 0;
  4615. int reason = IsExtendConflict(group);
  4616. char *str_conflict_reason[] = {STR_EXTEND_CONFLICT_NONE, STR_EXTEND_CONFLICT_AVAILABLE, STR_EXTEND_CONFLICT_AVERAGE, STR_EXTEND_CONFLICT_PRIORITY, STR_EXTEND_CONFLICT_UNKNOWN};
  4617. if(reason == _CONFLICT_NONE)
  4618. {
  4619. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.MorePowerRequest = true;
  4620. LOG_INFO("Gun %d Start Extend Capability", group + 1);
  4621. }
  4622. else
  4623. {
  4624. LOG_INFO("Gun %d Extend Capability Conflict: %s", group + 1, str_conflict_reason[reason]);
  4625. }
  4626. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ExtendAvailable = false;
  4627. }
  4628. }
  4629. }
  4630. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.ExtendCapabilityCtrlValue != 0)
  4631. {
  4632. CleanSmoothDerating(group);
  4633. MasterExtendCapabilityProcess(group);
  4634. }
  4635. // need derating
  4636. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.DeratingCtrlValue != 0 &&
  4637. !ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.StopChargingRequest)
  4638. {
  4639. CleanSmoothDerating(group);
  4640. PsuGroupDeratingProcess(group);
  4641. }
  4642. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.StopChargingRequest)
  4643. {
  4644. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.DeratingCtrlValue = 0;
  4645. ShmPsuGrouping->GroupOutput[group].GTargetVoltage = 0;
  4646. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = 0;
  4647. ShmPsuGrouping->TotalGroupOutput[group].GTargetVoltage = 0;
  4648. ShmPsuGrouping->TotalGroupOutput[group].GTargetCurrent = 0;
  4649. CleanSmoothDerating(group);
  4650. MasterStopChargingProcess(group);
  4651. }
  4652. else
  4653. {
  4654. UpdateGunLoading(group);
  4655. UpdatePsuGroupOutputConfig(group);
  4656. UpdateMasterPsuGroupLoading(group);
  4657. PsuGroupOutputConfigCheck(group);
  4658. }
  4659. ShowGunVoltageCurrent(group);
  4660. SetPsuGroupOutput(group);
  4661. break;
  4662. case _GROLE_SLAVE:
  4663. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4664. {
  4665. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4666. PSU_LOG("===== PSU Group[%02X] ===== Slave", group);
  4667. GetClockTime(&_PsuGroupRole_time[group]);
  4668. }
  4669. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.SlaveCtrlValue != 0)
  4670. {
  4671. SlaveStopChargingProcess(group);
  4672. }
  4673. else
  4674. {
  4675. if(IsPsuGroupAllAlarmFault(group))
  4676. {
  4677. if(!ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.SlavePowerOffRequest)
  4678. {
  4679. LOG_INFO("Gun %d PsuGroup (slave) All Alarm/Fault, Need Power Off", group + 1);
  4680. }
  4681. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.SlavePowerOffRequest = true;
  4682. }
  4683. else
  4684. {
  4685. SetPsuGroupOutput(group);
  4686. }
  4687. }
  4688. break;
  4689. case _GROLE_PREPARE_SWITCH_OFF:
  4690. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4691. {
  4692. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4693. PSU_LOG("===== PSU Group[%02X] ===== Prepare Off", group);
  4694. GetClockTime(&_PsuGroupRole_time[group]);
  4695. }
  4696. time = GetTimeoutValue(_PsuGroupRole_time[group]) / uSEC_VAL;
  4697. if(time >= MAX_PREPARE_SWITCH_OFF_TIME)
  4698. {
  4699. // timeout shall not happen
  4700. SetPsuGroupRole(group, _GROLE_SLAVE_POWER_OFF);
  4701. }
  4702. else
  4703. {
  4704. SetPsuGroupOutput(group);
  4705. }
  4706. break;
  4707. case _GROLE_SLAVE_POWER_OFF:
  4708. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4709. {
  4710. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4711. PSU_LOG("===== PSU Group[%02X] ===== Slave Power Off", group);
  4712. GetClockTime(&_PsuGroupRole_time[group]);
  4713. }
  4714. time = GetTimeoutValue(_PsuGroupRole_time[group]) / uSEC_VAL;
  4715. if(time >= MIN_POWER_OFF_TIME &&
  4716. (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent <= MAX_PSU_POWER_OFF_CURRENT || _isTriggerShutdown))
  4717. {
  4718. SetPsuGroupRole(group, _GROLE_SWITCH_OFF_OK);
  4719. }
  4720. else
  4721. {
  4722. ShmPsuGrouping->GroupOutput[group].GTargetVoltage = 0;
  4723. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = 0;
  4724. SetPsuGroupOutput(group);
  4725. }
  4726. break;
  4727. case _GROLE_SWITCH_OFF_OK:
  4728. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4729. {
  4730. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4731. PSU_LOG("===== PSU Group[%02X] ===== Switch Off OK, %d.%d V, %d.%d A", group,
  4732. (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage % 10),
  4733. (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent % 10));
  4734. GetClockTime(&_PsuGroupRole_time[group]);
  4735. }
  4736. break;
  4737. case _GROLE_WAIT_IDLE:
  4738. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4739. {
  4740. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4741. PSU_LOG("===== PSU Group[%02X] ===== Wait Idle, %d.%d V, %d.%d A", group,
  4742. (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage % 10),
  4743. (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent % 10));
  4744. GetClockTime(&_PsuGroupRole_time[group]);
  4745. }
  4746. break;
  4747. case _GROLE_WAIT_SLAVE:
  4748. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4749. {
  4750. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4751. PSU_LOG("===== PSU Group[%02X] ===== Wait Slave", group);
  4752. GetClockTime(&_PsuGroupRole_time[group]);
  4753. }
  4754. time = GetTimeoutValue(_PsuGroupRole_time[group]) / uSEC_VAL;
  4755. if(ShmPsuGrouping->GroupCollection[group].ReservedTarget != 0)
  4756. {
  4757. if(time >= WAIT_SLAVE_TO_CHARGING && (ShmPsuGrouping->GroupCollection[group].ReservedTarget - 1) == group)
  4758. {
  4759. SetPsuGroupRole(group, _GROLE_REQUEST_TO_CHARGING);
  4760. ShmPsuGrouping->GroupCollection[group].GroupCtrl.bits.ChargingRequest = true;
  4761. ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.SlaveCtrlValue = 0;
  4762. break;
  4763. }
  4764. }
  4765. if(time >= WAIT_SLAVE_TIMEOUT)
  4766. {
  4767. PSU_LOG("Group[%02X] Wait Slave Timeout", group);
  4768. SetPsuGroupToIdle(group);
  4769. }
  4770. break;
  4771. case _GROLE_PREPARE_ATTACH_ON:
  4772. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4773. {
  4774. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4775. PSU_LOG("===== PSU Group[%02X] ===== Prepare Attach On", group);
  4776. GetClockTime(&_PsuGroupRole_time[group]);
  4777. }
  4778. SetPsuGroupOutput(group);
  4779. break;
  4780. case _GROLE_PRECHARGE_READY:
  4781. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4782. {
  4783. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4784. PSU_LOG("===== PSU Group[%02X] ===== Precharge %d.%d V Ready",
  4785. group, (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage % 10));
  4786. GetClockTime(&_PsuGroupRole_time[group]);
  4787. }
  4788. break;
  4789. case _GROLE_EXTEND_STOP:
  4790. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4791. {
  4792. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4793. PSU_LOG("===== PSU Group[%02X] ===== Extend Stop, %d.%d V",
  4794. group, (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage / 10), (ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage % 10));
  4795. GetClockTime(&_PsuGroupRole_time[group]);
  4796. }
  4797. time = GetTimeoutValue(_PsuGroupRole_time[group]) / uSEC_VAL;
  4798. if(time >= MIN_POWER_OFF_TIME ||
  4799. (ShmPsuData->PsuGroup[group].GroupPresentOutputCurrent <= MAX_PSU_POWER_OFF_CURRENT &&
  4800. ShmPsuData->PsuGroup[group].GroupPresentOutputVoltage <= MAX_PSU_POWER_OFF_VOLTAGE))
  4801. {
  4802. SetPsuGroupToIdle(group);
  4803. }
  4804. else
  4805. {
  4806. ShmPsuGrouping->GroupOutput[group].GTargetVoltage = 0;
  4807. ShmPsuGrouping->GroupOutput[group].GTargetCurrent = 0;
  4808. SetPsuGroupOutput(group);
  4809. }
  4810. break;
  4811. case _GROLE_REQUEST_TO_CHARGING:
  4812. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4813. {
  4814. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4815. PSU_LOG("===== PSU Group[%02X] ===== Request To Charging", group);
  4816. GetClockTime(&_PsuGroupRole_time[group]);
  4817. }
  4818. if(ShmPsuGrouping->GroupCollection[group].GroupCtrl.RoleCtrl.IdleCtrlValue != 0)
  4819. {
  4820. ChargingRequestProcess(group);
  4821. }
  4822. break;
  4823. case _GROLE_TERMINATE:
  4824. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4825. {
  4826. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4827. PSU_LOG("===== PSU Group[%02X] ===== Terminate", group);
  4828. GetClockTime(&_PsuGroupRole_time[group]);
  4829. }
  4830. break;
  4831. case _GROLE_WAIT_TERMINATED:
  4832. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4833. {
  4834. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4835. PSU_LOG("===== PSU Group[%02X] ===== Wait Terminated", group);
  4836. GetClockTime(&_PsuGroupRole_time[group]);
  4837. }
  4838. break;
  4839. case _GROLE_NONE:
  4840. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4841. {
  4842. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4843. PSU_LOG("===== PSU Group[%02X] ===== None", group);
  4844. GetClockTime(&_PsuGroupRole_time[group]);
  4845. }
  4846. break;
  4847. default:
  4848. if(ShmPsuGrouping->GroupCollection[group].PreRole != role)
  4849. {
  4850. ShmPsuGrouping->GroupCollection[group].PreRole = role;
  4851. PSU_LOG("===== PSU Group[%02X] ===== Unknown Role = %d", group, role);
  4852. GetClockTime(&_PsuGroupRole_time[group]);
  4853. }
  4854. SetPsuGroupRole(group, _GROLE_NONE);
  4855. break;
  4856. }
  4857. }
  4858. }
  4859. // only for test & debug purpose
  4860. void PsuSimulationSetting(void)
  4861. {
  4862. ShmPsuData->Work_Step = _WORK_CHARGING;
  4863. ShmPsuData->PsuGroup[0].GroupPresentPsuQuantity = 3;
  4864. ShmPsuData->PsuGroup[1].GroupPresentPsuQuantity = 3;
  4865. ShmPsuData->PsuGroup[2].GroupPresentPsuQuantity = 3;
  4866. ShmPsuData->PsuGroup[3].GroupPresentPsuQuantity = 3;
  4867. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[0].RemoteMaxPhysicalVoltage = 9500;
  4868. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[0].RemoteMaxPhysicalCurrent = 5000;
  4869. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[1].RemoteMaxPhysicalVoltage = 9500;
  4870. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[1].RemoteMaxPhysicalCurrent = 2000;
  4871. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[2].RemoteMaxPhysicalVoltage = 9500;
  4872. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[2].RemoteMaxPhysicalCurrent = 5000;
  4873. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[3].RemoteMaxPhysicalVoltage = 9500;
  4874. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[3].RemoteMaxPhysicalCurrent = 2500;
  4875. }
  4876. // only for test & debug purpose
  4877. void PsuGroupOutputSimulation(void)
  4878. {
  4879. byte master = 0;
  4880. unsigned short pVoltage = 0, pCurrent = 0;
  4881. unsigned short gVoltage = 0, gCurrent = 0;
  4882. // psu output voltage & current simulation
  4883. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  4884. {
  4885. pVoltage = ShmPsuGrouping->GroupOutput[i].GTargetVoltage;
  4886. pCurrent = ShmPsuGrouping->GroupOutput[i].GTargetCurrent;
  4887. ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage = pVoltage;
  4888. ShmPsuData->PsuGroup[i].GroupPresentOutputCurrent = pCurrent;
  4889. ShmPsuData->PsuGroup[i].GroupPresentOutputPower = (pVoltage * pCurrent) / 100 / 100;
  4890. }
  4891. // psu AvailableCurrent & GroupAvailablePower simulation
  4892. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  4893. {
  4894. if(ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage == 0)
  4895. {
  4896. ShmPsuData->PsuGroup[i].GroupAvailableCurrent = ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity * 1000;
  4897. }
  4898. else
  4899. {
  4900. if(ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage <= 3000)
  4901. {
  4902. ShmPsuData->PsuGroup[i].GroupAvailableCurrent = ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity * 1000;
  4903. }
  4904. else
  4905. {
  4906. ShmPsuData->PsuGroup[i].GroupAvailableCurrent = (30000 * 100 * ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity) / ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage;
  4907. }
  4908. }
  4909. ShmPsuData->PsuGroup[i].GroupAvailablePower = ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity * 300;
  4910. }
  4911. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  4912. {
  4913. master = ShmChargerInfo->PsuGrouping.GroupCollection[i].TargetGroup;
  4914. if(master == 0)
  4915. {
  4916. // calculate PresentChargingVoltage and PresentChargingCurrent of self group
  4917. chargingInfo[i]->PresentChargingVoltage = (float)ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage / 10;
  4918. chargingInfo[i]->PresentChargingCurrent = (float)ShmPsuData->PsuGroup[i].GroupPresentOutputCurrent / 10;
  4919. }
  4920. else
  4921. {
  4922. if(i == (master - 1))
  4923. {
  4924. gVoltage = ShmPsuData->PsuGroup[i].GroupPresentOutputVoltage;
  4925. gCurrent = ShmPsuData->PsuGroup[i].GroupPresentOutputCurrent;
  4926. for(byte j = 0; j < ShmPsuGrouping->GroupCollection[i].Partner.Quantity; j++)
  4927. {
  4928. byte slave = ShmPsuGrouping->GroupCollection[i].Partner.Member[j];
  4929. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE ||
  4930. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF ||
  4931. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE_POWER_OFF)
  4932. {
  4933. gCurrent += ShmPsuData->PsuGroup[slave].GroupPresentOutputCurrent;
  4934. }
  4935. }
  4936. chargingInfo[i]->PresentChargingVoltage = (float)gVoltage / 10;
  4937. chargingInfo[i]->PresentChargingCurrent = (float)gCurrent / 10;
  4938. }
  4939. }
  4940. }
  4941. }
  4942. // only for test & debug purpose
  4943. void PsuGroupAvailableSimulation(void)
  4944. {
  4945. unsigned char master = 0;
  4946. int _groupCurrent = 0, _groupPower = 0;
  4947. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  4948. {
  4949. master = ShmChargerInfo->PsuGrouping.GroupCollection[i].TargetGroup;
  4950. // calculate output group capability
  4951. if(master == 0)
  4952. {
  4953. chargingInfo[i]->AvailableChargingCurrent = ShmPsuData->PsuGroup[i].GroupAvailableCurrent;
  4954. chargingInfo[i]->AvailableChargingPower = ShmPsuData->PsuGroup[i].GroupAvailablePower;
  4955. }
  4956. else
  4957. {
  4958. _groupCurrent = ShmPsuData->PsuGroup[master - 1].GroupAvailableCurrent;
  4959. _groupPower = ShmPsuData->PsuGroup[master - 1].GroupAvailablePower;
  4960. for(byte j = 0; j < ShmPsuGrouping->GroupCollection[master - 1].Partner.Quantity; j++)
  4961. {
  4962. byte slave = ShmPsuGrouping->GroupCollection[master - 1].Partner.Member[j];
  4963. if(ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_SLAVE ||
  4964. ShmPsuGrouping->GroupCollection[slave].Role == _GROLE_PREPARE_SWITCH_OFF)
  4965. {
  4966. _groupCurrent += ShmPsuData->PsuGroup[slave].GroupAvailableCurrent;
  4967. _groupPower += ShmPsuData->PsuGroup[slave].GroupAvailablePower;
  4968. }
  4969. }
  4970. if(ShmPsuGrouping->GroupCollection[master - 1].GroupCtrl.bits.DeratingConfirmed)
  4971. {
  4972. chargingInfo[master - 1]->AvailableChargingCurrent = ShmPsuGrouping->GroupCollection[master - 1].ReAssignAvailableCurrent;
  4973. }
  4974. else
  4975. {
  4976. chargingInfo[master - 1]->AvailableChargingCurrent = _groupCurrent;
  4977. }
  4978. chargingInfo[master - 1]->AvailableChargingPower = _groupPower;
  4979. chargingInfo[master - 1]->MaximumChargingVoltage = 9500;
  4980. if((master - 1) != i)
  4981. {
  4982. chargingInfo[i]->AvailableChargingCurrent = 0;;
  4983. chargingInfo[i]->AvailableChargingPower = 0;
  4984. chargingInfo[i]->RealRatingPower = 0;
  4985. chargingInfo[i]->MaximumChargingVoltage = 0;
  4986. }
  4987. }
  4988. }
  4989. }
  4990. void CapabilitySimulation(void)
  4991. {
  4992. unsigned short voltage = 0, current = 0, power = 0;
  4993. unsigned short limitPower = 0, limitCurrent = 0;
  4994. unsigned char inUsingCnt = 0;
  4995. for(int i = 0; i < GENERAL_GUN_QUANTITY; i++)
  4996. {
  4997. if(ShmChargerInfo->PsuGrouping.GroupCollection[i].Role == _GROLE_MASTER)
  4998. {
  4999. inUsingCnt += ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity;
  5000. }
  5001. }
  5002. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  5003. {
  5004. voltage = chargingInfo[i]->MaximumChargingVoltage;
  5005. current = chargingInfo[i]->AvailableChargingCurrent;
  5006. power = chargingInfo[i]->AvailableChargingPower;
  5007. // ********** GetPhysicalLimitVoltageAndCurrent **********
  5008. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalVoltage != 0 &&
  5009. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalVoltage <= voltage)
  5010. {
  5011. voltage = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalVoltage;
  5012. }
  5013. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalCurrent != 0 &&
  5014. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalCurrent <= current)
  5015. {
  5016. current = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].RemoteMaxPhysicalCurrent;
  5017. }
  5018. // ********** GetModelNameLimitPower **********
  5019. if(ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity != 0 && inUsingCnt != 0 &&
  5020. ShmChargerInfo->Control.ChargerRatingPower != 0)
  5021. {
  5022. limitPower = ShmChargerInfo->Control.ChargerRatingPower;
  5023. if(ShmChargerInfo->Control.CabinetRole == _CROLE_MASTER)
  5024. {
  5025. limitPower += ShmChargerInfo->ParallelCabinet.TotalParallelPower;
  5026. }
  5027. limitPower = (limitPower * ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity) / inUsingCnt;
  5028. }
  5029. if(limitPower != 0 && limitPower <= power)
  5030. {
  5031. power = limitPower;
  5032. }
  5033. // ********** GetConfigLimitPowerAndCurrent **********
  5034. if(ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity != 0 && inUsingCnt != 0 &&
  5035. ShmSysConfigAndInfo->SysConfig.MaxChargingPower != 0)
  5036. {
  5037. limitPower = ShmSysConfigAndInfo->SysConfig.MaxChargingPower * 10;
  5038. limitPower = (limitPower * ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity) / inUsingCnt;
  5039. }
  5040. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].MaxTotalChargingPower = limitPower;
  5041. if(ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity != 0 && inUsingCnt != 0 &&
  5042. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent != 0)
  5043. {
  5044. limitCurrent = ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent * 10;
  5045. limitCurrent = (limitCurrent * ShmChargerInfo->PsuGrouping.GroupCollection[i].GunPsuQuantity) / inUsingCnt;
  5046. }
  5047. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].MaxTotalChargingCurrent = limitCurrent;
  5048. if(limitPower != 0 && limitPower <= power)
  5049. {
  5050. power = limitPower;
  5051. }
  5052. if(limitCurrent != 0 && limitCurrent <= current)
  5053. {
  5054. current = limitCurrent;
  5055. }
  5056. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].CapabilityVoltage = voltage;
  5057. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].CapabilityCurrent = current;
  5058. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].CapabilityPower = power;
  5059. }
  5060. }
  5061. void PsuGroupingInitial(void)
  5062. {
  5063. for(int i = 0; i < ShmPsuData->GroupCount; i++)
  5064. {
  5065. ShmPsuGrouping->GroupCollection[i].Role = 0;
  5066. ShmPsuGrouping->GroupCollection[i].PreRole = 0xFF;
  5067. memset(&ShmPsuGrouping->GroupCollection[i].Partner, 0x00, sizeof(PsuGroupPartner));
  5068. memset(&ShmPsuGrouping->GroupCollection[i].PossibleMember, 0x00, sizeof(PsuGroupPartner));
  5069. ShmPsuGrouping->GroupCollection[i].TargetGroup = 0;
  5070. ShmPsuGrouping->GroupCollection[i].ReservedTarget = 0;
  5071. memset(&ShmPsuGrouping->GroupCollection[i].GroupCtrl, 0x00, sizeof(PsuGroupControl));
  5072. ShmPsuGrouping->GroupCollection[i].ReAssignAvailableCurrent = 0;
  5073. ShmPsuGrouping->GroupCollection[i].ParallelCheck = 0;
  5074. ShmPsuGrouping->GroupCollection[i].GunLoading = 0;
  5075. memset(&ShmPsuGrouping->GroupOutput[i], 0x00, sizeof(GroupOutputConfigInfo));
  5076. }
  5077. }
  5078. void PsuCommLostCheck(void)
  5079. {
  5080. if(ShmPsuData->Work_Step != INITIAL_START &&
  5081. ShmPsuData->Work_Step != _NO_WORKING &&
  5082. ShmPsuData->Work_Step != _INIT_PSU_STATUS)
  5083. {
  5084. if(!isCommStart)
  5085. {
  5086. isCommStart = true;
  5087. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt = 0;
  5088. lostCnt = 0;
  5089. GetClockTime(&_PsuCommCheck_time);
  5090. }
  5091. if((GetTimeoutValue(_PsuCommCheck_time) / uSEC_VAL) >= PSU_COMM_CHECK_TIME)
  5092. {
  5093. ShmChargerInfo->Control.CommInfo.PsuComm.CommCnt = ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt;
  5094. ShmChargerInfo->Control.CommInfo.PsuComm.RxCnt = 0;
  5095. if(ShmChargerInfo->Control.CommInfo.PsuComm.CommCnt > COMM_LOST_CRITICAL)
  5096. {
  5097. if(ShmChargerInfo->Control.PsuCtrl.bits.CommunicationLost)
  5098. {
  5099. LOG_INFO("Psu Communication Recovery");
  5100. }
  5101. ShmChargerInfo->Control.PsuCtrl.bits.CommunicationLost = NO;
  5102. lostCnt = 0;
  5103. }
  5104. else
  5105. {
  5106. lostCnt++;
  5107. if(lostCnt >= LOST_CNT_CRITICAL)
  5108. {
  5109. if(!ShmChargerInfo->Control.PsuCtrl.bits.CommunicationLost)
  5110. {
  5111. LOG_INFO("Psu Communication Lost");
  5112. }
  5113. ShmChargerInfo->Control.PsuCtrl.bits.CommunicationLost = YES;
  5114. }
  5115. }
  5116. GetClockTime(&_PsuCommCheck_time);
  5117. }
  5118. }
  5119. else
  5120. {
  5121. isCommStart = false;
  5122. ShmChargerInfo->Control.PsuCtrl.bits.CommunicationLost = NO;
  5123. lostCnt = 0;
  5124. /*
  5125. if(ShmChargerInfo->Control.PsuCtrl.bits.Paused)
  5126. {
  5127. system("ifconfig can1 down");
  5128. sleep(1);
  5129. system("ifconfig can1 up");
  5130. sleep(1);
  5131. LOG_INFO("Psu Can Port Down & Up");
  5132. }
  5133. ShmChargerInfo->Control.PsuCtrl.bits.Paused = NO;
  5134. */
  5135. }
  5136. }
  5137. void InitialGunLimitSequence(void)
  5138. {
  5139. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  5140. {
  5141. _GunIndexOfPrioritySequence[i] = i;
  5142. }
  5143. }
  5144. bool IsShutdownTrigger(void)
  5145. {
  5146. if(ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByPsu == YES ||
  5147. ShmChargerInfo->Control.RelayCtrl.bits.AcContactorOffByEmergency == YES)
  5148. {
  5149. if(!_isTriggerShutdown)
  5150. {
  5151. PSU_LOG("Psu Shutdown Flag Is Trigger!");
  5152. }
  5153. _isTriggerShutdown = true;
  5154. return true;
  5155. }
  5156. if(_isTriggerShutdown)
  5157. {
  5158. PSU_LOG("Psu Shutdown Flag Recover");
  5159. }
  5160. _isTriggerShutdown = false;
  5161. return false;
  5162. }
  5163. bool IsShutdownCompleted(void)
  5164. {
  5165. bool done = false;
  5166. if(IsShutdownTrigger())
  5167. {
  5168. done = true;
  5169. for(int i = 0; i < GENERAL_GUN_QUANTITY; i++)
  5170. {
  5171. if(ShmPsuGrouping->GroupCollection[i].Role != _GROLE_IDLE)
  5172. {
  5173. done = false;
  5174. break;
  5175. }
  5176. }
  5177. if(done)
  5178. {
  5179. if(!_isShutdownCompleted)
  5180. {
  5181. PSU_LOG("Psu Shutdown Completed!");
  5182. }
  5183. _isShutdownCompleted = true;
  5184. }
  5185. return done;
  5186. }
  5187. if(_isShutdownCompleted)
  5188. {
  5189. PSU_LOG("Psu Shutdown Clear!");
  5190. }
  5191. _isShutdownCompleted = false;
  5192. return done;
  5193. }
  5194. int main(void)
  5195. {
  5196. byte _TotalModuleCount = 0;
  5197. byte _PrePsuWorkStep = 0;
  5198. byte isInitialComp = NO;
  5199. if(InitShareMemory() == FAIL)
  5200. {
  5201. #ifdef SystemLogMessage
  5202. LOG_ERROR("InitShareMemory NG");
  5203. #endif
  5204. if(ShmStatusCodeData != NULL)
  5205. {
  5206. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  5207. }
  5208. sleep(5);
  5209. return 0;
  5210. }
  5211. LOG_INFO("Psu Task PID = %d", getpid());
  5212. signal(SIGCHLD, SIG_IGN);
  5213. // register callback function
  5214. RefreshPsuIndex(&FindPsuIndex);
  5215. RefreshGroup(&GetGroupCallback);
  5216. RefreshAlarmStatus(&GetAlarmStatusCallback);
  5217. RefreshInfyPwrAlarmFlag(&GetInfyPwrAlarmFlagCallback);
  5218. RefreshPhPwrAlarmFlag(&GetPhPwrAlarmFlagCallback);
  5219. RefreshAmbient(&GetAmbientCallback);
  5220. RefreshModuleCount(&GetModuleCountCallback);
  5221. RefreshSysModuleCount(&GetSysModuleCountCallback);
  5222. RefreshAvailableCap(&GetAvailableCapCallback);
  5223. RefreshFwDcVersion(&GetDcFwCallback);
  5224. RefreshFwPfcVersion(&GetPfcFwCallback);
  5225. RefreshInputVol(&GetInputVoltageCallback);
  5226. RefreshGetOutput(&GetPresentOutputCallback);
  5227. RefreshFanSpeedInfo(&GetFanSpeedCallback);
  5228. RefreshInletTemp(&GetInletTempCallback);
  5229. RefreshExletTemp(&GetExletTempCallback);
  5230. RefreshOutletTemp(&GetOutletTempCallback);
  5231. RefreshOtherTemp(&GetOtherTempCallback);
  5232. RefreshIavailable(&GetIavailableCallback);
  5233. RefreshGetOutputF(&GetPresentOutputFCallback);
  5234. RefreshGetModuleOutput(&GetModuleOutputCallback);
  5235. RefreshGetErrorRecord(&GetErrorRecordCallback);
  5236. // GetPresentOutputCallback & GetStatusCallback
  5237. AutoMode_RefreshOutputAndTemp(&GetOutputAndTempCallback);
  5238. // GetStatusCallback
  5239. AutoMode_RefreshModuleStatus(&GetModuleStatusCallback);
  5240. // GetInputVoltageCallback
  5241. AutoMode_RefreshModuleInput(&GetModuleInputCallback);
  5242. sleep(2);
  5243. InitialGunLimitSequence();
  5244. _gunCount = GENERAL_GUN_QUANTITY;
  5245. _maxGroupCount = MAX_GROUP_QUANTITY;
  5246. _PrePsuWorkStep = _INIT_PSU_STATUS;
  5247. ShmPsuData->Work_Step = INITIAL_START;
  5248. isInitialComp = NO;
  5249. isCommStart = false;
  5250. _isTriggerShutdown = false;
  5251. _isShutdownCompleted = false;
  5252. LOG_INFO("PSU Work Status = %d", ShmPsuData->Work_Step);
  5253. // initial object
  5254. Initialization();
  5255. InitialPsuData();
  5256. //libInitialize = InitialCommunication();
  5257. Run_PsuRxCommProcess();
  5258. //main loop
  5259. while (1)
  5260. {
  5261. PsuCommLostCheck();
  5262. IsShutdownCompleted();
  5263. // 斷電狀態
  5264. if (ShmChargerInfo->Control.RelayCtrl.bits.AcContactor == NO ||
  5265. ShmChargerInfo->Control.PsuCtrl.bits.NeedSelfTest == YES ||
  5266. ShmChargerInfo->Control.PsuCtrl.bits.Paused == YES ||
  5267. _isShutdownCompleted)
  5268. {
  5269. //一但 AC Off PSU 斷電全部的 PSU Group ID 會全部清 0
  5270. if (!isInitialComp)
  5271. {
  5272. _PrePsuWorkStep = _INIT_PSU_STATUS;
  5273. ShmPsuData->Work_Step = INITIAL_START;
  5274. psuCmdSeq = _PSU_CMD_STATUS;
  5275. _TotalModuleCount = 0;
  5276. PsuGroupingInitial();
  5277. sleep(2);
  5278. InitialPsuData();
  5279. isInitialComp = YES;
  5280. }
  5281. if(ShmChargerInfo->Control.PsuCtrl.bits.NeedSelfTest)
  5282. {
  5283. ShmChargerInfo->Control.PsuCtrl.bits.NeedSelfTest = NO;
  5284. ShmChargerInfo->Control.PsuCtrl.bits.SelfTestOK = NO;
  5285. memset(ShmChargerInfo->Control.PsuInitQuantity, 0x00, sizeof(ShmChargerInfo->Control.PsuInitQuantity));
  5286. LOG_INFO("Psu Need Execute Self Test!");
  5287. }
  5288. sleep(1);
  5289. continue;
  5290. }
  5291. else
  5292. {
  5293. if(isInitialComp)
  5294. {
  5295. system("ifconfig can1 down");
  5296. sleep(1);
  5297. system("ifconfig can1 up");
  5298. LOG_INFO("Psu Can Port Down & Up");
  5299. }
  5300. isInitialComp = NO;
  5301. }
  5302. // only for test & debug purpose
  5303. if(ShmChargerInfo->Control.TestCtrl.bits.ChargingSimulation)
  5304. {
  5305. PsuSimulationSetting();
  5306. PsuGroupOutputSimulation();
  5307. PsuGroupAvailableSimulation();
  5308. CapabilitySimulation();
  5309. }
  5310. // 自檢失敗
  5311. if (ShmPsuData->Work_Step == _NO_WORKING)
  5312. {
  5313. LOG_INFO("== PSU == self test fail.");
  5314. sleep(5);
  5315. }
  5316. if((GetTimeoutValue(_PsuReceiveRecoveryCheck_time) / uSEC_VAL) >= PSU_TASK_CHECK_TIME)
  5317. {
  5318. //PsuReceiveRecoveryCheck();
  5319. if(!Is_PsuRxComm_Alive())
  5320. {
  5321. Run_PsuRxCommProcess();
  5322. }
  5323. GetClockTime(&_PsuReceiveRecoveryCheck_time);
  5324. }
  5325. switch(ShmPsuData->Work_Step)
  5326. {
  5327. case INITIAL_START:
  5328. {
  5329. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5330. {
  5331. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5332. LOG_INFO("== PSU == INITIAL_START");
  5333. }
  5334. sleep(5);
  5335. PsuGroupOnOff(SYSTEM_CMD, _PSU_OFF);
  5336. SetWalkInConfig(SYSTEM_CMD, NO, 0);
  5337. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  5338. {
  5339. isStartOutputSwitch[index] = false;
  5340. }
  5341. ShmPsuData->Work_Step = GET_PSU_COUNT;
  5342. }
  5343. break;
  5344. case GET_PSU_COUNT:
  5345. {
  5346. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5347. {
  5348. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5349. LOG_INFO("== PSU == GET_PSU_COUNT");
  5350. GetClockTime(&_PsuWorkStep_time);
  5351. GetClockTime(&_cmdSubPriority_time);
  5352. }
  5353. int time = GetTimeoutValue(_PsuWorkStep_time) / uSEC_VAL;
  5354. int interval = GetTimeoutValue(_cmdSubPriority_time) / uSEC_VAL;
  5355. if(interval >= GET_PSU_COUNT_INTERVAL)
  5356. {
  5357. _TotalModuleCount = 0;
  5358. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  5359. {
  5360. // 總和各群模組數量
  5361. _TotalModuleCount += ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity;
  5362. }
  5363. LOG_INFO("== PSU == indexCount = %d, moduleCount = %d, sysCount = %d",
  5364. ShmPsuData->GroupCount, _TotalModuleCount, ShmPsuData->SystemInitialPsuQuantity);
  5365. // 判斷系統數量與各群數量一致
  5366. if(_TotalModuleCount == ShmPsuData->SystemInitialPsuQuantity && _TotalModuleCount > 0 &&
  5367. time > GET_PSU_COUNT_TIME)
  5368. {
  5369. LOG_INFO("Psu Count = %d", _TotalModuleCount);
  5370. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  5371. {
  5372. ShmChargerInfo->Control.PsuInitQuantity[i] = ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity;
  5373. }
  5374. ShmPsuData->Work_Step = Get_PSU_LOCATION;
  5375. }
  5376. else
  5377. {
  5378. // 發送取得目前全部模組數量
  5379. GetSysModuleCount();
  5380. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  5381. {
  5382. // 取各群模組數量
  5383. GetModuleCount(index);
  5384. }
  5385. }
  5386. GetClockTime(&_cmdSubPriority_time);
  5387. }
  5388. }
  5389. break;
  5390. case Get_PSU_LOCATION:
  5391. {
  5392. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5393. {
  5394. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5395. LOG_INFO("== PSU == Get_PSU_LOCATION");
  5396. // clean psu location info
  5397. memset(ShmPsuPosition, 0x00, sizeof(PsuPositionInfoData));
  5398. GetClockTime(&_cmdSubPriority_time);
  5399. }
  5400. int interval = GetTimeoutValue(_cmdSubPriority_time) / mSEC_VAL;
  5401. if(interval >= GET_PSU_LOCATION_INTERVAL)
  5402. {
  5403. for(byte index = 0; index < ShmPsuData->GroupCount; index++)
  5404. {
  5405. if(ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity > 0)
  5406. {
  5407. // 取得狀態 : 支援模塊不須按照順序功能
  5408. GetStatus(index);
  5409. }
  5410. }
  5411. GetClockTime(&_cmdSubPriority_time);
  5412. }
  5413. if(ShmPsuPosition->PsuLocationInit)
  5414. {
  5415. for(int i = 0; i < _maxGroupCount; i++)
  5416. {
  5417. UpdateGunTotalPsuQuantity(i);
  5418. #if 1
  5419. if(ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity > 0)
  5420. {
  5421. ShowGroupMember(i);
  5422. }
  5423. #endif
  5424. }
  5425. //ShmPsuData->Work_Step = Get_PSU_VERSION;
  5426. ShmPsuData->Work_Step = PSU_COUNT_CONFIRM;
  5427. }
  5428. if(ShmPsuPosition->ReInitPsuLocation)
  5429. {
  5430. LOG_INFO("Retry Psu Location Initialization");
  5431. ShmPsuData->Work_Step = GET_PSU_COUNT;
  5432. }
  5433. }
  5434. break;
  5435. case PSU_COUNT_CONFIRM:
  5436. {
  5437. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5438. {
  5439. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5440. LOG_INFO("== PSU == PSU_COUNT_CONFIRM");
  5441. GetClockTime(&_PsuWorkStep_time);
  5442. GetClockTime(&_cmdSubPriority_time);
  5443. }
  5444. int time = GetTimeoutValue(_PsuWorkStep_time) / uSEC_VAL;
  5445. int interval = GetTimeoutValue(_cmdSubPriority_time) / mSEC_VAL;
  5446. if(interval > PSU_COUNT_CONFIRM_INTERVAL)
  5447. {
  5448. _TotalModuleCount = 0;
  5449. for (byte index = 0; index < _maxGroupCount; index++)
  5450. {
  5451. // 總和各群模組數量
  5452. _TotalModuleCount += ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity;
  5453. }
  5454. if(time > PSU_COUNT_CONFIRM_TIME)
  5455. {
  5456. if(_TotalModuleCount == ShmPsuData->SystemInitialPsuQuantity && _TotalModuleCount > 0)
  5457. {
  5458. ShmPsuData->Work_Step = Get_PSU_VERSION;
  5459. }
  5460. else
  5461. {
  5462. LOG_INFO("Total PSU = %d, System PSU Quantity = %d", _TotalModuleCount, ShmPsuData->SystemInitialPsuQuantity);
  5463. LOG_INFO("PSU Quantity Confirm Fail");
  5464. ShmPsuData->Work_Step = GET_PSU_COUNT;
  5465. }
  5466. break;
  5467. }
  5468. // 發送取得目前全部模組數量
  5469. GetSysModuleCount();
  5470. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  5471. {
  5472. // 取各群模組數量
  5473. GetModuleCount(index);
  5474. }
  5475. GetClockTime(&_cmdSubPriority_time);
  5476. }
  5477. }
  5478. break;
  5479. case Get_PSU_VERSION:
  5480. {
  5481. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5482. {
  5483. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5484. LOG_INFO("== PSU == Get_PSU_VERSION");
  5485. GetClockTime(&_cmdSubPriority_time);
  5486. // clean version info
  5487. memset(ShmPsuData->PsuVersion, 0x00, sizeof(ShmPsuData->PsuVersion));
  5488. }
  5489. int interval = GetTimeoutValue(_cmdSubPriority_time) / mSEC_VAL;
  5490. if (interval >= GET_PSU_VERSION_INTERVAL)
  5491. {
  5492. bool isGetVersion = true;
  5493. for(byte psu = 0; psu < ShmPsuData->SystemInitialPsuQuantity; psu++)
  5494. {
  5495. if (strcmp((char *)ShmPsuData->PsuVersion[psu].FwPrimaryVersion, "") == EQUAL)
  5496. {
  5497. isGetVersion = false;
  5498. break;
  5499. }
  5500. }
  5501. if(isGetVersion)
  5502. {
  5503. #if 1
  5504. for(int i = 0; i < _maxGroupCount; i++)
  5505. {
  5506. if(ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity > 0)
  5507. {
  5508. ShowPsuVersion(i);
  5509. }
  5510. }
  5511. #endif
  5512. ShmPsuData->Work_Step = GET_SYS_CAP;
  5513. }
  5514. else
  5515. {
  5516. for(byte group = 0; group < _maxGroupCount; group++)
  5517. {
  5518. if(ShmPsuData->PsuGroup[group].GroupPresentPsuQuantity > 0)
  5519. {
  5520. // 取版號
  5521. GetAllModuleVer(group);
  5522. }
  5523. }
  5524. }
  5525. GetClockTime(&_cmdSubPriority_time);
  5526. }
  5527. }
  5528. break;
  5529. case GET_SYS_CAP:
  5530. {
  5531. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5532. {
  5533. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5534. LOG_INFO("== PSU == GET_SYS_CAP");
  5535. GetClockTime(&_PsuWorkStep_time);
  5536. GetClockTime(&_cmdSubPriority_time);
  5537. }
  5538. int time = GetTimeoutValue(_PsuWorkStep_time) / uSEC_VAL;
  5539. int interval = GetTimeoutValue(_cmdSubPriority_time) / mSEC_VAL;
  5540. if (interval >= GET_PSU_CAP_INTERVAL)
  5541. {
  5542. if(time > GET_PSU_CAP_TIME && ShmPsuData->SystemAvailablePower > 0 &&
  5543. ShmPsuData->SystemAvailableCurrent > 0)
  5544. {
  5545. #if 1
  5546. for(int i = 0; i < _maxGroupCount; i++)
  5547. {
  5548. if(ShmPsuPosition->GroupLocationInfo[i].GroupPsuQuantity > 0)
  5549. {
  5550. ShowGroupAvailableCurrentPower(i);
  5551. }
  5552. }
  5553. #endif
  5554. // 判斷系統輸出額定功率與電流
  5555. LOG_INFO("SystemAvailableCurrent = %d, SystemAvailablePower = %d",
  5556. ShmPsuData->SystemAvailableCurrent, ShmPsuData->SystemAvailablePower);
  5557. ShmPsuData->Work_Step = BOOTING_COMPLETE;
  5558. }
  5559. else
  5560. {
  5561. for(byte index = 0; index < ShmPsuData->GroupCount; index++)
  5562. {
  5563. if(ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity > 0)
  5564. {
  5565. // 取系統總輸出能力
  5566. GetModuleCap(index);
  5567. }
  5568. }
  5569. }
  5570. GetClockTime(&_cmdSubPriority_time);
  5571. }
  5572. }
  5573. break;
  5574. case BOOTING_COMPLETE:
  5575. {
  5576. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5577. {
  5578. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5579. LOG_INFO("== PSU == BOOTING_COMPLETE");
  5580. }
  5581. if(ShmChargerInfo->Control.PsuCtrl.bits.SelfTestOK)
  5582. {
  5583. ShmPsuData->Work_Step = _WORK_CHARGING;
  5584. }
  5585. else
  5586. {
  5587. LOG_INFO("== PSU == Self Test OK!");
  5588. }
  5589. ShmChargerInfo->Control.PsuCtrl.bits.SelfTestOK = true;
  5590. }
  5591. break;
  5592. case _WORK_CHARGING:
  5593. {
  5594. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5595. {
  5596. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5597. LOG_INFO("== PSU == _WORK_CHARGING");
  5598. GetClockTime(&_PsuWorkStep_time);
  5599. GetClockTime(&_cmdSubPriority_time);
  5600. PsuGroupingInitial();
  5601. }
  5602. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  5603. // 低 Priority 的指令
  5604. if (time >= 1000)
  5605. {
  5606. GetSysModuleCount();
  5607. for(int i = 0; i < MAX_GROUP_QUANTITY; i++)
  5608. {
  5609. if(ShmPsuData->PsuGroup[i].GroupPresentPsuQuantity > 0)
  5610. {
  5611. GetStatus(i);
  5612. GetModuleCount(i);
  5613. GetModuleInputVol(i);
  5614. if(IsPsuGroupAnyAlarmFault(i))
  5615. {
  5616. GetErrorRecord(i);
  5617. }
  5618. }
  5619. }
  5620. for(int i = 0; i < MAX_GUN_QUANTITY; i++)
  5621. {
  5622. UpdateGunTotalPsuQuantity(i);
  5623. }
  5624. GetClockTime(&_cmdSubPriority_time);
  5625. }
  5626. CheckPsuAlarmStatus();
  5627. CheckPsuErrRecord();
  5628. PsuGroupRoutineQuery();
  5629. PsuGroupControlProcess();
  5630. break;
  5631. }
  5632. case _TEST_MODE:
  5633. {
  5634. // 在測試模式中,保持與模塊的通訊
  5635. int time = GetTimeoutValue(_cmdSubPriority_time) / 1000;
  5636. if (time > 1500)
  5637. {
  5638. for (byte index = 0; index < ShmPsuData->GroupCount; index++)
  5639. {
  5640. // 取系統總輸出能力
  5641. GetModuleCap(index);
  5642. // 取各群輸出電壓電流 (float)
  5643. GetModuleOutputF(index);
  5644. }
  5645. GetClockTime(&_cmdSubPriority_time);
  5646. }
  5647. byte _switch = 0x00;
  5648. if ((chargingInfo[0]->EvBatterytargetVoltage * 10) > 0 && (chargingInfo[0]->EvBatterytargetCurrent * 10) > 0)
  5649. _switch = 0x01;
  5650. for (byte _groupCount_1 = 0; _groupCount_1 < conn_1_count; _groupCount_1++)
  5651. {
  5652. SetDirModulePresentOutput(connector_1[_groupCount_1],
  5653. (chargingInfo[0]->EvBatterytargetVoltage * 10),
  5654. (chargingInfo[0]->EvBatterytargetCurrent * 10),
  5655. _switch, _switch);
  5656. }
  5657. for (byte _groupCount_2 = 0; _groupCount_2 < conn_2_count; _groupCount_2++)
  5658. {
  5659. SetDirModulePresentOutput(connector_2[_groupCount_2],
  5660. (chargingInfo[0]->EvBatterytargetVoltage * 10),
  5661. (chargingInfo[0]->EvBatterytargetCurrent * 10),
  5662. _switch, _switch);
  5663. }
  5664. }
  5665. break;
  5666. case _INIT_PSU_STATUS:
  5667. if(_PrePsuWorkStep != ShmPsuData->Work_Step)
  5668. {
  5669. _PrePsuWorkStep = ShmPsuData->Work_Step;
  5670. LOG_INFO("== PSU == _INIT_PSU_STATUS");
  5671. GetClockTime(&_cmdSubPriority_time);
  5672. }
  5673. break;
  5674. default:
  5675. break;
  5676. }
  5677. usleep(20000);
  5678. }
  5679. return FAIL;
  5680. }