commit 5e407e52e01e3274467a143669efad02c16767f2 Author: Yeongdo Park Date: Mon Feb 10 12:17:43 2020 -0800 Initial Commit - Monitoring Cell V, T diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f21b54 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/venv/ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..5c98b42 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..bef9027 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..c49723b --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/wxGladeTest.iml b/.idea/wxGladeTest.iml new file mode 100644 index 0000000..74d515a --- /dev/null +++ b/.idea/wxGladeTest.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/PCANBasic.dll b/PCANBasic.dll new file mode 100644 index 0000000..304927f Binary files /dev/null and b/PCANBasic.dll differ diff --git a/can.ini b/can.ini new file mode 100644 index 0000000..548f6e4 --- /dev/null +++ b/can.ini @@ -0,0 +1,4 @@ +[default] +interface = pcan +channel = PCAN_USBBUS1 +bitrate = 250000 diff --git a/cantools-ebus.py b/cantools-ebus.py new file mode 100644 index 0000000..3502ea1 --- /dev/null +++ b/cantools-ebus.py @@ -0,0 +1,6 @@ +import cantools +from pprint import pprint +db = cantools.database.load_file('res/EBUS_Host.dbc') +pprint(db.messages) +# example_message = db.get_message_by_name('ExampleMessage') +# pprint(example_message.signals) \ No newline at end of file diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..abd683d --- /dev/null +++ b/hello.py @@ -0,0 +1,128 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +# +# generated by wxGlade 0.9.5 on Mon Feb 3 15:18:49 2020 +# + +import wx +import wx.propgrid + +# begin wxGlade: dependencies +import gettext +# end wxGlade + +import can +import cantools + +# begin wxGlade: extracode +# end wxGlade + + +class MyFrame(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: MyFrame.__init__ + kwds["style"] = kwds.get("style", 0) | wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + self.SetSize((400, 300)) + + self.counter = 0 + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.OnTimer, self.timer) + + self.property_grid_1 = wx.propgrid.PropertyGrid(self, wx.ID_ANY) + #cat1 = wx.propgrid.PropertyCategory("Message 1") + #self.property_grid_1.Append(cat1) + #self.property_grid_1.AppendIn(wx.propgrid.PGPropArgCls(cat1), wx.propgrid.StringProperty(label="sp1", name="test_string", value="some string value")) + self.property_grid_1.Append(wx.propgrid.StringProperty(label="sp1", value="some string value")) + + self.button_1 = wx.ToggleButton(self, wx.ID_ANY, _("Start")) + + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_TOGGLEBUTTON, self.ToggleCAN, self.button_1) + # end wxGlade + + self.candb = cantools.database.load_file('res/EBUS_Host.dbc') + + self.battery_module_state = [{} for i in range(18)] + + + def __set_properties(self): + # begin wxGlade: MyFrame.__set_properties + self.SetTitle(_("frame")) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_1.Add(self.property_grid_1, 1, wx.EXPAND, 0) + sizer_1.Add(self.button_1, 0, 0, 0) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def ToggleCAN(self, event): # wxGlade: MyFrame. + btnLabel = self.button_1.GetLabel() + if self.button_1.Value: + print ("starting timer...") + self.bus = can.Bus() + + self.timer.Start(10) + self.button_1.SetLabel("Stop") + else: + print ( "timer stopped!" ) + self.bus.shutdown() + self.bus = None + + self.timer.Stop() + self.button_1.SetLabel("Start") + + event.Skip() + + def OnTimer(self, event): # wxGlade: MyFrame. + # print("Read CAN Message!") + msg = self.bus.recv(timeout=1.) + islave = (msg.arbitration_id & (~0xfffff0ff)) + mtag = (msg.arbitration_id & 0xfffff000) >> 12 + mid = (msg.arbitration_id & 0xf00) >> 8 + mtype = msg.arbitration_id & 0xff + if 0x07 <= mtype <= 0x0b: + try: + dmsg = self.candb.decode_message(msg.arbitration_id, msg.data) + except KeyError as key: + print(key, " does not exist") + else: + print(hex(msg.arbitration_id), hex(mtag), hex(mid), hex(mtype), dmsg) + self.__update_bm_state(dmsg) + + for k in self.battery_module_state[0]: + if self.property_grid_1.GetProperty(k): + self.property_grid_1.SetPropertyValue(k, self.battery_module_state[0][k]) + else: + self.property_grid_1.Append(wx.propgrid.StringProperty(label=k, value=str(self.battery_module_state[0][k]))) + event.Skip() + + + def __update_bm_state(self, dmsg): + imodule = dmsg['BatS_Cell_ModuleNo'] + for k in dmsg: + self.battery_module_state[imodule][k] = dmsg[k] + + +# end of class MyFrame + +class MyApp(wx.App): + def OnInit(self): + self.frame = MyFrame(None, wx.ID_ANY, "") + self.SetTopWindow(self.frame) + self.frame.Show() + return True + +# end of class MyApp + +if __name__ == "__main__": + gettext.install("app") # replace with the appropriate catalog name + + app = MyApp(0) + app.MainLoop() diff --git a/res/EBUS_Host.dbc b/res/EBUS_Host.dbc new file mode 100644 index 0000000..191ec35 --- /dev/null +++ b/res/EBUS_Host.dbc @@ -0,0 +1,4492 @@ +VERSION "" + + +NS_ : + NS_DESC_ + CM_ + BA_DEF_ + BA_ + VAL_ + CAT_DEF_ + CAT_ + FILTER + BA_DEF_DEF_ + EV_DATA_ + ENVVAR_DATA_ + SGTYPE_ + SGTYPE_VAL_ + BA_DEF_SGTYPE_ + BA_SGTYPE_ + SIG_TYPE_REF_ + VAL_TABLE_ + SIG_GROUP_ + SIG_VALTYPE_ + SIGTYPE_VALTYPE_ + BO_TX_BU_ + BA_DEF_REL_ + BA_REL_ + BA_DEF_DEF_REL_ + BU_SG_REL_ + BU_EV_REL_ + BU_BO_REL_ + SG_MUL_VAL_ + +BS_: + +BU_: +VAL_TABLE_ OCV_table 1 "OCV" 0 "Not OCV" ; +VAL_TABLE_ ChargeMode_table 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_TABLE_ RunState_table 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_TABLE_ MasterState_table 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_TABLE_ ox_table 1 "O" 0 "X" ; +VAL_TABLE_ TypeCell_table 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_TABLE_ ClassCell_table 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_TABLE_ RoofAirCylCtrl_table 1 "Open" 0 "Close" ; +VAL_TABLE_ RoofMotCtrl_table 3 "Init Control" 2 "Open Control" 1 "Close Control" 0 "Off" ; +VAL_TABLE_ RoofSubDoorState_table 1 "Opened" 0 "Closed" ; +VAL_TABLE_ RoofState_table 7 "Reserved" 6 "Initializing" 5 "Stoped middle" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_TABLE_ ChgMode_table 3 "others" 2 "others" 1 "CV" 0 "CC" ; +VAL_TABLE_ ChgOnOff_table 1 "OFF" 0 "ON" ; +VAL_TABLE_ Bellowstate_table 7 "Middle State Stall" 6 "Down State Stall" 5 "Up State Stall" 4 "Stoped Down" 3 "Moving Up" 2 "Moving Down" 1 "Stoped Up" 0 "Off" ; +VAL_TABLE_ QtpState_table 7 "Middle Stall" 6 "Opened Stall" 5 "Closed Stall" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_TABLE_ Mc_Fb_table 3 "Not Available" 2 "Error" 1 "ON" 0 "OFF" ; +VAL_TABLE_ DiagInverter_table 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_TABLE_ MotorDir_table 1 "Forward" 0 "Not Forward" ; +VAL_TABLE_ RoofControl_table 3 "RD init" 2 "RD Close" 1 "RD Open" 0 "Normal state" ; +VAL_TABLE_ ChargeRq_table 3 "Reserved" 2 "MCS Charge Rq" 1 "Battery Charge Rq" 0 "OFF" ; +VAL_TABLE_ BusState_table 7 "Reserved" 6 "Reserved" 5 "MCS Charge" 4 "QTP Closed" 3 "QTP Opened" 2 "BAT Change Ready" 1 "System Run(Drive Ready)" 0 "System OFF" ; +VAL_TABLE_ QcmSeq_table 15 "Reserved" 14 "Reserved" 13 "Reserved" 12 "Reserved" 11 "Battery Change End" 10 "Bellows Up" 9 "Battery Change OK" 8 "Battery Change" 7 "QTP open check OK" 6 "QTP Open Rq" 5 "Bellows down" 4 "Bus System Off OK" 3 "Bus System Off Rq" 2 "Bus Stop OK" 1 "QCM_Ready" 0 "OFF" ; +VAL_TABLE_ QtpSeq_table 7 "Reserved" 6 "QTP Opened" 5 "Battery clamp Control" 4 "Connect Control" 3 "Blower position Control" 2 "Roof Door Control" 1 "QTP Closed" 0 "OFF" ; +VAL_TABLE_ BlowerControl_table 7 "Reserved" 6 "Reserved" 5 "Blower Speed : 5" 4 "Blower Speed : 4" 3 "Blower Speed : 3" 2 "Blower Speed : 2" 1 "Blower Speed : 1" 0 "Off" ; +VAL_TABLE_ QtpControl_table 3 "QTP Reset" 2 "QTP Close" 1 "QTP Open" 0 "Normal State" ; +VAL_TABLE_ OnOff_table 1 "ON" 0 "OFF" ; +VAL_TABLE_ EV_ON_table 3 "??" 2 "Charge mode ON" 1 "Drive mode ON" 0 "OFF" ; +VAL_TABLE_ diagError_table 3 "Short to High" 2 "Open" 1 "Short to Low" 0 "No Error" ; +VAL_TABLE_ BatSel_table 3 "All Battery Change" 2 "Sub Battery" 1 "Main Battery" 0 "Not Select" ; +VAL_TABLE_ SysOn_table 3 "Not Available" 2 "CHG_ON" 1 "IG_ON" 0 "OFF" ; +VAL_TABLE_ RetarderControl_table 3 " Retarder Level is 3" 2 " Retarder Level is 2" 1 " Retarder Level is 1" 0 "No Retarder" ; +VAL_TABLE_ AuxControl_table 3 "Not available" 2 "Set to speed ref2" 1 "Set to speed ref1" 0 "Control not set" ; +VAL_TABLE_ DNR_table 7 "Error" 6 "Error" 5 "Error" 4 "R" 3 "Error" 2 "N" 1 "D" 0 "Error" ; +VAL_TABLE_ switch_table 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; + + +BO_ 3221225472 VECTOR__INDEPENDENT_SIG_MSG: 0 Vector__XXX + SG_ BatS_Cell_PackNo : 0|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SOH_CycleCount : 0|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_FanState_2 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 0|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602208 SYSBMStoLOBMS_4: 8 Vector__XXX + SG_ CELL_Bal_Drive : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellV_Bal_Target : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ EV_ON_CTRL_SOURCE : 1|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601952 SYSBMStoLOBMS_3: 8 Vector__XXX + SG_ CELL_Bal_Drive : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellV_Bal_Target : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ EV_ON_CTRL_SOURCE : 1|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601696 SYSBMStoLOBMS_2: 8 Vector__XXX + SG_ CELL_Bal_Drive : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellV_Bal_Target : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ EV_ON_CTRL_SOURCE : 1|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601440 SYSBMStoLOBMS_1: 8 Vector__XXX + SG_ CELL_Bal_Drive : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellV_Bal_Target : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ EV_ON_CTRL_SOURCE : 1|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603216 CHGsystoBMS: 8 Vector__XXX + SG_ Pack_Bal_Drive : 16|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack4_Force_On : 20|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack3_Force_On : 19|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack2_Force_On : 18|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack1_Force_On : 17|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2484603175 EVCU11toBMS_M_C9: 3 Vector__XXX + SG_ Pack4_Force_On : 20|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack3_Force_On : 19|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack2_Force_On : 18|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack1_Force_On : 17|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pack_Bal_Drive : 16|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M_Fb : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ MC_DRV_BMS_M : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ PC_DRV_BMS_M : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ EV_ON_BMS_M : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603152 BMS_PF8_Alarm1_OnBUS_Sys: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603142 BMS_PF7_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603141 BMS_PF6_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603140 BMS_PF5_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603139 BMS_PF4_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603138 BMS_PF3_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603137 BMS_PF2_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603136 BMS_PF1_OnBUS_Sys: 8 Vector__XXX + +BO_ 2484603153 BMS_M9_OnBUS_Sys: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484603148 BMS_M26_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484603147 BMS_M25_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveCellBal3_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal2_T : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal1_T : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlavePWR_T : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveMCU_T : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell2_T : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell1_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484603146 BMS_M24_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484603145 BMS_M23_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484603144 BMS_M22_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484603143 BMS_M21_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484603168 BMS_M20_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Pack4LinkFail : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack3LinkFail : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack2LinkFail : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack1LinkFail : 24|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484603163 BMS_M19_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484603162 BMS_M18_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484603161 BMS_M17_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603160 BMS_M16_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484603159 BMS_M15_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_tCellMax_PackNo : 23|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_PackNo : 55|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 53|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 21|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484603158 BMS_M14_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_vCellMax_PackNo : 39|2@0+ (1,0) [0|3] "" Vector__XXX + SG_ BatS_vCellMin_PackNo : 55|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 53|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 37|6@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484603157 BMS_M13_OnBUS_Sys: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484603156 BMS_M12_OnBUS_Sys: 8 Vector__XXX + SG_ Pack4_Low_V_Flag : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack3_Low_V_Flag : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack2_Low_V_Flag : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack1_Low_V_Flag : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack4_Ready : 7|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack3_Ready : 6|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack2_Ready : 5|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Pack1_Ready : 4|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 8|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603155 BMS_M11_OnBUS_Sys: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484603154 BMS_M10_OnBUS_Sys: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601383 EVCU11toBMS_M_C2: 3 Vector__XXX + SG_ BDU_M_Fb : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ MC_DRV_BMS_M : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ PC_DRV_BMS_M : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ EV_ON_BMS_M : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566864167 EVCU6toAll: 8 Vector__XXX + SG_ CANErr_QPTS : 24|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_QPTS : 40|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_GF : 39|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_RDCU : 38|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BTM : 37|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_QTP : 36|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BMS_S : 35|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BMS_M : 34|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_DrvSys : 33|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_EVCU : 32|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_RDCU : 23|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_ABS : 22|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BTM : 21|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_QTP : 20|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BMS_S : 19|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BMS_M : 18|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_DCAN : 17|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_DICO : 16|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagDNR : 4|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagBPS : 2|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagAPS : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602892 BMS_M26_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602636 BMS_M26_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602380 BMS_M26_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602124 BMS_M26_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601868 BMS_M26_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601612 BMS_M26_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601356 BMS_M26_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_Fault : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_RevisionVer : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MinorVer : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Slave_MajorVer : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveAir_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602891 BMS_M25_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveCellBal3_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal2_T : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal1_T : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlavePWR_T : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveMCU_T : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell2_T : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell1_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602635 BMS_M25_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveCellBal3_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal2_T : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCellBal1_T : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlavePWR_T : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveMCU_T : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell2_T : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell1_T : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602379 BMS_M25_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveRVS_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T6 : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T5 : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T4 : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T3 : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T2 : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T1 : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602123 BMS_M25_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveRVS_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T6 : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T5 : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T4 : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T3 : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T2 : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T1 : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601867 BMS_M25_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveRVS_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T6 : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T5 : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T4 : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T3 : 16|8@1- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T2 : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T1 : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601611 BMS_M25_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveRVS_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T6 : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T5 : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T4 : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T3 : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T2 : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T1 : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484601355 BMS_M25_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SlaveRVS_T : 55|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T6 : 47|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T5 : 39|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T4 : 31|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T3 : 23|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T2 : 15|8@0- (1,0) [-40|127] "¡É" Vector__XXX + SG_ BatS_SlaveCell_T1 : 7|8@0- (1,0) [-40|127] "¡É" Vector__XXX + +BO_ 2484602890 BMS_M24_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602634 BMS_M24_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602378 BMS_M24_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602122 BMS_M24_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601866 BMS_M24_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601610 BMS_M24_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602889 BMS_M23_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602633 BMS_M23_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602377 BMS_M23_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602121 BMS_M23_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601865 BMS_M23_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601609 BMS_M23_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602888 BMS_M22_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602632 BMS_M22_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602376 BMS_M22_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602120 BMS_M22_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601864 BMS_M22_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601608 BMS_M22_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602887 BMS_M21_OnBUS_S: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602631 BMS_M21_OnBUS_M: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602375 BMS_M21_OnCHG600: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602119 BMS_M21_OnCHG500: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601863 BMS_M21_OnCHG400: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601607 BMS_M21_OnCHG300: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601354 BMS_M24_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell10_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell9_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell11_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell10_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell9_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601353 BMS_M23_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell7_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell6_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell8_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell7_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell6_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601352 BMS_M22_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell4_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell3_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell5_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell4_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell3_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601351 BMS_M21_OnCHG200: 8 Vector__XXX + SG_ BatS_Cell_ModuleNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_BalState : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell1_BalState : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell0_BalState : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Cell2_V : 39|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell1_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_Cell0_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602912 BMS_M20_OnBUS_S: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602656 BMS_M20_OnBUS_M: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602400 BMS_M20_OnCHG600: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602144 BMS_M20_OnCHG500: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601888 BMS_M20_OnCHG400: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601632 BMS_M20_OnCHG300: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601376 BMS_M20_OnCHG200: 8 Vector__XXX + SG_ BatS_SOH_CycleCount : 55|16@0+ (1,0) [0|65535] "" Vector__XXX + SG_ BatS_Sum_tCellV : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_FanState_2 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_FanState_1 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_PreCharge : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP2_Main : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_sP1_Main : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_RelayState_Bottom : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterOCVState : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterChargeMode : 22|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterRunState : 20|2@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_MasterState : 18|3@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_I : 7|16@0- (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602907 BMS_M19_OnBUS_S: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602651 BMS_M19_OnBUS_M: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602395 BMS_M19_OnCHG600: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602139 BMS_M19_OnCHG500: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601883 BMS_M19_OnCHG400: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601627 BMS_M19_OnCHG300: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601371 BMS_M19_OnCHG200: 8 Vector__XXX + SG_ BatS_MasterAuxV : 55|16@0+ (0.01,0) [0|30] "V" Vector__XXX + SG_ BatS_MasterAir3_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir2_T : 31|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterAir1_T : 23|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterPWR_T : 15|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_MasterMCU_T : 7|8@0- (1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602906 BMS_M18_OnBUS_S: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602650 BMS_M18_OnBUS_M: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602394 BMS_M18_OnCHG600: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602138 BMS_M18_OnCHG500: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601882 BMS_M18_OnCHG400: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601626 BMS_M18_OnCHG300: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601370 BMS_M18_OnCHG200: 8 Vector__XXX + SG_ BatS_SubPack2_I : 55|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack1_I : 39|16@0- (0.1,0) [-3276.8|3276.7] "A" Vector__XXX + SG_ BatS_SubPack2_V : 23|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ BatS_SubPack1_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602905 BMS_M17_OnBUS_S: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602649 BMS_M17_OnBUS_M: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602393 BMS_M17_OnCHG600: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602137 BMS_M17_OnCHG500: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601881 BMS_M17_OnCHG400: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601625 BMS_M17_OnCHG300: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601369 BMS_M17_OnCHG200: 8 Vector__XXX + SG_ BatS_CellBal_Stop : 55|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_CellBal_Start : 39|16@0+ (0.001,0) [0|65.535] "V" Vector__XXX + SG_ BatS_LocalCANErr_S27 : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S26 : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S25 : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S24 : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S23 : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S22 : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S21 : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S20 : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S19 : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S18 : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S17 : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S16 : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S15 : 23|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S14 : 22|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S13 : 21|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S12 : 20|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S11 : 19|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S10 : 18|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S9 : 17|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S8 : 16|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S7 : 31|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S6 : 30|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S5 : 29|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S4 : 28|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S3 : 27|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S2 : 26|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S1 : 25|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_LocalCANErr_S0 : 24|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602904 BMS_M16_OnBUS_S: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484602648 BMS_M16_OnBUS_M: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484602392 BMS_M16_OnCHG600: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484602136 BMS_M16_OnCHG500: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484601880 BMS_M16_OnCHG400: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484601624 BMS_M16_OnCHG300: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484601368 BMS_M16_OnCHG200: 8 Vector__XXX + SG_ BatS_GndFault_R : 55|16@0+ (0.1,0) [0|120] "M§Ù" Vector__XXX + SG_ BatS_AirMax_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_irCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_irCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_IR : 7|16@0+ (0.1,0) [0|0] "m§Ù" Vector__XXX + +BO_ 2484602903 BMS_M15_OnBUS_S: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602647 BMS_M15_OnBUS_M: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602391 BMS_M15_OnCHG600: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602135 BMS_M15_OnCHG500: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601879 BMS_M15_OnCHG400: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601623 BMS_M15_OnCHG300: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484601367 BMS_M15_OnCHG200: 8 Vector__XXX + SG_ BatS_tCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_T : 39|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_tCellMax_CellNo : 31|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_tCellMax_ModuleNo : 23|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMax_T : 7|16@0- (0.1,0) [-40|125] "¡É" Vector__XXX + +BO_ 2484602902 BMS_M14_OnBUS_S: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602646 BMS_M14_OnBUS_M: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602390 BMS_M14_OnCHG600: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602134 BMS_M14_OnCHG500: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601878 BMS_M14_OnCHG400: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601622 BMS_M14_OnCHG300: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484601366 BMS_M14_OnCHG200: 8 Vector__XXX + SG_ BatS_vCellMin_CellNo : 63|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMin_ModuleNo : 55|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_CellNo : 47|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_vCellMax_ModuleNo : 39|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CellMin_V : 23|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + SG_ BatS_CellMax_V : 7|16@0+ (0.001,0) [0|4.3] "V" Vector__XXX + +BO_ 2484602901 BMS_M13_OnBUS_S: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602645 BMS_M13_OnBUS_M: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602389 BMS_M13_OnCHG600: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602133 BMS_M13_OnCHG500: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601877 BMS_M13_OnCHG400: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601621 BMS_M13_OnCHG300: 8 Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601365 BMS_M13_OnCHG200: 8 Vector__XXX + SG_ BatS_Warn2_OCES : 55|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UT : 59|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UPC : 61|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_UV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OT : 58|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OPC : 60|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_OV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Fault_GF : 62|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UT : 51|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UPC : 53|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_UCV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OT : 50|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OPC : 52|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_OCV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn2_GF : 54|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCES : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_GF : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UPC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OPC : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UT : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OT : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_UCV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Warn_OCV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Pack_T : 39|8@0- (1,0) [-40|125] "¡É" Vector__XXX + SG_ BatS_Pack_ABS_I : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ BatS_Pack_V : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602900 BMS_M12_OnBUS_S: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 8|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602644 BMS_M12_OnBUS_M: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 8|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602388 BMS_M12_OnCHG600: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 0|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 15|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 14|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 13|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 12|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 11|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 10|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 8|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602132 BMS_M12_OnCHG500: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 7|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 6|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 5|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 4|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 0|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601876 BMS_M12_OnCHG400: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 7|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 6|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 5|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 4|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 0|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601620 BMS_M12_OnCHG300: 8 Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 7|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 6|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 5|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 4|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 0|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601364 BMS_M12_OnCHG200: 8 Vector__XXX + SG_ BatS_Charger_Mode : 9|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_SOH : 55|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_SOC : 39|16@0+ (0.1,0) [0|100] "%" Vector__XXX + SG_ BatS_CV_Mode : 8|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_CC_Mode : 7|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_BDU_Relay_State : 6|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charge_Cutoff_Req : 5|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Discharging : 4|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_ChargeFull : 3|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Trickle_Charging : 2|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Charging : 1|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ BatS_Ready : 0|1@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602899 BMS_M11_OnBUS_S: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602643 BMS_M11_OnBUS_M: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602387 BMS_M11_OnCHG600: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602131 BMS_M11_OnCHG500: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601875 BMS_M11_OnCHG400: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601619 BMS_M11_OnCHG300: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484601363 BMS_M11_OnCHG200: 8 Vector__XXX + SG_ RC : 55|16@0+ (0.01,0) [0|0] "Ah" Vector__XXX + SG_ V_CHG_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_CHG_CC_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_CHG_End_BAT : 7|16@0+ (0.1,0) [0|0] "A" Vector__XXX + +BO_ 2484602898 BMS_M10_OnBUS_S: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602642 BMS_M10_OnBUS_M: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602386 BMS_M10_OnCHG600: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602130 BMS_M10_OnCHG500: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601874 BMS_M10_OnCHG400: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601618 BMS_M10_OnCHG300: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601362 BMS_M10_OnCHG200: 8 Vector__XXX + SG_ I_TCHG_BAT : 55|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ I_DCHG_MaxCR_BAT : 39|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ I_CHG_MaxCR_BAT : 23|16@0+ (0.1,0) [0|0] "C" Vector__XXX + SG_ V_Lmt_TChg_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602897 BMS_M9_OnBUS_S: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602641 BMS_M9_OnBUS_M: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602385 BMS_M9_OnCHG600: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602129 BMS_M9_OnCHG500: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601873 BMS_M9_OnCHG400: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601617 BMS_M9_OnCHG300: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484601361 BMS_M9_OnCHG200: 8 Vector__XXX + SG_ V_Min_BAT : 55|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ V_Max_BAT : 39|16@0+ (0.1,0) [0|0] "V" Vector__XXX + SG_ I_Rated_BAT : 23|16@0+ (0.1,0) [0|0] "A" Vector__XXX + SG_ V_Rated_BAT : 7|16@0+ (0.1,0) [0|0] "V" Vector__XXX + +BO_ 2484602384 BMS_PF8_Alarm1_OnCHG600: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602128 BMS_PF8_Alarm1_OnCHG500: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601872 BMS_PF8_Alarm1_OnCHG400: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601616 BMS_PF8_Alarm1_OnCHG300: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484601360 BMS_PF8_Alarm1_OnCHG200: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602896 BMS_PF8_Alarm1_OnBUS_S: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602640 BMS_PF8_Alarm1_OnBUS_M: 8 Vector__XXX + SG_ Fault_UPV : 57|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Fault_OPV : 56|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_UPV : 49|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn2_OPV : 48|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OCU : 47|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OMIE : 46|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OROC : 45|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTD : 44|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UCTC : 43|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_SOC : 42|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_UPV : 41|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ Warn_OPV : 40|1@0+ (1,0) [0|0] "" Vector__XXX + SG_ MadeupOfCell_P : 31|8@0+ (1,0) [0|0] "P" Vector__XXX + SG_ MadeupOfCell_S : 23|8@0+ (1,0) [0|0] "S" Vector__XXX + SG_ TypeOfCell : 15|8@0+ (1,0) [0|0] "" Vector__XXX + SG_ ClassOfCell : 7|8@0+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602374 BMS_PF7_OnCHG600: 8 Vector__XXX + +BO_ 2484602118 BMS_PF7_OnCHG500: 8 Vector__XXX + +BO_ 2484601862 BMS_PF7_OnCHG400: 8 Vector__XXX + +BO_ 2484601606 BMS_PF7_OnCHG300: 8 Vector__XXX + +BO_ 2484601350 BMS_PF7_OnCHG200: 8 Vector__XXX + +BO_ 2484602886 BMS_PF7_OnBUS_S: 8 Vector__XXX + +BO_ 2484602630 BMS_PF7_OnBUS_M: 8 Vector__XXX + +BO_ 2484602373 BMS_PF6_OnCHG600: 8 Vector__XXX + +BO_ 2484602117 BMS_PF6_OnCHG500: 8 Vector__XXX + +BO_ 2484601861 BMS_PF6_OnCHG400: 8 Vector__XXX + +BO_ 2484601605 BMS_PF6_OnCHG300: 8 Vector__XXX + +BO_ 2484601349 BMS_PF6_OnCHG200: 8 Vector__XXX + +BO_ 2484602885 BMS_PF6_OnBUS_S: 8 Vector__XXX + +BO_ 2484602629 BMS_PF6_OnBUS_M: 8 Vector__XXX + +BO_ 2484602372 BMS_PF5_OnCHG600: 8 Vector__XXX + +BO_ 2484602116 BMS_PF5_OnCHG500: 8 Vector__XXX + +BO_ 2484601860 BMS_PF5_OnCHG400: 8 Vector__XXX + +BO_ 2484601604 BMS_PF5_OnCHG300: 8 Vector__XXX + +BO_ 2484601348 BMS_PF5_OnCHG200: 8 Vector__XXX + +BO_ 2484602884 BMS_PF5_OnBUS_S: 8 Vector__XXX + +BO_ 2484602628 BMS_PF5_OnBUS_M: 8 Vector__XXX + +BO_ 2484602371 BMS_PF4_OnCHG600: 8 Vector__XXX + +BO_ 2484602115 BMS_PF4_OnCHG500: 8 Vector__XXX + +BO_ 2484601859 BMS_PF4_OnCHG400: 8 Vector__XXX + +BO_ 2484601603 BMS_PF4_OnCHG300: 8 Vector__XXX + +BO_ 2484601347 BMS_PF4_OnCHG200: 8 Vector__XXX + +BO_ 2484602883 BMS_PF4_OnBUS_S: 8 Vector__XXX + +BO_ 2484602627 BMS_PF4_OnBUS_M: 8 Vector__XXX + +BO_ 2484602370 BMS_PF3_OnCHG600: 8 Vector__XXX + +BO_ 2484602114 BMS_PF3_OnCHG500: 8 Vector__XXX + +BO_ 2484601858 BMS_PF3_OnCHG400: 8 Vector__XXX + +BO_ 2484601602 BMS_PF3_OnCHG300: 8 Vector__XXX + +BO_ 2484601346 BMS_PF3_OnCHG200: 8 Vector__XXX + +BO_ 2484602882 BMS_PF3_OnBUS_S: 8 Vector__XXX + +BO_ 2484602626 BMS_PF3_OnBUS_M: 8 Vector__XXX + +BO_ 2484602369 BMS_PF2_OnCHG600: 8 Vector__XXX + +BO_ 2484602113 BMS_PF2_OnCHG500: 8 Vector__XXX + +BO_ 2484601857 BMS_PF2_OnCHG400: 8 Vector__XXX + +BO_ 2484601601 BMS_PF2_OnCHG300: 8 Vector__XXX + +BO_ 2484601345 BMS_PF2_OnCHG200: 8 Vector__XXX + +BO_ 2484602881 BMS_PF2_OnBUS_S: 8 Vector__XXX + +BO_ 2484602625 BMS_PF2_OnBUS_M: 8 Vector__XXX + +BO_ 2484602880 BMS_PF1_OnBUS_S: 8 Vector__XXX + +BO_ 2484602624 BMS_PF1_OnBUS_M: 8 Vector__XXX + +BO_ 2484602368 BMS_PF1_OnCHG600: 8 Vector__XXX + +BO_ 2484602112 BMS_PF1_OnCHG500: 8 Vector__XXX + +BO_ 2484601856 BMS_PF1_OnCHG400: 8 Vector__XXX + +BO_ 2484601600 BMS_PF1_OnCHG300: 8 Vector__XXX + +BO_ 2484601344 BMS_PF1_OnCHG200: 8 Vector__XXX + +BO_ 2566127671 RDCU1toEVCU: 6 Vector__XXX + SG_ RD_stClose_RH : 47|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stClose_LH : 46|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stOpen_RH : 45|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stOpen_LH : 44|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_CloseSol : 41|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_OpenSol : 40|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stAirCyl_Down : 34|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stAirCyl_UP : 33|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_AirCyl_Ctrl : 32|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_CloseSol : 27|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_OpenSol : 26|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_AirCyl : 25|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Comm : 24|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_CloseLatch : 23|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_OpenLatch : 22|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Motor_OT : 21|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Motor_OC : 20|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Stall : 19|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_CableOpen : 18|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Clutch : 17|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDErr_Motor : 16|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDS_stCloseLatch : 14|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_MotorCtrl : 12|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_MotorClutch : 11|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_LatchCtrl : 10|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stCloseLatch : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_stOpenLatch : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagRD : 6|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ RDS_State : 5|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_State : 2|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_CMD_Fb : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603201 CHG2toBMS: 8 Vector__XXX + SG_ Chg_ChargePower : 40|16@1+ (10,0) [0|0] "Wh" Vector__XXX + SG_ Chg_OutputVolt : 24|16@1+ (0.1,0) [0|0] "V" Vector__XXX + SG_ Chg_OutputCurr : 8|16@1+ (0.1,0) [0|0] "A" Vector__XXX + SG_ Chg_Pilot : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Chg_Finish : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Chg_Charging : 1|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Chg_Ready : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484603200 CHG1toBMS: 8 Vector__XXX + SG_ Dc_Chg_MaxCurr : 48|16@1+ (0.1,0) [0|0] "A" Vector__XXX + SG_ Dc_Chg_MaxVolt : 32|16@1+ (0.1,0) [0|0] "V" Vector__XXX + SG_ Dc_Chg_Time : 16|16@1+ (10,0) [0|0] "sec" Vector__XXX + SG_ Dc_Chg_FaultCode : 8|8@1+ (1,0) [0|0] "" Vector__XXX + SG_ Dc_Chg_PowEnStat : 7|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Dc_Chg_Finish : 6|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Dc_Chg_Mode : 3|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ Dc_Chg_Fault : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Dc_Chg_Ready : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602448 CHG7toBMS: 8 Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2484602192 CHG6toBMS: 8 Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2484601936 CHG5toBMS: 8 Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2484601680 CHG4toBMS: 8 Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2484601424 CHG3toBMS: 8 Vector__XXX + SG_ BatteryBduCtrl : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToChargeSOC : 0|8@1+ (1,0) [0|0] "%" Vector__XXX + +BO_ 2566062161 BTM1toEVCU: 8 Vector__XXX + SG_ QCMErr_Comm : 50|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QCMErr_Internal : 49|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QCMErr_Bellows : 48|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BTMErr_Internal : 40|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BellowsState : 8|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ BAT_SEL_Change : 4|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ QCM_SEQ : 0|4@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2565996609 QTP1toEVCU: 8 Vector__XXX + SG_ QTPErr_BL_DRV : 58|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_CON_DRV : 57|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RCLP_SEN : 56|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_LCLP_SEN : 55|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RCLP_Open : 54|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_LCLP_Open : 53|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RCLP_Close : 52|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_LCLP_Close : 51|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RCLP_Driver : 50|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_LCLP_Driver : 49|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_CON_Open : 48|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_CON_Close : 47|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_CON_SEN : 46|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_BL_Open : 45|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_BL_Close : 44|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RD_Open : 43|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RD_Close : 42|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_RD_SEN : 41|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTPErr_AirBlower : 40|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BATClampState : 35|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ BATConnectorState : 32|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ AirBlowerState : 27|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ RoofDoorState : 24|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTP_SEQ : 16|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ BATBlower_Fb : 8|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTP_CMD_Fb : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566889246 BMU1toDICO: 8 Vector__XXX + SG_ MC_Fb_BAT : 56|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ I_BAT : 48|8@1+ (4,-500) [0|0] "A" Vector__XXX + SG_ V_BAT : 40|8@1+ (3.2,0) [0|0] "V" Vector__XXX + SG_ SOC : 32|8@1+ (0.4,0) [0|0] "%" Vector__XXX + SG_ I_BAT_DCHGMax : 24|8@1+ (2,0) [0|0] "A" Vector__XXX + SG_ I_BAT_CHGMax : 16|8@1+ (2,0) [0|0] "A" Vector__XXX + SG_ V_BAT_Min : 8|8@1+ (3.2,0) [0|0] "V" Vector__XXX + SG_ V_BAT_Max : 0|8@1+ (3.2,0) [0|0] "V" Vector__XXX + +BO_ 2566885635 DICO6toEVCU: 8 Vector__XXX + SG_ T_BrakeResistor : 16|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + +BO_ 2566885379 DICO5toEVCU: 8 Vector__XXX + SG_ T_MOT_A1 : 56|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ T_INV_A1 : 48|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ T_MOT2 : 24|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ T_INV_M2 : 16|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ T_MOT1 : 8|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ T_INV_M1 : 0|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + +BO_ 2566884355 DICO4toEVCU: 8 Vector__XXX + SG_ Pw_ES_Fb : 48|16@1+ (0.0159,-510) [0|0] "kW" Vector__XXX + SG_ Pw_ES_Rf : 32|16@1+ (0.0159,-510) [0|0] "kW" Vector__XXX + SG_ Pw_IBC_Fb : 16|16@1+ (0.0159,-510) [0|0] "kW" Vector__XXX + SG_ Pw_IBC_Rf : 0|16@1+ (0.0159,-510) [0|0] "kW" Vector__XXX + +BO_ 2566884867 DICO3toEVCU: 8 Vector__XXX + SG_ N_AUX : 40|8@1+ (20,0) [0|0] "rpm" Vector__XXX + SG_ Pw_AUX : 24|8@1+ (0.2,0) [0|0] "kW" Vector__XXX + SG_ I_IBC : 16|8@1+ (4,-500) [0|0] "A" Vector__XXX + SG_ V_IBC : 8|8@1+ (3.2,0) [0|0] "V" Vector__XXX + SG_ T_DrvSys : 0|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + +BO_ 2566884611 DICO2toEVCU: 8 Vector__XXX + SG_ diagDICO : 26|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagAUX1 : 22|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagMOT1 : 6|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagMOT2 : 4|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566885123 DICO1toEVCUBMS: 8 Vector__XXX + SG_ bErrBuf_On : 11|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ErrBuf_Num : 56|4@1+ (1,0) [0|0] "" Vector__XXX + SG_ Pw_BrkResistor_Fb : 48|8@1+ (0.5,0) [0|0] "kW" Vector__XXX + SG_ Tq_SYS : 40|8@1+ (1,-125) [0|0] "%" Vector__XXX + SG_ Tq_SYS_Rf : 32|8@1+ (1,-125) [0|0] "%" Vector__XXX + SG_ N_SYS : 16|16@1+ (0.467,-1500) [0|0] "rpm" Vector__XXX + SG_ bMC_Rq : 15|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bPC_Rq : 14|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bFan_Rq : 13|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bPerfRedSys : 10|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bWarningSys : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bErrorSys : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bMotorDir : 7|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DNR_DICO : 4|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ bPrechargeAct : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bKeyStart : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bInitAct : 1|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ bDriveSysAct : 0|1@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566127655 EVCU15toRDCU: 1 Vector__XXX + SG_ RD_FClear : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ RD_CMD : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566062119 EVCU14toBTM: 8 Vector__XXX + SG_ DTC_HCode : 48|16@1+ (1,0) [0|0] "" Vector__XXX + SG_ ErrorNum : 40|8@1+ (1,0) [0|0] "" Vector__XXX + SG_ CHG_Rq : 24|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ BusState : 8|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ QCM_SEQ_Fb : 0|4@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2565996583 EVCU13toQTP: 3 Vector__XXX + SG_ QTP_SEQ_Fb : 16|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ BATBlower : 8|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ QTP_CMD : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602919 EVCU12toBMS_S: 3 Vector__XXX + SG_ BDU_S_Fb : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_S : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ PRA_CHG_BMS_S : 4|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ MC_DRV_BMS_S : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ PC_DRV_BMS_S : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ EV_ON_BMS_S : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2484602663 EVCU11toBMS_M: 3 Vector__XXX + SG_ BDU_M_Fb : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ BDU_M : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ MC_DRV_BMS_M : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ PC_DRV_BMS_M : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ EV_ON_BMS_M : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2566864423 EVCU5toAll: 8 Vector__XXX + SG_ T_AirComp : 40|8@1+ (1,-40) [0|0] "¡É" Vector__XXX + SG_ VB : 56|8@1+ (0.125,0) [0|0] "V" Vector__XXX + SG_ Retarder_Level : 32|8@1+ (1,0) [0|0] "" Vector__XXX + SG_ BPS : 24|8@1+ (0.4,0) [0|0] "%" Vector__XXX + SG_ APS : 16|8@1+ (0.4,0) [0|0] "%" Vector__XXX + SG_ PAir : 8|8@1+ (0.05,0) [0|0] "bar" Vector__XXX + SG_ VS : 0|8@1+ (1,0) [0|0] "km/h" Vector__XXX + +BO_ 2566864679 EVCU4toAll: 8 Vector__XXX + SG_ ERR_GF : 63|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_RDCU : 62|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BTM : 61|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_QTP : 60|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BMS_S : 59|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_BMS_M : 58|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_DrvSys : 57|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ ERR_EVCU : 56|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_RDCU : 55|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_ABS : 54|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BTM : 53|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_QTP : 52|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BMS_S : 51|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_BMS_M : 50|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_DCAN : 49|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ CANErr_DICO : 48|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagDNR : 44|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagBPS : 42|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ diagAPS : 40|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_PRA_CHG : 39|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_PRA_N : 38|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_PRA_P : 37|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_PRA_Pre : 36|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_ALT : 35|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_Heater : 34|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_RLamp : 33|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_ACON : 32|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_WPump : 31|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_FAN_H : 30|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_FAN_L : 29|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_BMS : 28|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_DICO : 27|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_Main3 : 26|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_Main2 : 25|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DO_RLY_Main1 : 24|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_RD_Open : 22|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_BAT_SEL : 21|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_Door : 20|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_ACON : 19|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_Heater : 18|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_Retard_3 : 17|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_Retard_2 : 16|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_Retard_1 : 15|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_DNR_R : 14|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_DNR_N : 13|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_DNR_D : 12|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_PBrake : 11|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_ST : 10|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_CHG : 9|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DI_IG : 8|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_Rdy : 7|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_Start : 6|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_Bat_Sel : 4|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_Qtp_Rdy : 3|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_Bat_Rdy : 2|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ Sys_On : 0|2@1+ (1,0) [0|0] "" Vector__XXX + +BO_ 2365537831 EVCU2toDICO: 8 Vector__XXX + SG_ Pw_brkResistor_Rf : 32|8@1+ (0.5,0) [0|0] "kW" Vector__XXX + +BO_ 2365538087 EVCU1toDICO: 8 Vector__XXX + SG_ Retarder : 54|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ Aux1_Control : 52|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ ToggleBit : 48|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ KeyStart_Rq : 47|1@1+ (1,0) [0|0] "" Vector__XXX + SG_ DNR_EVCU : 42|3@1+ (1,0) [0|0] "" Vector__XXX + SG_ SW_StopBrake : 40|2@1+ (1,0) [0|3] "" Vector__XXX + SG_ Tq_Brake_Rq : 16|8@1+ (1,-125) [0|0] "%" Vector__XXX + SG_ AP_Position : 8|8@1+ (0.4,0) [0|0] "%" Vector__XXX + SG_ SW_Brake : 6|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ SW_PBrake : 4|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ SW_Kickdown : 2|2@1+ (1,0) [0|0] "" Vector__XXX + SG_ SW_AP_Lowldle : 0|2@1+ (1,0) [0|0] "" Vector__XXX + + + +CM_ BO_ 3221225472 "This is a message for not used signals, created by Vector CANdb++ DBC OLE DB Provider."; +CM_ SG_ 3221225472 BatS_Cell_PackNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 3221225472 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 3221225472 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 3221225472 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 3221225472 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 3221225472 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 3221225472 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 3221225472 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 3221225472 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ BO_ 2484602208 "EVCU_CMD"; +CM_ SG_ 2484602208 CELL_Bal_Drive "Cell Balencing On/Off"; +CM_ SG_ 2484602208 BatS_CellV_Bal_Target "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484602208 EV_ON_CTRL_SOURCE "EV System ON Mode for BMS_M"; +CM_ SG_ 2484602208 BDU_M "Main-Battery BDU Control"; +CM_ BO_ 2484601952 "EVCU_CMD"; +CM_ SG_ 2484601952 CELL_Bal_Drive "Cell Balencing On/Off"; +CM_ SG_ 2484601952 BatS_CellV_Bal_Target "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601952 EV_ON_CTRL_SOURCE "EV System ON Mode for BMS_M"; +CM_ SG_ 2484601952 BDU_M "Main-Battery BDU Control"; +CM_ BO_ 2484601696 "EVCU_CMD"; +CM_ SG_ 2484601696 CELL_Bal_Drive "Cell Balencing On/Off"; +CM_ SG_ 2484601696 BatS_CellV_Bal_Target "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601696 EV_ON_CTRL_SOURCE "EV System ON Mode for BMS_M"; +CM_ SG_ 2484601696 BDU_M "Main-Battery BDU Control"; +CM_ BO_ 2484601440 "EVCU_CMD"; +CM_ SG_ 2484601440 CELL_Bal_Drive "Cell Balencing On/Off"; +CM_ SG_ 2484601440 BatS_CellV_Bal_Target "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601440 EV_ON_CTRL_SOURCE "EV System ON Mode for BMS_M"; +CM_ SG_ 2484601440 BDU_M "Main-Battery BDU Control"; +CM_ BO_ 2484603216 "CHARGER_CMD"; +CM_ SG_ 2484603216 Pack_Bal_Drive "Pack Balencing Mode "; +CM_ SG_ 2484603216 Pack4_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603216 Pack3_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603216 Pack2_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603216 Pack1_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603216 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484603216 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ BO_ 2484603175 "EVCU_CMD"; +CM_ SG_ 2484603175 Pack4_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603175 Pack3_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603175 Pack2_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603175 Pack1_Force_On "Pack Force Dirve"; +CM_ SG_ 2484603175 Pack_Bal_Drive "Pack Balencing Mode "; +CM_ SG_ 2484603175 BDU_M_Fb "Main-Battery BDU Feedback"; +CM_ SG_ 2484603175 BDU_M "Main-Battery BDU Control"; +CM_ SG_ 2484603175 MC_DRV_BMS_M "DRV Main Contactor State"; +CM_ SG_ 2484603175 PC_DRV_BMS_M "DRV Pre-Charge Contactor State"; +CM_ SG_ 2484603175 EV_ON_BMS_M "EV System ON Mode for BMS_M"; +CM_ BO_ 2484603152 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484603152 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484603152 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484603152 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484603152 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484603152 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484603152 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484603152 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484603152 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484603152 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484603152 Warn_SOC "SOC Warning"; +CM_ SG_ 2484603152 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484603152 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484603152 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484603152 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484603152 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484603152 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484603142 "BMS_Profile : S/W Version"; +CM_ BO_ 2484603141 "BMS Profile : Company #2"; +CM_ BO_ 2484603140 "BMS Profile : Company #1"; +CM_ BO_ 2484603139 "BMS Profile : Model Info #2"; +CM_ BO_ 2484603138 "BMS Profile : Model Info #1"; +CM_ BO_ 2484603137 "BMS Profile : SerialNumber"; +CM_ BO_ 2484603136 "BMS Profile : ID"; +CM_ BO_ 2484603153 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484603153 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484603153 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484603153 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484603153 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484603148 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484603148 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603148 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484603148 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484603148 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484603148 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484603148 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484603147 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484603147 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603147 BatS_SlaveCellBal3_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlaveCellBal2_T "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlaveCellBal1_T "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlavePWR_T "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlaveMCU_T "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlaveCell2_T "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484603147 BatS_SlaveCell1_T "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484603146 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484603146 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603146 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484603146 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484603146 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484603146 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484603146 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484603146 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484603145 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484603145 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603145 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484603145 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484603145 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484603145 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484603145 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484603145 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484603144 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484603144 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603144 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484603144 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484603144 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484603144 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484603144 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484603144 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484603143 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484603143 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484603143 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484603143 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484603143 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484603143 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484603143 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484603143 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484603168 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484603168 BatS_Pack4LinkFail "Pack1 Link state"; +CM_ SG_ 2484603168 BatS_Pack3LinkFail "Pack1 Link state"; +CM_ SG_ 2484603168 BatS_Pack2LinkFail "Pack1 Link state"; +CM_ SG_ 2484603168 BatS_Pack1LinkFail "Pack1 Link state"; +CM_ SG_ 2484603168 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484603168 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484603168 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484603168 BatS_MasterState "Master State"; +CM_ SG_ 2484603168 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484603163 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484603163 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484603163 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484603163 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484603163 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484603163 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484603163 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484603162 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484603162 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484603162 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484603162 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484603162 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484603161 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484603161 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484603161 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484603161 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484603160 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484603160 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484603160 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484603160 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484603160 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484603160 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484603159 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484603159 BatS_tCellMax_PackNo "Pack Number of T_Cell_Max"; +CM_ SG_ 2484603159 BatS_tCellMin_PackNo "Pack Number of T_Cell_Min"; +CM_ SG_ 2484603159 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484603159 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484603159 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484603159 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484603159 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484603159 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484603158 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484603158 BatS_vCellMax_PackNo "Pack Number of V_Cell_Max"; +CM_ SG_ 2484603158 BatS_vCellMin_PackNo "Pack Number of V_Cell_Min"; +CM_ SG_ 2484603158 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484603158 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484603158 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484603158 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484603158 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484603158 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484603157 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484603157 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484603157 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484603157 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484603157 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484603157 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484603157 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484603157 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484603157 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484603157 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484603157 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484603157 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484603157 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484603157 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484603157 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484603157 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484603157 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484603157 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484603157 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484603157 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484603157 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484603156 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484603156 Pack4_Low_V_Flag "Áغñ"; +CM_ SG_ 2484603156 Pack3_Low_V_Flag "Áغñ"; +CM_ SG_ 2484603156 Pack2_Low_V_Flag "Áغñ"; +CM_ SG_ 2484603156 Pack1_Low_V_Flag "Áغñ"; +CM_ SG_ 2484603156 Pack4_Ready "Áغñ"; +CM_ SG_ 2484603156 Pack3_Ready "Áغñ"; +CM_ SG_ 2484603156 Pack2_Ready "Áغñ"; +CM_ SG_ 2484603156 Pack1_Ready "Áغñ"; +CM_ SG_ 2484603156 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484603156 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484603156 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484603156 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484603156 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484603156 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484603156 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484603156 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484603156 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484603156 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484603156 BatS_Ready "Áغñ"; +CM_ BO_ 2484603155 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484603155 RC "Remain Capacity"; +CM_ SG_ 2484603155 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484603155 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484603155 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484603154 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484603154 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484603154 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484603154 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484603154 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484601383 "EVCU_CMD"; +CM_ SG_ 2484601383 BDU_M_Fb "Main-Battery BDU Feedback"; +CM_ SG_ 2484601383 BDU_M "Main-Battery BDU Control"; +CM_ SG_ 2484601383 MC_DRV_BMS_M "DRV Main Contactor State"; +CM_ SG_ 2484601383 PC_DRV_BMS_M "DRV Pre-Charge Contactor State"; +CM_ SG_ 2484601383 EV_ON_BMS_M "EV System ON Mode for BMS_M"; +CM_ SG_ 2566864167 CANErr_QPTS "QPTS CAN Error"; +CM_ SG_ 2566864167 ERR_QPTS "QPTS Error"; +CM_ SG_ 2566864167 ERR_GF "Ground Fault Error"; +CM_ SG_ 2566864167 ERR_RDCU "RDCU Error"; +CM_ SG_ 2566864167 ERR_BTM "BTM Error"; +CM_ SG_ 2566864167 ERR_QTP "QTP Error"; +CM_ SG_ 2566864167 ERR_BMS_S "BMS_S Error"; +CM_ SG_ 2566864167 ERR_BMS_M "BMS_M Error"; +CM_ SG_ 2566864167 ERR_DrvSys "Drive System Error"; +CM_ SG_ 2566864167 ERR_EVCU "EVCU Error"; +CM_ SG_ 2566864167 CANErr_RDCU "RDCU CAN Error"; +CM_ SG_ 2566864167 CANErr_ABS "ABS CAN Error"; +CM_ SG_ 2566864167 CANErr_BTM "BTM CAN Error"; +CM_ SG_ 2566864167 CANErr_QTP "QTP CAN Error"; +CM_ SG_ 2566864167 CANErr_BMS_S "BMS_S CAN Error"; +CM_ SG_ 2566864167 CANErr_BMS_M "BMS_M CAN Error"; +CM_ SG_ 2566864167 CANErr_DCAN "DCAN Error"; +CM_ SG_ 2566864167 CANErr_DICO "DICO CAN Error"; +CM_ SG_ 2566864167 diagDNR "DNR Error"; +CM_ SG_ 2566864167 diagBPS "BPS Error"; +CM_ SG_ 2566864167 diagAPS "APS Error"; +CM_ BO_ 2484602892 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484602892 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602892 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484602892 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484602892 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484602892 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484602892 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484602636 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484602636 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602636 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484602636 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484602636 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484602636 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484602636 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484602380 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484602380 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602380 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484602380 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484602380 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484602380 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484602380 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484602124 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484602124 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602124 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484602124 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484602124 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484602124 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484602124 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484601868 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484601868 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601868 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484601868 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484601868 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484601868 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484601868 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484601612 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484601612 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601612 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484601612 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484601612 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484601612 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484601612 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484601356 "Slave BMS ÃøÁ¤¿Âµµ/Æß¿þ¾î ¹öÀü"; +CM_ SG_ 2484601356 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601356 BatS_Slave_Fault "Slave BMSÀÇ Fault »óÅÂ"; +CM_ SG_ 2484601356 BatS_Slave_RevisionVer "Slave BMSÀÇ Revision Version"; +CM_ SG_ 2484601356 BatS_Slave_MinorVer "Slave BMSÀÇ Minor Version"; +CM_ SG_ 2484601356 BatS_Slave_MajorVer "Slave BMSÀÇ Major Version"; +CM_ SG_ 2484601356 BatS_SlaveAir_T "Slave BMSÀÇ Air ¿Âµµ"; +CM_ BO_ 2484602891 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602891 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602891 BatS_SlaveCellBal3_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlaveCellBal2_T "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlaveCellBal1_T "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlavePWR_T "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlaveMCU_T "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlaveCell2_T "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484602891 BatS_SlaveCell1_T "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484602635 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602635 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602635 BatS_SlaveCellBal3_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlaveCellBal2_T "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlaveCellBal1_T "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlavePWR_T "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlaveMCU_T "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlaveCell2_T "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484602635 BatS_SlaveCell1_T "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484602379 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602379 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602379 BatS_SlaveRVS_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T6 "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T5 "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T4 "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T3 "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T2 "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484602379 BatS_SlaveCell_T1 "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484602123 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602123 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602123 BatS_SlaveRVS_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T6 "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T5 "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T4 "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T3 "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T2 "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484602123 BatS_SlaveCell_T1 "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484601867 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601867 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601867 BatS_SlaveRVS_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T6 "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T5 "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T4 "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T3 "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T2 "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484601867 BatS_SlaveCell_T1 "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484601611 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601611 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601611 BatS_SlaveRVS_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T6 "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T5 "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T4 "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T3 "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T2 "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484601611 BatS_SlaveCell_T1 "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484601355 "Slave BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601355 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601355 BatS_SlaveRVS_T "Slave BMSÀÇ Cell Balance#3 ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T6 "Slave BMSÀÇ Cell Balance#2 ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T5 "Slave BMSÀÇ Cell Balance#1 ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T4 "Slave BMSÀÇ Power ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T3 "Slave BMSÀÇ MCU ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T2 "2¹ø ¼¿ ¿Âµµ"; +CM_ SG_ 2484601355 BatS_SlaveCell_T1 "1¹ø ¼¿ ¿Âµµ"; +CM_ BO_ 2484602890 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484602890 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602890 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484602890 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484602890 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484602890 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484602890 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484602890 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484602634 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484602634 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602634 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484602634 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484602634 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484602634 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484602634 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484602634 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484602378 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484602378 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602378 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484602378 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484602378 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484602378 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484602378 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484602378 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484602122 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484602122 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602122 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484602122 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484602122 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484602122 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484602122 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484602122 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484601866 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484601866 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601866 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484601866 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484601866 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484601866 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484601866 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484601866 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484601610 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484601610 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601610 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484601610 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484601610 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484601610 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484601610 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484601610 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484602889 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484602889 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602889 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484602889 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484602889 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484602889 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484602889 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484602889 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484602633 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484602633 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602633 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484602633 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484602633 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484602633 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484602633 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484602633 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484602377 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484602377 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602377 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484602377 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484602377 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484602377 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484602377 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484602377 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484602121 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484602121 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602121 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484602121 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484602121 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484602121 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484602121 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484602121 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484601865 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484601865 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601865 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484601865 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484601865 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484601865 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484601865 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484601865 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484601609 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484601609 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601609 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484601609 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484601609 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484601609 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484601609 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484601609 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484602888 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484602888 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602888 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484602888 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484602888 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484602888 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484602888 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484602888 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484602632 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484602632 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602632 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484602632 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484602632 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484602632 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484602632 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484602632 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484602376 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484602376 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602376 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484602376 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484602376 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484602376 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484602376 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484602376 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484602120 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484602120 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602120 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484602120 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484602120 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484602120 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484602120 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484602120 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484601864 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484601864 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601864 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484601864 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484601864 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484601864 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484601864 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484601864 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484601608 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484601608 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601608 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484601608 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484601608 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484601608 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484601608 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484601608 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484602887 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484602887 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602887 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484602887 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484602887 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484602887 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484602887 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484602887 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484602631 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484602631 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602631 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484602631 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484602631 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484602631 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484602631 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484602631 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484602375 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484602375 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602375 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484602375 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484602375 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484602375 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484602375 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484602375 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484602119 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484602119 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484602119 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484602119 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484602119 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484602119 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484602119 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484602119 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484601863 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484601863 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601863 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484601863 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484601863 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484601863 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484601863 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484601863 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484601607 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484601607 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601607 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484601607 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484601607 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484601607 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484601607 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484601607 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484601354 "Slave BMS Cell#9,10,11 Á¤º¸"; +CM_ SG_ 2484601354 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601354 BatS_Cell11_BalState "Cell #11 Balancing State"; +CM_ SG_ 2484601354 BatS_Cell10_BalState "Cell #10 Balancing State"; +CM_ SG_ 2484601354 BatS_Cell9_BalState "Cell #9 Balancing State"; +CM_ SG_ 2484601354 BatS_Cell11_V "Cell #11 Voltage"; +CM_ SG_ 2484601354 BatS_Cell10_V "Cell #10 Voltage"; +CM_ SG_ 2484601354 BatS_Cell9_V "Cell #9 Voltage"; +CM_ BO_ 2484601353 "Slave BMS Cell#6,7,8 Á¤º¸"; +CM_ SG_ 2484601353 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601353 BatS_Cell8_BalState "Cell #8 Balancing State"; +CM_ SG_ 2484601353 BatS_Cell7_BalState "Cell #7 Balancing State"; +CM_ SG_ 2484601353 BatS_Cell6_BalState "Cell #6 Balancing State"; +CM_ SG_ 2484601353 BatS_Cell8_V "Cell #8 Voltage"; +CM_ SG_ 2484601353 BatS_Cell7_V "Cell #7 Voltage"; +CM_ SG_ 2484601353 BatS_Cell6_V "Cell #6 Voltage"; +CM_ BO_ 2484601352 "Slave BMS Cell#3,4,5 Á¤º¸"; +CM_ SG_ 2484601352 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601352 BatS_Cell5_BalState "Cell #5 Balancing State"; +CM_ SG_ 2484601352 BatS_Cell4_BalState "Cell #4 Balancing State"; +CM_ SG_ 2484601352 BatS_Cell3_BalState "Cell #3 Balancing State"; +CM_ SG_ 2484601352 BatS_Cell5_V "Cell #5 Voltage"; +CM_ SG_ 2484601352 BatS_Cell4_V "Cell #4 Voltage"; +CM_ SG_ 2484601352 BatS_Cell3_V "Cell #3 Voltage"; +CM_ BO_ 2484601351 "Slave BMS Cell#0,1,2 Á¤º¸"; +CM_ SG_ 2484601351 BatS_Cell_ModuleNo "ÇØ´ç CellÀÇ Module¹øÈ£"; +CM_ SG_ 2484601351 BatS_Cell2_BalState "Cell #2 Balancing State"; +CM_ SG_ 2484601351 BatS_Cell1_BalState "Cell #1 Balancing State"; +CM_ SG_ 2484601351 BatS_Cell0_BalState "Cell #0 Balancing State"; +CM_ SG_ 2484601351 BatS_Cell2_V "Cell #2 Voltage"; +CM_ SG_ 2484601351 BatS_Cell1_V "Cell #1 Voltage"; +CM_ SG_ 2484601351 BatS_Cell0_V "Cell #0 Voltage"; +CM_ BO_ 2484602912 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484602912 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484602912 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484602912 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602912 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602912 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484602912 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484602912 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484602912 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484602912 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484602912 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484602912 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484602912 BatS_MasterState "Master State"; +CM_ SG_ 2484602912 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484602656 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484602656 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484602656 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484602656 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602656 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602656 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484602656 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484602656 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484602656 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484602656 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484602656 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484602656 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484602656 BatS_MasterState "Master State"; +CM_ SG_ 2484602656 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484602400 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484602400 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484602400 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484602400 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602400 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602400 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484602400 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484602400 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484602400 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484602400 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484602400 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484602400 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484602400 BatS_MasterState "Master State"; +CM_ SG_ 2484602400 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484602144 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484602144 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484602144 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484602144 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602144 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484602144 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484602144 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484602144 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484602144 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484602144 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484602144 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484602144 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484602144 BatS_MasterState "Master State"; +CM_ SG_ 2484602144 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484601888 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484601888 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484601888 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601888 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601888 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601888 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484601888 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484601888 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484601888 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484601888 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484601888 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484601888 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484601888 BatS_MasterState "Master State"; +CM_ SG_ 2484601888 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484601632 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484601632 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484601632 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601632 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601632 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601632 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484601632 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484601632 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484601632 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484601632 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484601632 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484601632 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484601632 BatS_MasterState "Master State"; +CM_ SG_ 2484601632 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484601376 "Master I/State/CycleCount/TotalCellV"; +CM_ SG_ 2484601376 BatS_SOH_CycleCount "CycleCount of SOH"; +CM_ SG_ 2484601376 BatS_Sum_tCellV "¹èÅ͸®ÆÑÀÇ ¸ðµç Cell Àü¾Ð Çջ갪"; +CM_ SG_ 2484601376 BatS_FanState_2 "ÆÒ#2 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601376 BatS_FanState_1 "ÆÒ#1 Á¦¾î »óÅÂ"; +CM_ SG_ 2484601376 BatS_RelayState_PreCharge "¹èÅ͸®ÆÑ Pre-Charge Relay »óÅÂ"; +CM_ SG_ 2484601376 BatS_RelayState_sP2_Main "Sub-Pack#2 Main Relay »óÅÂ"; +CM_ SG_ 2484601376 BatS_RelayState_sP1_Main "Sub-Pack#1 Main Relay »óÅÂ"; +CM_ SG_ 2484601376 BatS_RelayState_Bottom "¹èÅ͸®ÆÑ Bottom Relay »óÅÂ"; +CM_ SG_ 2484601376 BatS_MasterOCVState "OCV »óÅÂ"; +CM_ SG_ 2484601376 BatS_MasterChargeMode "ÃæÀü¸ðµå"; +CM_ SG_ 2484601376 BatS_MasterRunState "Master Run »óÅÂ"; +CM_ SG_ 2484601376 BatS_MasterState "Master State"; +CM_ SG_ 2484601376 BatS_Pack_I "¹èÅ͸®ÆÑ Àü·ù(¾ç¼ö:ÃæÀü, À½¼ö:¹æÀü)"; +CM_ BO_ 2484602907 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602907 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484602907 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484602907 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484602907 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484602907 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484602907 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484602651 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602651 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484602651 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484602651 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484602651 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484602651 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484602651 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484602395 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602395 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484602395 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484602395 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484602395 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484602395 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484602395 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484602139 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484602139 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484602139 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484602139 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484602139 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484602139 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484602139 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484601883 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601883 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484601883 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484601883 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484601883 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484601883 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484601883 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484601627 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601627 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484601627 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484601627 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484601627 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484601627 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484601627 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484601371 "Master BMS ÃøÁ¤ ¿Âµµ"; +CM_ SG_ 2484601371 BatS_MasterAuxV "Master BMSÀÇ Aux Àü¾Ð"; +CM_ SG_ 2484601371 BatS_MasterAir3_T "Master BMSÀÇ °ø±â ¿Âµµ #3"; +CM_ SG_ 2484601371 BatS_MasterAir2_T "Master BMSÀÇ °ø±â ¿Âµµ #2"; +CM_ SG_ 2484601371 BatS_MasterAir1_T "Master BMSÀÇ °ø±â ¿Âµµ #1"; +CM_ SG_ 2484601371 BatS_MasterPWR_T "Master BMSÀÇ PowerºÎ ¿Âµµ"; +CM_ SG_ 2484601371 BatS_MasterMCU_T "Master BMSÀÇ MCUºÎ ¿Âµµ"; +CM_ BO_ 2484602906 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484602906 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484602906 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484602906 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484602906 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484602650 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484602650 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484602650 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484602650 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484602650 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484602394 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484602394 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484602394 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484602394 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484602394 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484602138 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484602138 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484602138 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484602138 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484602138 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484601882 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484601882 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484601882 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484601882 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484601882 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484601626 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484601626 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484601626 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484601626 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484601626 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484601370 "¼­ºêÆÑ#1,#2 Àü¾Ð/Àü·ù"; +CM_ SG_ 2484601370 BatS_SubPack2_I "¼­ºêÆÑ#2 Àü·ù"; +CM_ SG_ 2484601370 BatS_SubPack1_I "¼­ºêÆÑ#1 Àü·ù"; +CM_ SG_ 2484601370 BatS_SubPack2_V "¼­ºêÆÑ#2 Àü¾Ð"; +CM_ SG_ 2484601370 BatS_SubPack1_V "¼­ºêÆÑ#1 Àü¾Ð"; +CM_ BO_ 2484602905 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484602905 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484602905 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602905 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484602649 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484602649 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484602649 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602649 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484602393 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484602393 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484602393 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602393 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484602137 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484602137 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484602137 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484602137 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484601881 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484601881 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484601881 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601881 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484601625 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484601625 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484601625 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601625 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484601369 "³»ºÎÅë½Å»óÅÂ/¼¿¹ë·±½ÌÀÓ°è°ª"; +CM_ SG_ 2484601369 BatS_CellBal_Stop "¼¿¹ë·±½Ì Á¾·á Àü¾Ð"; +CM_ SG_ 2484601369 BatS_CellBal_Start "¼¿¹ë·±½Ì ½ÃÀÛ Àü¾Ð"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S27 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S26 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S25 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S24 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S23 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S22 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S21 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S20 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S19 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S18 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S17 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S16 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S15 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S14 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S13 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S12 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S11 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S10 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S9 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S8 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S7 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S6 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S5 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S4 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S3 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S2 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S1 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ SG_ 2484601369 BatS_LocalCANErr_S0 "³»ºÎÅë½Å(Local CAN) »óÅ Flag"; +CM_ BO_ 2484602904 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484602904 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484602904 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484602904 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484602904 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484602904 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484602648 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484602648 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484602648 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484602648 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484602648 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484602648 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484602392 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484602392 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484602392 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484602392 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484602392 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484602392 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484602136 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484602136 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484602136 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484602136 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484602136 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484602136 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484601880 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484601880 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484601880 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484601880 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484601880 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484601880 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484601624 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484601624 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484601624 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484601624 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484601624 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484601624 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484601368 "¼¿³»ºÎÀúÇ×/¿ÜºÎ¿Âµµ/GF"; +CM_ SG_ 2484601368 BatS_GndFault_R "Ground Fault Resistor"; +CM_ SG_ 2484601368 BatS_AirMax_T "Battery External-Air Temperature Max"; +CM_ SG_ 2484601368 BatS_irCellMax_CellNo "Cell Number of IR_Cell_Max"; +CM_ SG_ 2484601368 BatS_irCellMax_ModuleNo "Module Number of IR_Cell_Max"; +CM_ SG_ 2484601368 BatS_CellMax_IR "Max Battery IR"; +CM_ BO_ 2484602903 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602903 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484602903 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484602903 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484602903 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484602903 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484602903 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484602647 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602647 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484602647 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484602647 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484602647 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484602647 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484602647 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484602391 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602391 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484602391 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484602391 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484602391 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484602391 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484602391 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484602135 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602135 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484602135 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484602135 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484602135 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484602135 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484602135 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484601879 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601879 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484601879 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484601879 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484601879 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484601879 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484601879 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484601623 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601623 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484601623 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484601623 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484601623 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484601623 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484601623 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484601367 "¼¿¿Âµµ ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601367 BatS_tCellMin_ModuleNo "Module Number of T_Cell_Min"; +CM_ SG_ 2484601367 BatS_tCellMin_CellNo "Cell Number of T_Cell_Min"; +CM_ SG_ 2484601367 BatS_CellMin_T "Min Cell Temperature"; +CM_ SG_ 2484601367 BatS_tCellMax_CellNo "Cell Number of T_Cell_Max"; +CM_ SG_ 2484601367 BatS_tCellMax_ModuleNo "Module Number of T_Cell_Max"; +CM_ SG_ 2484601367 BatS_CellMax_T "Max Cell Temperature"; +CM_ BO_ 2484602902 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602902 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484602902 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484602902 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484602902 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484602902 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484602902 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484602646 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602646 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484602646 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484602646 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484602646 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484602646 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484602646 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484602390 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602390 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484602390 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484602390 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484602390 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484602390 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484602390 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484602134 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484602134 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484602134 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484602134 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484602134 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484602134 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484602134 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484601878 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601878 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484601878 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484601878 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484601878 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484601878 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484601878 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484601622 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601622 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484601622 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484601622 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484601622 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484601622 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484601622 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484601366 "¼¿Àü¾Ð ÃÖ´ë/ÃÖ¼Ò°ª"; +CM_ SG_ 2484601366 BatS_vCellMin_CellNo "Cell Number of V_Cell_Min"; +CM_ SG_ 2484601366 BatS_vCellMin_ModuleNo "Module Number of V_Cell_Min"; +CM_ SG_ 2484601366 BatS_vCellMax_CellNo "Cell Number of V_Cell_Max"; +CM_ SG_ 2484601366 BatS_vCellMax_ModuleNo "Module Number of V_Cell_Max"; +CM_ SG_ 2484601366 BatS_CellMin_V "Min Cell Voltage"; +CM_ SG_ 2484601366 BatS_CellMax_V "Max Cell Voltage"; +CM_ BO_ 2484602901 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484602901 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484602901 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484602901 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602901 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484602901 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484602901 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602901 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484602901 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484602901 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484602901 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484602901 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484602901 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484602901 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484602901 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484602901 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484602901 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484602901 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484602901 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484602901 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484602901 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484602645 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484602645 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484602645 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484602645 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602645 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484602645 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484602645 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602645 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484602645 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484602645 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484602645 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484602645 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484602645 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484602645 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484602645 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484602645 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484602645 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484602645 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484602645 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484602645 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484602645 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484602389 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484602389 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484602389 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484602389 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602389 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484602389 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484602389 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602389 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484602389 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484602389 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484602389 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484602389 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484602389 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484602389 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484602389 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484602389 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484602389 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484602389 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484602389 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484602389 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484602389 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484602133 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484602133 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484602133 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484602133 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602133 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484602133 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484602133 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484602133 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484602133 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484602133 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484602133 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484602133 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484602133 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484602133 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484602133 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484602133 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484602133 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484602133 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484602133 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484602133 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484602133 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484601877 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484601877 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484601877 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484601877 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601877 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484601877 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484601877 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601877 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484601877 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484601877 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484601877 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484601877 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484601877 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484601877 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484601877 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484601877 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484601877 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484601877 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484601877 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484601877 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484601877 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484601621 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484601621 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484601621 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484601621 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601621 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484601621 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484601621 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601621 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484601621 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484601621 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484601621 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484601621 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484601621 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484601621 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484601621 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484601621 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484601621 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484601621 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484601621 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484601621 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484601621 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484601365 "¹èÅ͸® V/I/T/Alarm"; +CM_ SG_ 2484601365 BatS_Warn2_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484601365 BatS_Fault_UT "Under Temp Fault"; +CM_ SG_ 2484601365 BatS_Fault_UPC "Under Pack Current Fault"; +CM_ SG_ 2484601365 BatS_Fault_UV "Under Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601365 BatS_Fault_OT "Over Temp Fault"; +CM_ SG_ 2484601365 BatS_Fault_OPC "Over Pack Current Fault"; +CM_ SG_ 2484601365 BatS_Fault_OV "Over Voltage of Cell/Pack Fault"; +CM_ SG_ 2484601365 BatS_Fault_GF "Ground Fault Fault"; +CM_ SG_ 2484601365 BatS_Warn2_UT "Under Temp Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_UPC "Under Pack Current Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_UCV "Under Voltage of Cell Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_OT "Over Temp Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_OPC "Over Pack Current Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_OCV "Over Voltage of Cell Warning2"; +CM_ SG_ 2484601365 BatS_Warn2_GF "Ground Fault Warning2"; +CM_ SG_ 2484601365 BatS_Warn_OCES "Internal Comunication(CAN) Error Warning"; +CM_ SG_ 2484601365 BatS_Warn_GF "Ground Fault Warning"; +CM_ SG_ 2484601365 BatS_Warn_UPC "Under Pack Current Warning"; +CM_ SG_ 2484601365 BatS_Warn_OPC "Over Pack Current Warning"; +CM_ SG_ 2484601365 BatS_Warn_UT "Under Temp Warning"; +CM_ SG_ 2484601365 BatS_Warn_OT "Over Temp Warning"; +CM_ SG_ 2484601365 BatS_Warn_UCV "Under Voltage of Cell Warning"; +CM_ SG_ 2484601365 BatS_Warn_OCV "Over Voltage of Cell Warning"; +CM_ SG_ 2484601365 BatS_Pack_T "¹èÅ͸® ¸ðµâ Æò±Õ¿Âµµ"; +CM_ SG_ 2484601365 BatS_Pack_ABS_I "¹èÅ͸® Àü·ù(Àý´ë°ª)"; +CM_ SG_ 2484601365 BatS_Pack_V "¹èÅ͸® Àü¾Ð"; +CM_ BO_ 2484602900 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484602900 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484602900 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484602900 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484602900 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484602900 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484602900 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484602900 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484602900 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484602900 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484602900 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484602900 BatS_Ready "Áغñ"; +CM_ BO_ 2484602644 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484602644 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484602644 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484602644 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484602644 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484602644 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484602644 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484602644 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484602644 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484602644 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484602644 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484602644 BatS_Ready "Áغñ"; +CM_ BO_ 2484602388 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484602388 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484602388 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484602388 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484602388 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484602388 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484602388 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484602388 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484602388 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484602388 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484602388 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484602388 BatS_Ready "Áغñ"; +CM_ BO_ 2484602132 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484602132 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484602132 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484602132 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484602132 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484602132 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484602132 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484602132 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484602132 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484602132 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484602132 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484602132 BatS_Ready "Áغñ"; +CM_ BO_ 2484601876 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484601876 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484601876 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484601876 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484601876 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484601876 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484601876 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484601876 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484601876 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484601876 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484601876 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484601876 BatS_Ready "Áغñ"; +CM_ BO_ 2484601620 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484601620 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484601620 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484601620 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484601620 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484601620 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484601620 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484601620 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484601620 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484601620 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484601620 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484601620 BatS_Ready "Áغñ"; +CM_ BO_ 2484601364 "¹èÅ͸® State/SOC/SOH"; +CM_ SG_ 2484601364 BatS_Charger_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484601364 BatS_SOH "SOH of Battery"; +CM_ SG_ 2484601364 BatS_SOC "SOC of Battery"; +CM_ SG_ 2484601364 BatS_CV_Mode "CVÃæÀü¸ðµå"; +CM_ SG_ 2484601364 BatS_CC_Mode "CCÃæÀü¸ðµå"; +CM_ SG_ 2484601364 BatS_BDU_Relay_State "¹èÅ͸® Â÷´Ü ¸±·¹ÀÌ »óÅÂ(BDU)"; +CM_ SG_ 2484601364 BatS_Charge_Cutoff_Req "ÃæÀü Á¾·á ¿äû"; +CM_ SG_ 2484601364 BatS_Discharging "¹æÀüÁß"; +CM_ SG_ 2484601364 BatS_ChargeFull "¿ÏÀüÃæÀü"; +CM_ SG_ 2484601364 BatS_Trickle_Charging "¼¼·ùÃæÀü(Trickle Charge)Áß"; +CM_ SG_ 2484601364 BatS_Charging "ÃæÀüÁß"; +CM_ SG_ 2484601364 BatS_Ready "Áغñ"; +CM_ BO_ 2484602899 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484602899 RC "Remain Capacity"; +CM_ SG_ 2484602899 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484602899 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484602899 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484602643 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484602643 RC "Remain Capacity"; +CM_ SG_ 2484602643 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484602643 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484602643 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484602387 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484602387 RC "Remain Capacity"; +CM_ SG_ 2484602387 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484602387 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484602387 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484602131 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484602131 RC "Remain Capacity"; +CM_ SG_ 2484602131 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484602131 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484602131 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484601875 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484601875 RC "Remain Capacity"; +CM_ SG_ 2484601875 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484601875 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484601875 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484601619 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484601619 RC "Remain Capacity"; +CM_ SG_ 2484601619 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484601619 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484601619 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484601363 "ÃæÀü°ü·Ã Á¾Áö/¼³Á¤ Àü·ù"; +CM_ SG_ 2484601363 RC "Remain Capacity"; +CM_ SG_ 2484601363 V_CHG_Max_BAT "Max Charge voltage of Battery"; +CM_ SG_ 2484601363 I_CHG_CC_BAT "Charge current of Battery at CC-Mode"; +CM_ SG_ 2484601363 I_CHG_End_BAT "Charge end Current of Battery"; +CM_ BO_ 2484602898 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484602898 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484602898 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484602898 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484602898 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484602642 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484602642 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484602642 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484602642 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484602642 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484602386 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484602386 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484602386 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484602386 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484602386 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484602130 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484602130 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484602130 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484602130 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484602130 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484601874 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484601874 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484601874 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484601874 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484601874 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484601618 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484601618 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484601618 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484601618 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484601618 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484601362 "CCÀÓ°èÀü¾Ð/C-Rate"; +CM_ SG_ 2484601362 I_TCHG_BAT "¿¹ºñÃæÀüÀü·ù(Trickle Charge current of Battery)"; +CM_ SG_ 2484601362 I_DCHG_MaxCR_BAT "¹æÀüC-Rate(Max Discharge Current C-Rate)"; +CM_ SG_ 2484601362 I_CHG_MaxCR_BAT "ÃæÀüC-Rate(Max Charge Current C-Rate)"; +CM_ SG_ 2484601362 V_Lmt_TChg_BAT "CCÀÓ°èÀü¾Ð(Voltage Limit of Trickle Charge)"; +CM_ BO_ 2484602897 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484602897 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484602897 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484602897 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484602897 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484602641 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484602641 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484602641 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484602641 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484602641 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484602385 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484602385 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484602385 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484602385 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484602385 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484602129 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484602129 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484602129 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484602129 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484602129 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484601873 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484601873 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484601873 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484601873 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484601873 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484601617 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484601617 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484601617 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484601617 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484601617 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484601361 "Á¤°ÝÀü¾Ð/Àü·ù"; +CM_ SG_ 2484601361 V_Min_BAT "ÃÖ¼ÒÀü¾Ð(Min voltage of battery)"; +CM_ SG_ 2484601361 V_Max_BAT "ÃÖ´ëÀü¾Ð(Max voltage of battery)"; +CM_ SG_ 2484601361 I_Rated_BAT "Á¤°ÝÀü·ù(Rated current of battery)"; +CM_ SG_ 2484601361 V_Rated_BAT "Á¤°ÝÀü¾Ð(Rated voltage of battery)"; +CM_ BO_ 2484602384 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484602384 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484602384 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484602384 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484602384 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484602384 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484602384 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484602384 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484602384 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484602384 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484602384 Warn_SOC "SOC Warning"; +CM_ SG_ 2484602384 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484602384 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484602384 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484602384 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484602384 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484602384 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484602128 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484602128 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484602128 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484602128 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484602128 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484602128 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484602128 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484602128 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484602128 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484602128 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484602128 Warn_SOC "SOC Warning"; +CM_ SG_ 2484602128 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484602128 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484602128 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484602128 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484602128 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484602128 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484601872 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484601872 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484601872 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484601872 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484601872 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484601872 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484601872 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484601872 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484601872 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484601872 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484601872 Warn_SOC "SOC Warning"; +CM_ SG_ 2484601872 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484601872 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484601872 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484601872 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484601872 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484601872 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484601616 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484601616 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484601616 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484601616 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484601616 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484601616 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484601616 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484601616 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484601616 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484601616 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484601616 Warn_SOC "SOC Warning"; +CM_ SG_ 2484601616 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484601616 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484601616 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484601616 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484601616 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484601616 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484601360 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484601360 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484601360 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484601360 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484601360 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484601360 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484601360 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484601360 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484601360 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484601360 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484601360 Warn_SOC "SOC Warning"; +CM_ SG_ 2484601360 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484601360 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484601360 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484601360 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484601360 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484601360 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484602896 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484602896 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484602896 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484602896 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484602896 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484602896 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484602896 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484602896 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484602896 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484602896 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484602896 Warn_SOC "SOC Warning"; +CM_ SG_ 2484602896 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484602896 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484602896 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484602896 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484602896 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484602896 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484602640 "Alam1 & BMS Profile : Cell Info"; +CM_ SG_ 2484602640 Fault_UPV "Under Pack Voltage Fault"; +CM_ SG_ 2484602640 Fault_OPV "Over Pack Voltage Fault"; +CM_ SG_ 2484602640 Warn2_UPV "Under Pack Voltage Warning2"; +CM_ SG_ 2484602640 Warn2_OPV "Over Pack Voltage Warning2"; +CM_ SG_ 2484602640 Warn_OCU "Over Cell Unbalance Waring"; +CM_ SG_ 2484602640 Warn_OMIE "Monitoring IC Error Warning"; +CM_ SG_ 2484602640 Warn_OROC "Relay Open Current Warning"; +CM_ SG_ 2484602640 Warn_UCTD "Under Cell Temp Discharge Warning"; +CM_ SG_ 2484602640 Warn_UCTC "Under Cell Temp Charge Warning"; +CM_ SG_ 2484602640 Warn_SOC "SOC Warning"; +CM_ SG_ 2484602640 Warn_UPV "Under Pack Voltage Warning"; +CM_ SG_ 2484602640 Warn_OPV "Over Pack Voltage Warning"; +CM_ SG_ 2484602640 MadeupOfCell_P "¼¿±¸¼º - Parallel"; +CM_ SG_ 2484602640 MadeupOfCell_S "¼¿±¸¼º - Series"; +CM_ SG_ 2484602640 TypeOfCell "¼¿±¸Á¶"; +CM_ SG_ 2484602640 ClassOfCell "¼¿Á¾·ù"; +CM_ BO_ 2484602374 "BMS_Profile : S/W Version"; +CM_ BO_ 2484602118 "BMS_Profile : S/W Version"; +CM_ BO_ 2484601862 "BMS_Profile : S/W Version"; +CM_ BO_ 2484601606 "BMS_Profile : S/W Version"; +CM_ BO_ 2484601350 "BMS_Profile : S/W Version"; +CM_ BO_ 2484602886 "BMS_Profile : S/W Version"; +CM_ BO_ 2484602630 "BMS_Profile : S/W Version"; +CM_ BO_ 2484602373 "BMS Profile : Company #2"; +CM_ BO_ 2484602117 "BMS Profile : Company #2"; +CM_ BO_ 2484601861 "BMS Profile : Company #2"; +CM_ BO_ 2484601605 "BMS Profile : Company #2"; +CM_ BO_ 2484601349 "BMS Profile : Company #2"; +CM_ BO_ 2484602885 "BMS Profile : Company #2"; +CM_ BO_ 2484602629 "BMS Profile : Company #2"; +CM_ BO_ 2484602372 "BMS Profile : Company #1"; +CM_ BO_ 2484602116 "BMS Profile : Company #1"; +CM_ BO_ 2484601860 "BMS Profile : Company #1"; +CM_ BO_ 2484601604 "BMS Profile : Company #1"; +CM_ BO_ 2484601348 "BMS Profile : Company #1"; +CM_ BO_ 2484602884 "BMS Profile : Company #1"; +CM_ BO_ 2484602628 "BMS Profile : Company #1"; +CM_ BO_ 2484602371 "BMS Profile : Model Info #2"; +CM_ BO_ 2484602115 "BMS Profile : Model Info #2"; +CM_ BO_ 2484601859 "BMS Profile : Model Info #2"; +CM_ BO_ 2484601603 "BMS Profile : Model Info #2"; +CM_ BO_ 2484601347 "BMS Profile : Model Info #2"; +CM_ BO_ 2484602883 "BMS Profile : Model Info #2"; +CM_ BO_ 2484602627 "BMS Profile : Model Info #2"; +CM_ BO_ 2484602370 "BMS Profile : Model Info #1"; +CM_ BO_ 2484602114 "BMS Profile : Model Info #1"; +CM_ BO_ 2484601858 "BMS Profile : Model Info #1"; +CM_ BO_ 2484601602 "BMS Profile : Model Info #1"; +CM_ BO_ 2484601346 "BMS Profile : Model Info #1"; +CM_ BO_ 2484602882 "BMS Profile : Model Info #1"; +CM_ BO_ 2484602626 "BMS Profile : Model Info #1"; +CM_ BO_ 2484602369 "BMS Profile : SerialNumber"; +CM_ BO_ 2484602113 "BMS Profile : SerialNumber"; +CM_ BO_ 2484601857 "BMS Profile : SerialNumber"; +CM_ BO_ 2484601601 "BMS Profile : SerialNumber"; +CM_ BO_ 2484601345 "BMS Profile : SerialNumber"; +CM_ BO_ 2484602881 "BMS Profile : SerialNumber"; +CM_ BO_ 2484602625 "BMS Profile : SerialNumber"; +CM_ BO_ 2484602880 "BMS Profile : ID"; +CM_ BO_ 2484602624 "BMS Profile : ID"; +CM_ BO_ 2484602368 "BMS Profile : ID"; +CM_ BO_ 2484602112 "BMS Profile : ID"; +CM_ BO_ 2484601856 "BMS Profile : ID"; +CM_ BO_ 2484601600 "BMS Profile : ID"; +CM_ BO_ 2484601344 "BMS Profile : ID"; +CM_ SG_ 2566127671 RD_stClose_RH "Roof Door Close Switch_RH"; +CM_ SG_ 2566127671 RD_stClose_LH "Roof Door Close Switch_LH"; +CM_ SG_ 2566127671 RD_stOpen_RH "Roof Door Open switch_RH"; +CM_ SG_ 2566127671 RD_stOpen_LH "Roof Door Open Switch_LH"; +CM_ SG_ 2566127671 RD_CloseSol "Roof Door Close Sol Control"; +CM_ SG_ 2566127671 RD_OpenSol "Roof Door Open Sol Control"; +CM_ SG_ 2566127671 RD_stAirCyl_Down "Roof Door Air Cylinder Down Signal"; +CM_ SG_ 2566127671 RD_stAirCyl_UP "Roof Door Air Cylinder Up Signal"; +CM_ SG_ 2566127671 RD_AirCyl_Ctrl "Roof Door Air Cylinder Control"; +CM_ SG_ 2566127671 RDErr_CloseSol "Roof Door Close Sol Error"; +CM_ SG_ 2566127671 RDErr_OpenSol "Roof Door Open Sol Error"; +CM_ SG_ 2566127671 RDErr_AirCyl "Roof Door Air Cylinder Error"; +CM_ SG_ 2566127671 RDErr_Comm "Roof Door Comm(CAN). Error"; +CM_ SG_ 2566127671 RDErr_CloseLatch "Roof Door Close Latch Error"; +CM_ SG_ 2566127671 RDErr_OpenLatch "Roof Door Open Latch Error"; +CM_ SG_ 2566127671 RDErr_Motor_OT "Roof Door Motor Over Temp Error"; +CM_ SG_ 2566127671 RDErr_Motor_OC "Roof Door Motor Over Current Error"; +CM_ SG_ 2566127671 RDErr_Stall "Roof Door Stall Error"; +CM_ SG_ 2566127671 RDErr_CableOpen "Roof Door Cable Open Error"; +CM_ SG_ 2566127671 RDErr_Clutch "Roof Door Clutch Error"; +CM_ SG_ 2566127671 RDErr_Motor "Roof Door Motor Error"; +CM_ SG_ 2566127671 RDS_stCloseLatch "Sub-Battery Roof Door Close Latch State"; +CM_ SG_ 2566127671 RD_MotorCtrl "Roof Door Motor Control"; +CM_ SG_ 2566127671 RD_MotorClutch "Roof Door Motor Clutch Control"; +CM_ SG_ 2566127671 RD_LatchCtrl "Roof Door Latch Control"; +CM_ SG_ 2566127671 RD_stCloseLatch "Roof Door Close Latch State"; +CM_ SG_ 2566127671 RD_stOpenLatch "Roof Door Open Latch State"; +CM_ SG_ 2566127671 diagRD "Diagnostic Roof Door"; +CM_ SG_ 2566127671 RDS_State "Sub-Battery Roof Door State"; +CM_ SG_ 2566127671 RD_State "Roof Door State"; +CM_ SG_ 2566127671 RD_CMD_Fb "Roof Door Control Command Feedback"; +CM_ SG_ 2484603201 Chg_ChargePower "Charge power"; +CM_ SG_ 2484603201 Chg_OutputVolt "Charge voltage"; +CM_ SG_ 2484603201 Chg_OutputCurr "Charge current"; +CM_ SG_ 2484603201 Chg_Pilot "Charge connection state"; +CM_ SG_ 2484603201 Chg_Finish "Charging finish"; +CM_ SG_ 2484603201 Chg_Charging "Charging State"; +CM_ SG_ 2484603201 Chg_Ready "Charge Ready"; +CM_ SG_ 2484603200 Dc_Chg_MaxCurr "Maximum Charge Current"; +CM_ SG_ 2484603200 Dc_Chg_MaxVolt "Maximum Charge Voltage"; +CM_ SG_ 2484603200 Dc_Chg_Time "Charge Time"; +CM_ SG_ 2484603200 Dc_Chg_FaultCode "Charger Fault Code"; +CM_ SG_ 2484603200 Dc_Chg_PowEnStat "Charger charge ready State"; +CM_ SG_ 2484603200 Dc_Chg_Finish "Charger charge finish"; +CM_ SG_ 2484603200 Dc_Chg_Mode "Charger charge Mode"; +CM_ SG_ 2484603200 Dc_Chg_Fault "Charger Fault"; +CM_ SG_ 2484603200 Dc_Chg_Ready "Charger Ready"; +CM_ BO_ 2484602448 "CHARGER_CMD"; +CM_ SG_ 2484602448 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484602448 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ BO_ 2484602192 "CHARGER_CMD"; +CM_ SG_ 2484602192 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484602192 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ BO_ 2484601936 "CHARGER_CMD"; +CM_ SG_ 2484601936 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484601936 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ BO_ 2484601680 "CHARGER_CMD"; +CM_ SG_ 2484601680 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484601680 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ BO_ 2484601424 "CHARGER_CMD"; +CM_ SG_ 2484601424 BatteryBduCtrl "Battery BDU Control"; +CM_ SG_ 2484601424 ToChargeSOC "ÃæÀüSOC¹üÀ§(To Charge SOC Range)"; +CM_ SG_ 2566062161 QCMErr_Comm "QCM Comm. Error"; +CM_ SG_ 2566062161 QCMErr_Internal "QCM Internal Error"; +CM_ SG_ 2566062161 QCMErr_Bellows "QCM Bellows Error"; +CM_ SG_ 2566062161 BTMErr_Internal "BTM Internal Error"; +CM_ SG_ 2566062161 BellowsState "Bellows State"; +CM_ SG_ 2566062161 BAT_SEL_Change "Battery Select status for change"; +CM_ SG_ 2566062161 QCM_SEQ "QCM Sequence"; +CM_ SG_ 2565996609 QTPErr_BL_DRV "Blower Driver Alarm"; +CM_ SG_ 2565996609 QTPErr_CON_DRV "Battery Connector Driver Alarm"; +CM_ SG_ 2565996609 QTPErr_RCLP_SEN "Right Clamp Sensor Error(All on)"; +CM_ SG_ 2565996609 QTPErr_LCLP_SEN "Left Clamp Sensor Error(All on)"; +CM_ SG_ 2565996609 QTPErr_RCLP_Open "Right Clamp Open time out Error"; +CM_ SG_ 2565996609 QTPErr_LCLP_Open "Left Clamp Open time out Error"; +CM_ SG_ 2565996609 QTPErr_RCLP_Close "Right Clamp Close time out Error"; +CM_ SG_ 2565996609 QTPErr_LCLP_Close "Left Clamp Close time out Error"; +CM_ SG_ 2565996609 QTPErr_RCLP_Driver "Right Clamp Driver Error"; +CM_ SG_ 2565996609 QTPErr_LCLP_Driver "Left Clamp Driver Error"; +CM_ SG_ 2565996609 QTPErr_CON_Open "Battery Connentor open time out Error"; +CM_ SG_ 2565996609 QTPErr_CON_Close "Battery Connector close time out Error"; +CM_ SG_ 2565996609 QTPErr_CON_SEN "Battery Connector sensor Error(All on)"; +CM_ SG_ 2565996609 QTPErr_BL_Open "Air Blower open time out Error"; +CM_ SG_ 2565996609 QTPErr_BL_Close "Air Blower Close time out Error"; +CM_ SG_ 2565996609 QTPErr_RD_Open "Roof Door open time out error"; +CM_ SG_ 2565996609 QTPErr_RD_Close "Roof Door Close time out Error"; +CM_ SG_ 2565996609 QTPErr_RD_SEN "Roof Door Sensor Error(All on)"; +CM_ SG_ 2565996609 QTPErr_AirBlower "Air Blower Error"; +CM_ SG_ 2565996609 BATClampState "Battery Clamp State"; +CM_ SG_ 2565996609 BATConnectorState "Battery Connector State"; +CM_ SG_ 2565996609 AirBlowerState "Air Blower State"; +CM_ SG_ 2565996609 RoofDoorState "Roof Door Stage"; +CM_ SG_ 2565996609 QTP_SEQ "QTP_Sequence"; +CM_ SG_ 2565996609 BATBlower_Fb "Blower Motor Control"; +CM_ SG_ 2565996609 QTP_CMD_Fb "QTP Control Command Feedback"; +CM_ SG_ 2566889246 MC_Fb_BAT "Main Contactor feedback(DICO1)"; +CM_ SG_ 2566889246 I_BAT "Total Battery Current"; +CM_ SG_ 2566889246 V_BAT "Total Battery Voltage"; +CM_ SG_ 2566889246 SOC "State of Charge"; +CM_ SG_ 2566889246 I_BAT_DCHGMax "Maximum discharge currnet"; +CM_ SG_ 2566889246 I_BAT_CHGMax "Maximum charge current"; +CM_ SG_ 2566889246 V_BAT_Min "Minimum Battery Voltage"; +CM_ SG_ 2566889246 V_BAT_Max "Maximum Battery Voltage"; +CM_ SG_ 2566885635 T_BrakeResistor "Temperature of Brake Resistor"; +CM_ SG_ 2566885379 T_MOT_A1 "Temperature of Aux Motor 1 winding"; +CM_ SG_ 2566885379 T_INV_A1 "Temperature of Aux Inverter 1 heatsink"; +CM_ SG_ 2566885379 T_MOT2 "Temperature of Motor 2 winding"; +CM_ SG_ 2566885379 T_INV_M2 "Temperature of Inverter 2 heatsink"; +CM_ SG_ 2566885379 T_MOT1 "Temperature of Motor 1 winding"; +CM_ SG_ 2566885379 T_INV_M1 "Temperature of Inverter 1 heatsink"; +CM_ SG_ 2566884355 Pw_ES_Fb "Actual power feedback of energy storage"; +CM_ SG_ 2566884355 Pw_ES_Rf "Actual power reference of energy storage"; +CM_ SG_ 2566884355 Pw_IBC_Fb "Actual drive motor power feedback"; +CM_ SG_ 2566884355 Pw_IBC_Rf "Actual drive motor power reference"; +CM_ SG_ 2566884867 N_AUX "Actual speed of Aux Motor"; +CM_ SG_ 2566884867 Pw_AUX "Actual power of Aux Motor"; +CM_ SG_ 2566884867 I_IBC "Current of Drive system"; +CM_ SG_ 2566884867 V_IBC "Voltage of Drive system"; +CM_ SG_ 2566884867 T_DrvSys "Water Temperature of drive system"; +CM_ SG_ 2566884611 diagDICO "Diagnostic Inverter/DICO"; +CM_ SG_ 2566884611 diagAUX1 "Diagnostic Inverter/AUX-Motor1"; +CM_ SG_ 2566884611 diagMOT1 "Diagnostic Inverter/Motor1"; +CM_ SG_ 2566884611 diagMOT2 "Diagnostic Inverter/Motor2"; +CM_ SG_ 2566885123 bErrBuf_On "Error Buffer On"; +CM_ SG_ 2566885123 ErrBuf_Num "Error Buffer Number"; +CM_ SG_ 2566885123 Pw_BrkResistor_Fb "Brake resistor power feedback"; +CM_ SG_ 2566885123 Tq_SYS "Actural Drive Motor Torque"; +CM_ SG_ 2566885123 Tq_SYS_Rf "Drive Motor Torque Reference"; +CM_ SG_ 2566885123 N_SYS "Drive Motor Speed"; +CM_ SG_ 2566885123 bMC_Rq "Main Contactor request"; +CM_ SG_ 2566885123 bPC_Rq "Precharge Contactor request"; +CM_ SG_ 2566885123 bFan_Rq "Fan Control"; +CM_ SG_ 2566885123 bPerfRedSys "Performance Reduction System(Yellow Lamp)"; +CM_ SG_ 2566885123 bWarningSys "System warning status(Red Lamp flashing)"; +CM_ SG_ 2566885123 bErrorSys "System error status(Red Lamp)"; +CM_ SG_ 2566885123 bMotorDir "Motor direction"; +CM_ SG_ 2566885123 DNR_DICO "DNR status"; +CM_ SG_ 2566885123 bPrechargeAct "Precharge Active"; +CM_ SG_ 2566885123 bKeyStart "Key Start Acknowledge"; +CM_ SG_ 2566885123 bInitAct "Initialization active"; +CM_ SG_ 2566885123 bDriveSysAct "Drive system Active"; +CM_ SG_ 2566127655 RD_FClear "Roof Door Fault Clear"; +CM_ SG_ 2566127655 RD_CMD "Roof Door Control command"; +CM_ SG_ 2566062119 DTC_HCode "Highest DTC Code(Error code)"; +CM_ SG_ 2566062119 ErrorNum "Error number"; +CM_ SG_ 2566062119 CHG_Rq "Charge request"; +CM_ SG_ 2566062119 BusState "Bus running state"; +CM_ SG_ 2566062119 QCM_SEQ_Fb "QCM Sequence feedback"; +CM_ SG_ 2565996583 QTP_SEQ_Fb "QTP Sequence"; +CM_ SG_ 2565996583 BATBlower "Blower Motor control"; +CM_ SG_ 2565996583 QTP_CMD "QTP Control Command"; +CM_ SG_ 2484602919 BDU_S_Fb "Sub-Battery BDU Feedback"; +CM_ SG_ 2484602919 BDU_S "Sub-Battery BDU Control"; +CM_ SG_ 2484602919 PRA_CHG_BMS_S "Charge PRA state"; +CM_ SG_ 2484602919 MC_DRV_BMS_S "DRV Main Contactor state"; +CM_ SG_ 2484602919 PC_DRV_BMS_S "DRV_Pre-Charge Contactor state"; +CM_ SG_ 2484602919 EV_ON_BMS_S "EV System ON Mode for BMS_S"; +CM_ BO_ 2484602663 "EVCU_CMD"; +CM_ SG_ 2484602663 BDU_M_Fb "Main-Battery BDU Feedback"; +CM_ SG_ 2484602663 BDU_M "Main-Battery BDU Control"; +CM_ SG_ 2484602663 MC_DRV_BMS_M "DRV Main Contactor State"; +CM_ SG_ 2484602663 PC_DRV_BMS_M "DRV Pre-Charge Contactor State"; +CM_ SG_ 2484602663 EV_ON_BMS_M "EV System ON Mode for BMS_M"; +CM_ SG_ 2566864423 T_AirComp "Air Comp Tempterature"; +CM_ SG_ 2566864423 VB "Battery voltage"; +CM_ SG_ 2566864423 Retarder_Level "Retarder level"; +CM_ SG_ 2566864423 BPS "Brake position"; +CM_ SG_ 2566864423 APS "Accel position"; +CM_ SG_ 2566864423 PAir "Air pressure"; +CM_ SG_ 2566864423 VS "Vehicle speed"; +CM_ SG_ 2566864679 ERR_GF "Ground Fault Error"; +CM_ SG_ 2566864679 ERR_RDCU "RDCU Error"; +CM_ SG_ 2566864679 ERR_BTM "BTM Error"; +CM_ SG_ 2566864679 ERR_QTP "QTP Error"; +CM_ SG_ 2566864679 ERR_BMS_S "BMS_S Error"; +CM_ SG_ 2566864679 ERR_BMS_M "BMS_M Error"; +CM_ SG_ 2566864679 ERR_DrvSys "Drive System Error"; +CM_ SG_ 2566864679 ERR_EVCU "EVCU Error"; +CM_ SG_ 2566864679 CANErr_RDCU "RDCU CAN Error"; +CM_ SG_ 2566864679 CANErr_ABS "ABS CAN Error"; +CM_ SG_ 2566864679 CANErr_BTM "BTM CAN Error"; +CM_ SG_ 2566864679 CANErr_QTP "QTP CAN Error"; +CM_ SG_ 2566864679 CANErr_BMS_S "BMS_S CAN Error"; +CM_ SG_ 2566864679 CANErr_BMS_M "BMS_M CAN Error"; +CM_ SG_ 2566864679 CANErr_DCAN "DCAN Error"; +CM_ SG_ 2566864679 CANErr_DICO "DICO CAN Error"; +CM_ SG_ 2566864679 diagDNR "DNR Error"; +CM_ SG_ 2566864679 diagBPS "BPS Error"; +CM_ SG_ 2566864679 diagAPS "APS Error"; +CM_ SG_ 2566864679 DO_PRA_CHG "Charge PRA"; +CM_ SG_ 2566864679 DO_PRA_N "Negative PRA"; +CM_ SG_ 2566864679 DO_PRA_P "Positive PRA"; +CM_ SG_ 2566864679 DO_PRA_Pre "Precharge PRA"; +CM_ SG_ 2566864679 DO_RLY_ALT "Alternator relay"; +CM_ SG_ 2566864679 DO_RLY_Heater "Heater relay"; +CM_ SG_ 2566864679 DO_RLY_RLamp "Rear lamp relay"; +CM_ SG_ 2566864679 DO_RLY_ACON "A/C relay"; +CM_ SG_ 2566864679 DO_RLY_WPump "Water pump relay"; +CM_ SG_ 2566864679 DO_RLY_FAN_H "Fan High relay"; +CM_ SG_ 2566864679 DO_RLY_FAN_L "Fan Low relay"; +CM_ SG_ 2566864679 DO_RLY_BMS "BMS relay"; +CM_ SG_ 2566864679 DO_RLY_DICO "DICO relay(INV)"; +CM_ SG_ 2566864679 DO_RLY_Main3 "Main 3 relay"; +CM_ SG_ 2566864679 DO_RLY_Main2 "Main 2 relay"; +CM_ SG_ 2566864679 DO_RLY_Main1 "Main 1 relay"; +CM_ SG_ 2566864679 DI_RD_Open "RD Open Switch"; +CM_ SG_ 2566864679 DI_BAT_SEL "Battery Select Switch"; +CM_ SG_ 2566864679 DI_Door "Door Switch"; +CM_ SG_ 2566864679 DI_ACON "A/C Switch"; +CM_ SG_ 2566864679 DI_Heater "Heater Switch"; +CM_ SG_ 2566864679 DI_Retard_3 "Retarder 3"; +CM_ SG_ 2566864679 DI_Retard_2 "Retarder 2"; +CM_ SG_ 2566864679 DI_Retard_1 "Retarder 1"; +CM_ SG_ 2566864679 DI_DNR_R "DNR R"; +CM_ SG_ 2566864679 DI_DNR_N "DNR N"; +CM_ SG_ 2566864679 DI_DNR_D "DNR D"; +CM_ SG_ 2566864679 DI_PBrake "Parking brake"; +CM_ SG_ 2566864679 DI_ST "ST Key"; +CM_ SG_ 2566864679 DI_CHG "Charge Switch(charge wake-up)"; +CM_ SG_ 2566864679 DI_IG "IG Key"; +CM_ SG_ 2566864679 Sys_Rdy "System ready status(drive ready)"; +CM_ SG_ 2566864679 Sys_Start "System start status"; +CM_ SG_ 2566864679 Sys_Bat_Sel "Battery Select status"; +CM_ SG_ 2566864679 Sys_Qtp_Rdy "QTP ready(All closed)"; +CM_ SG_ 2566864679 Sys_Bat_Rdy "Battery ready(charging & discharging)"; +CM_ SG_ 2566864679 Sys_On "System ON"; +CM_ SG_ 2365537831 Pw_brkResistor_Rf "Reference Power for Brake Resistor"; +CM_ SG_ 2365538087 Retarder "Retarder control"; +CM_ SG_ 2365538087 Aux1_Control "Aux1 Control"; +CM_ SG_ 2365538087 ToggleBit "Toggle Bit(EVCU Alive)"; +CM_ SG_ 2365538087 KeyStart_Rq "Key Start Request(Drive System Enable)"; +CM_ SG_ 2365538087 DNR_EVCU "DNR_Status"; +CM_ SG_ 2365538087 SW_StopBrake "Stop Brake switch(docking brake)"; +CM_ SG_ 2365538087 Tq_Brake_Rq "Requested brake (Retarder)"; +CM_ SG_ 2365538087 AP_Position "Accelerator pedal position"; +CM_ SG_ 2365538087 SW_Brake "Brake switch"; +CM_ SG_ 2365538087 SW_PBrake "Parking brake switch"; +CM_ SG_ 2365538087 SW_Kickdown "Accel pdal kick down switch"; +CM_ SG_ 2365538087 SW_AP_Lowldle "Accel pedal low idle switch"; +BA_DEF_ "BusType" STRING ; +BA_DEF_DEF_ "BusType" "CAN"; +VAL_ 3221225472 BatS_FanState_2 1 "Fail" 0 "Normal" ; +VAL_ 3221225472 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 3221225472 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 3221225472 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 3221225472 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 3221225472 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 3221225472 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484602208 CELL_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484602208 EV_ON_CTRL_SOURCE 3 "Charger" 2 "VCU" 1 "System Master" 0 "None" ; +VAL_ 2484602208 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484601952 CELL_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484601952 EV_ON_CTRL_SOURCE 3 "Charger" 2 "VCU" 1 "System Master" 0 "None" ; +VAL_ 2484601952 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484601696 CELL_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484601696 EV_ON_CTRL_SOURCE 3 "Charger" 2 "VCU" 1 "System Master" 0 "None" ; +VAL_ 2484601696 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484601440 CELL_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484601440 EV_ON_CTRL_SOURCE 3 "Charger" 2 "VCU" 1 "System Master" 0 "None" ; +VAL_ 2484601440 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484603216 Pack_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484603216 Pack4_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603216 Pack3_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603216 Pack2_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603216 Pack1_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603216 BatteryBduCtrl 1 "ON" 0 "OFF" ; +VAL_ 2484603175 Pack4_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603175 Pack3_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603175 Pack2_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603175 Pack1_Force_On 1 "ON" 0 "OFF" ; +VAL_ 2484603175 Pack_Bal_Drive 1 "ON" 0 "OFF" ; +VAL_ 2484603175 BDU_M_Fb 1 "ON" 0 "OFF" ; +VAL_ 2484603175 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484603175 EV_ON_BMS_M 3 "Charger" 2 "VCU" 1 "System Master" 0 "None" ; +VAL_ 2484603152 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484603152 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484603168 BatS_Pack4LinkFail 1 "Fail" 0 "Normal" ; +VAL_ 2484603168 BatS_Pack3LinkFail 1 "Fail" 0 "Normal" ; +VAL_ 2484603168 BatS_Pack2LinkFail 1 "Fail" 0 "Normal" ; +VAL_ 2484603168 BatS_Pack1LinkFail 1 "Fail" 0 "Normal" ; +VAL_ 2484603168 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484603168 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484603168 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484603156 Pack4_Low_V_Flag 1 "O" 0 "X" ; +VAL_ 2484603156 Pack3_Low_V_Flag 1 "O" 0 "X" ; +VAL_ 2484603156 Pack2_Low_V_Flag 1 "O" 0 "X" ; +VAL_ 2484603156 Pack1_Low_V_Flag 1 "O" 0 "X" ; +VAL_ 2484603156 Pack4_Ready 1 "O" 0 "X" ; +VAL_ 2484603156 Pack3_Ready 1 "O" 0 "X" ; +VAL_ 2484603156 Pack2_Ready 1 "O" 0 "X" ; +VAL_ 2484603156 Pack1_Ready 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484603156 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484603156 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484601383 BDU_M_Fb 1 "ON" 0 "OFF" ; +VAL_ 2484601383 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484601383 EV_ON_BMS_M 3 "??" 2 "Charge mode ON" 1 "Drive mode ON" 0 "OFF" ; +VAL_ 2566864167 diagBPS 3 "Short to High" 2 "Open" 1 "Short to Low" 0 "No Error" ; +VAL_ 2566864167 diagAPS 3 "Short to High" 2 "Open" 1 "Short to Low" 0 "No Error" ; +VAL_ 2484602912 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484602912 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484602912 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484602912 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484602912 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484602656 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484602656 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484602656 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484602656 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484602656 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484602400 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484602400 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484602400 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484602400 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484602400 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484602144 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484602144 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484602144 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484602144 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484602144 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484601888 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484601888 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484601888 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484601888 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484601888 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484601632 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484601632 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484601632 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484601632 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484601632 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484601376 BatS_FanState_2 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_FanState_1 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_RelayState_PreCharge 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_RelayState_sP2_Main 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_RelayState_sP1_Main 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_RelayState_Bottom 1 "O" 0 "X" ; +VAL_ 2484601376 BatS_MasterOCVState 1 "OCV" 0 "Not OCV" ; +VAL_ 2484601376 BatS_MasterChargeMode 3 "Regenerative Brahing" 2 "CV" 1 "CC" 0 "None" ; +VAL_ 2484601376 BatS_MasterRunState 3 "Discharging" 2 "Charging" 1 "Ready" 0 "None" ; +VAL_ 2484601376 BatS_MasterState 7 "Out of State" 6 "Out of State" 5 "Out of State" 4 "Fault" 3 "Run" 2 "Standby" 1 "Ready" 0 "Init" ; +VAL_ 2484602900 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484602900 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484602900 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484602644 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484602644 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484602388 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484602388 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484602132 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484602132 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484601876 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484601876 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484601620 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484601620 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_Charger_Mode 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_CV_Mode 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_CC_Mode 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_BDU_Relay_State 1 "ON" 0 "OFF" ; +VAL_ 2484601364 BatS_Charge_Cutoff_Req 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_Discharging 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_ChargeFull 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_Trickle_Charging 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_Charging 1 "O" 0 "X" ; +VAL_ 2484601364 BatS_Ready 1 "O" 0 "X" ; +VAL_ 2484602384 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484602384 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484602128 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484602128 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484601872 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484601872 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484601616 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484601616 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484601360 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484601360 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484602896 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484602896 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2484602640 TypeOfCell 3 "Prismatic" 2 "Cylindrical" 1 "Pouch" 0 "Unknown" ; +VAL_ 2484602640 ClassOfCell 5 "LFP(LiFePo4)" 4 "LMO(LiMn2O2)" 3 "NMC(LiNiMnCoO2)" 2 "NCA(LiNicoAlO2)" 1 "LCO(LiCoO2)" 0 "Unkown" ; +VAL_ 2566127671 RD_AirCyl_Ctrl 1 "Open" 0 "Close" ; +VAL_ 2566127671 RD_MotorCtrl 3 "Init Control" 2 "Open Control" 1 "Close Control" 0 "Off" ; +VAL_ 2566127671 diagRD 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_ 2566127671 RDS_State 1 "Opened" 0 "Closed" ; +VAL_ 2566127671 RD_State 7 "Reserved" 6 "Initializing" 5 "Stoped middle" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_ 2566127671 RD_CMD_Fb 3 "RD init" 2 "RD Close" 1 "RD Open" 0 "Normal state" ; +VAL_ 2484603200 Dc_Chg_Mode 3 "others" 2 "others" 1 "CV" 0 "CC" ; +VAL_ 2484602448 BatteryBduCtrl 1 "OFF" 0 "ON" ; +VAL_ 2484602192 BatteryBduCtrl 1 "OFF" 0 "ON" ; +VAL_ 2484601936 BatteryBduCtrl 1 "OFF" 0 "ON" ; +VAL_ 2484601680 BatteryBduCtrl 1 "OFF" 0 "ON" ; +VAL_ 2484601424 BatteryBduCtrl 1 "OFF" 0 "ON" ; +VAL_ 2566062161 BellowsState 7 "Middle State Stall" 6 "Down State Stall" 5 "Up State Stall" 4 "Stoped Down" 3 "Moving Up" 2 "Moving Down" 1 "Stoped Up" 0 "Off" ; +VAL_ 2566062161 BAT_SEL_Change 3 "All Battery Change" 2 "Sub Battery" 1 "Main Battery" 0 "Not Select" ; +VAL_ 2566062161 QCM_SEQ 15 "Reserved" 14 "Reserved" 13 "Reserved" 12 "Reserved" 11 "Battery Change End" 10 "Bellows Up" 9 "Battery Change OK" 8 "Battery Change" 7 "QTP open check OK" 6 "QTP Open Rq" 5 "Bellows down" 4 "Bus System Off OK" 3 "Bus System Off Rq" 2 "Bus Stop OK" 1 "QCM_Ready" 0 "OFF" ; +VAL_ 2565996609 BATClampState 7 "Middle Stall" 6 "Opened Stall" 5 "Closed Stall" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_ 2565996609 BATConnectorState 7 "Middle Stall" 6 "Opened Stall" 5 "Closed Stall" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_ 2565996609 AirBlowerState 7 "Middle Stall" 6 "Opened Stall" 5 "Closed Stall" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_ 2565996609 RoofDoorState 7 "Middle Stall" 6 "Opened Stall" 5 "Closed Stall" 4 "Opened" 3 "Opening" 2 "Closing" 1 "Closed" 0 "Off" ; +VAL_ 2565996609 QTP_SEQ 7 "Reserved" 6 "QTP Opened" 5 "Battery clamp Control" 4 "Connect Control" 3 "Blower position Control" 2 "Roof Door Control" 1 "QTP Closed" 0 "OFF" ; +VAL_ 2565996609 BATBlower_Fb 7 "Reserved" 6 "Reserved" 5 "Blower Speed : 5" 4 "Blower Speed : 4" 3 "Blower Speed : 3" 2 "Blower Speed : 2" 1 "Blower Speed : 1" 0 "Off" ; +VAL_ 2565996609 QTP_CMD_Fb 3 "QTP Reset" 2 "QTP Close" 1 "QTP Open" 0 "Normal State" ; +VAL_ 2566889246 MC_Fb_BAT 3 "Not Available" 2 "Error" 1 "ON" 0 "OFF" ; +VAL_ 2566884611 diagDICO 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_ 2566884611 diagAUX1 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_ 2566884611 diagMOT1 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_ 2566884611 diagMOT2 3 "Failure(Red)" 2 "Active but Warning(Yellow)" 1 "Active(Green)" 0 "Not Active" ; +VAL_ 2566885123 bMC_Rq 1 "ON" 0 "OFF" ; +VAL_ 2566885123 bPC_Rq 1 "ON" 0 "OFF" ; +VAL_ 2566885123 bFan_Rq 1 "ON" 0 "OFF" ; +VAL_ 2566885123 bMotorDir 1 "Forward" 0 "Not Forward" ; +VAL_ 2566885123 DNR_DICO 7 "Error" 6 "Error" 5 "Error" 4 "R" 3 "Error" 2 "N" 1 "D" 0 "Error" ; +VAL_ 2566127655 RD_CMD 3 "RD init" 2 "RD Close" 1 "RD Open" 0 "Normal state" ; +VAL_ 2566062119 CHG_Rq 3 "Reserved" 2 "MCS Charge Rq" 1 "Battery Charge Rq" 0 "OFF" ; +VAL_ 2566062119 BusState 7 "Reserved" 6 "Reserved" 5 "MCS Charge" 4 "QTP Closed" 3 "QTP Opened" 2 "BAT Change Ready" 1 "System Run(Drive Ready)" 0 "System OFF" ; +VAL_ 2566062119 QCM_SEQ_Fb 15 "Reserved" 14 "Reserved" 13 "Reserved" 12 "Reserved" 11 "Battery Change End" 10 "Bellows Up" 9 "Battery Change OK" 8 "Battery Change" 7 "QTP open check OK" 6 "QTP Open Rq" 5 "Bellows down" 4 "Bus System Off OK" 3 "Bus System Off Rq" 2 "Bus Stop OK" 1 "QCM_Ready" 0 "OFF" ; +VAL_ 2565996583 QTP_SEQ_Fb 7 "Reserved" 6 "QTP Opened" 5 "Battery clamp Control" 4 "Connect Control" 3 "Blower position Control" 2 "Roof Door Control" 1 "QTP Closed" 0 "OFF" ; +VAL_ 2565996583 BATBlower 7 "Reserved" 6 "Reserved" 5 "Blower Speed : 5" 4 "Blower Speed : 4" 3 "Blower Speed : 3" 2 "Blower Speed : 2" 1 "Blower Speed : 1" 0 "Off" ; +VAL_ 2565996583 QTP_CMD 3 "QTP Reset" 2 "QTP Close" 1 "QTP Open" 0 "Normal State" ; +VAL_ 2484602919 BDU_S_Fb 1 "ON" 0 "OFF" ; +VAL_ 2484602919 BDU_S 1 "ON" 0 "OFF" ; +VAL_ 2484602919 EV_ON_BMS_S 3 "??" 2 "Charge mode ON" 1 "Drive mode ON" 0 "OFF" ; +VAL_ 2484602663 BDU_M_Fb 1 "ON" 0 "OFF" ; +VAL_ 2484602663 BDU_M 1 "ON" 0 "OFF" ; +VAL_ 2484602663 EV_ON_BMS_M 3 "??" 2 "Charge mode ON" 1 "Drive mode ON" 0 "OFF" ; +VAL_ 2566864679 diagBPS 3 "Short to High" 2 "Open" 1 "Short to Low" 0 "No Error" ; +VAL_ 2566864679 diagAPS 3 "Short to High" 2 "Open" 1 "Short to Low" 0 "No Error" ; +VAL_ 2566864679 Sys_Bat_Sel 3 "All Battery Change" 2 "Sub Battery" 1 "Main Battery" 0 "Not Select" ; +VAL_ 2566864679 Sys_On 3 "Not Available" 2 "CHG_ON" 1 "IG_ON" 0 "OFF" ; +VAL_ 2365538087 Retarder 3 " Retarder Level is 3" 2 " Retarder Level is 2" 1 " Retarder Level is 1" 0 "No Retarder" ; +VAL_ 2365538087 Aux1_Control 3 "Not available" 2 "Set to speed ref2" 1 "Set to speed ref1" 0 "Control not set" ; +VAL_ 2365538087 DNR_EVCU 7 "Error" 6 "Error" 5 "Error" 4 "R" 3 "Error" 2 "N" 1 "D" 0 "Error" ; +VAL_ 2365538087 SW_StopBrake 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; +VAL_ 2365538087 SW_Brake 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; +VAL_ 2365538087 SW_PBrake 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; +VAL_ 2365538087 SW_Kickdown 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; +VAL_ 2365538087 SW_AP_Lowldle 3 "Not Available" 2 "Error" 1 "Switch set" 0 "SW not set" ; +