Skip to content

Commit

Permalink
update immo_reset message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmg210 authored Nov 22, 2024
1 parent afefa3f commit 8780da2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flasher/immo.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def cli_immo_reset (bus, desired_baudrate):
if (input('[?] Looks good! Continue? [y/n]: ') == 'y'):
print(bus.execute(kwp.commands.StartRoutineByLocalIdentifier(Routine.IMMO_RESET_CONFIRM.value, 0x01)).get_data())

print('[*] ECU reseted! Turn ignition off for 10 seconds for changes to take effect')
print('[*] ECU restarted! Turn ignition off for 10 seconds for changes to take effect')

def cli_smartra_neutralize (bus, desired_baudrate):
print('[*] starting default diagnostic session')
Expand Down Expand Up @@ -148,7 +148,6 @@ def cli_immo_teach_keys (bus, desired_baudrate):
key_b = (key >> 8) & 0xFF
key_c = key & 0xFF


print('[*] Starting routine 0x1A with key as parameter and some 0xFFs')
print(bus.execute(kwp.commands.StartRoutineByLocalIdentifier(Routine.IMMO_INPUT_PASSWORD.value, key_a, key_b, key_c, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF)).get_data())

Expand Down

0 comments on commit 8780da2

Please sign in to comment.