Module_PsuComm.c 221 KB

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