fix acf iso modules

This commit is contained in:
shrlnm 2023-04-12 21:24:54 +03:00
parent d76a0a6cdf
commit eb5a01597f

View File

@ -188,8 +188,9 @@ def acf_loadModules( de, refdata, platform ):
if k['idf']==idf:
m['pin'] = k['pin']
m['dst'] = k['dst']
m['idRx'] = k['idRx']
m['idTx'] = k['idRx']
if 'idRx' in k.keys() and 'idTx' in k.keys():
m['idRx'] = k['idRx']
m['idTx'] = k['idRx']
m['startDiagReq'] = k['startDiagReq']
m['ecuname'] = k['ecuname']
m['brp'] = k['brp']