Freeze frame request fix

This commit is contained in:
Marianpol 2020-12-13 16:52:22 +01:00
parent 700e9b92b6
commit 33050e2203

View File

@ -37,7 +37,8 @@ def get_mnemonic( m, se, elm, raw = False ):
if not m.serviceID and mod_globals.ext_cur_DTC != "000000":
for sid in se.keys():
if se[sid].startReq == "120004"+ mod_globals.ext_cur_DTC[:4]:
startReq = se[sid].startReq
if startReq.startswith("12") and startReq.endswith(mod_globals.ext_cur_DTC[:4]):
m.startByte = se[sid].responces[se[sid].responces.keys()[0]].mnemolocations[m.name].startByte
m.startBit = se[sid].responces[se[sid].responces.keys()[0]].mnemolocations[m.name].startBit
m.request = se[sid].startReq