Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Usage: KW1281Test PORT BAUD ADDRESS COMMAND [args]
- PORT = COM1|COM2|etc.
- BAUD = 10400|9600|etc.
- ADDRESS = The controller address, e.g. 1 (ECU), 17 (cluster), 46 (CCM), 56 (radio)
- COMMAND =
- ActuatorTest
- AdaptationRead CHANNEL [LOGIN]
- CHANNEL = Channel number (0-99)
- LOGIN = Optional login (0-65535)
- AdaptationSave CHANNEL VALUE [LOGIN]
- CHANNEL = Channel number (0-99)
- VALUE = Channel value (0-65535)
- LOGIN = Optional login (0-65535)
- AdaptationTest CHANNEL VALUE [LOGIN]
- CHANNEL = Channel number (0-99)
- VALUE = Channel value (0-65535)
- LOGIN = Optional login (0-65535)
- BasicSetting GROUP
- GROUP = Group number (0-255)
- (Group 0: Raw controller data)
- ClarionVWPremium4SafeCode
- ClearFaultCodes
- DelcoVWPremium5SafeCode
- DumpEdc15Eeprom [FILENAME]
- FILENAME = Optional filename
- DumpEeprom START LENGTH [FILENAME]
- START = Start address in decimal (e.g. 0) or hex (e.g. $0)
- LENGTH = Number of bytes in decimal (e.g. 2048) or hex (e.g. $800)
- FILENAME = Optional filename
- DumpMarelliMem START LENGTH [FILENAME]
- START = Start address in decimal (e.g. 3072) or hex (e.g. $C00)
- LENGTH = Number of bytes in decimal (e.g. 1024) or hex (e.g. $400)
- FILENAME = Optional filename
- DumpMem START LENGTH [FILENAME]
- START = Start address in decimal (e.g. 8192) or hex (e.g. $2000)
- LENGTH = Number of bytes in decimal (e.g. 65536) or hex (e.g. $10000)
- FILENAME = Optional filename
- DumpRam START LENGTH [FILENAME]
- START = Start address in decimal (e.g. 8192) or hex (e.g. $2000)
- LENGTH = Number of bytes in decimal (e.g. 65536) or hex (e.g. $10000)
- FILENAME = Optional filename
- DumpRBxMem START LENGTH [FILENAME]
- START = Start address in decimal (e.g. 66560) or hex (e.g. $10400)
- LENGTH = Number of bytes in decimal (e.g. 1024) or hex (e.g. $400)
- FILENAME = Optional filename
- FindLogins LOGIN
- LOGIN = Known good login (0-65535)
- GetSKC
- GroupRead GROUP
- GROUP = Group number (0-255)
- (Group 0: Raw controller data)
- LoadEeprom START FILENAME
- START = Start address in decimal (e.g. 0) or hex (e.g. $0)
- FILENAME = Name of file containing binary data to load into EEPROM
- MapEeprom
- ReadFaultCodes
- ReadIdent
- ReadEeprom ADDRESS
- ADDRESS = Address in decimal (e.g. 4361) or hex (e.g. $1109)
- ReadRAM ADDRESS
- ADDRESS = Address in decimal (e.g. 4361) or hex (e.g. $1109)
- ReadROM ADDRESS
- ADDRESS = Address in decimal (e.g. 4361) or hex (e.g. $1109)
- ReadSoftwareVersion
- Reset
- SetSoftwareCoding CODING WORKSHOP
- CODING = Software coding in decimal (e.g. 4361) or hex (e.g. $1109)
- WORKSHOP = Workshop code in decimal (e.g. 4361) or hex (e.g. $1109)
- ToggleRB4Mode
- WriteEdc15Eeprom ADDRESS1 VALUE1 [ADDRESS2 VALUE2 ... ADDRESSn VALUEn]
- ADDRESS = EEPROM address in decimal (0-511) or hex ($00-$1FF)
- VALUE = Value to be stored at address in decimal (0-255) or hex ($00-$FF)
- WriteEeprom ADDRESS VALUE
- ADDRESS = Address in decimal (e.g. 4361) or hex (e.g. $1109)
- VALUE = Value in decimal (e.g. 138) or hex (e.g. $8A)
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3 9600 DumpEeprom 0 2048 ora.bin
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Caught: System.FormatException The input string 'DumpEeprom' was not in a correct format.
- Unhandled exception: System.FormatException: The input string 'DumpEeprom' was not in a correct format.
- at System.Number.ThrowFormatException[TChar](ReadOnlySpan`1)
- at System.Number.ThrowOverflowOrFormatException[TChar,TInteger](ParsingStatus, ReadOnlySpan`1)
- at System.Number.ParseBinaryInteger[TChar,TInteger](ReadOnlySpan`1, NumberStyles, NumberFormatInfo)
- at System.Int32.Parse(ReadOnlySpan`1, NumberStyles , IFormatProvider )
- at System.Int32.Parse(String, NumberStyles, IFormatProvider )
- at System.Int32.Parse(String, NumberStyles)
- at BitFab.KW1281Test.Program.Run(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 81
- at BitFab.KW1281Test.Program.Main(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 31
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3 9600 17 DumpEeprom 0 2048 ora.bin
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Opening serial port COM3
- Sending wakeup message
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $A5
- Retrying wakeup message...
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $A5
- Retrying wakeup message...
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $A5
- Caught: System.InvalidOperationException Controller did not wake up.
- Unhandled exception: System.InvalidOperationException: Controller did not wake up.
- at BitFab.KW1281Test.KwpCommon.WakeUp(Byte, Boolean) in /Users/gmenounos/src/kw1281test/KwpCommon.cs:line 62
- at BitFab.KW1281Test.Tester.Kwp1281Wakeup(Boolean ) in /Users/gmenounos/src/kw1281test/Tester.cs:line 33
- at BitFab.KW1281Test.Program.Run(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 288
- at BitFab.KW1281Test.Program.Main(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 31
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3 8400 17 DumpEeprom 0 2048 ora.bin
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Opening serial port COM3
- Sending wakeup message
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $CB
- Retrying wakeup message...
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $CA
- Retrying wakeup message...
- Reading sync byte
- Unexpected sync byte: Expected $55, Actual $CB
- Caught: System.InvalidOperationException Controller did not wake up.
- Unhandled exception: System.InvalidOperationException: Controller did not wake up.
- at BitFab.KW1281Test.KwpCommon.WakeUp(Byte, Boolean) in /Users/gmenounos/src/kw1281test/KwpCommon.cs:line 62
- at BitFab.KW1281Test.Tester.Kwp1281Wakeup(Boolean ) in /Users/gmenounos/src/kw1281test/Tester.cs:line 33
- at BitFab.KW1281Test.Program.Run(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 288
- at BitFab.KW1281Test.Program.Main(String[]) in /Users/gmenounos/src/kw1281test/Program.cs:line 31
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3 10400 17 DumpEeprom 0 2048 ora.bin
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Opening serial port COM3
- Sending wakeup message
- Reading sync byte
- Keyword Lsb $01
- Keyword Msb $8A
- Protocol is KW 1281 (8N1)
- ECU: 8D0920932C B5-KOMBIINSTR. VDO D12
- Software Coding 16040, Workshop Code: 00222
- Sending ReadIdent block
- Sending Custom "Read Software Version" blocks
- Sending Custom "Unlock Additional Commands" block
- Cluster did not return software version.
- Unknown cluster software version. EEPROM access will likely fail.
- Sending Custom "Get Access Level" block
- Access level is unknown.
- Sending Custom "Seed request" block
- Sending Custom "Get Access Level" block
- Access level is unknown.
- Failed to unlock cluster.
- Saving EEPROM dump to ora.bin
- Sending ReadEeprom block (Address: $0000, Count: $10)
- Sending ReadEeprom block (Address: $0010, Count: $10)
- Sending ReadEeprom block (Address: $0020, Count: $10)
- Sending ReadEeprom block (Address: $0030, Count: $10)
- Sending ReadEeprom block (Address: $0040, Count: $10)
- Sending ReadEeprom block (Address: $0050, Count: $10)
- Sending ReadEeprom block (Address: $0060, Count: $10)
- Sending ReadEeprom block (Address: $0070, Count: $10)
- Sending ReadEeprom block (Address: $0080, Count: $10)
- Sending ReadEeprom block (Address: $0090, Count: $10)
- Sending ReadEeprom block (Address: $00A0, Count: $10)
- Sending ReadEeprom block (Address: $00B0, Count: $10)
- Sending ReadEeprom block (Address: $00C0, Count: $10)
- Sending ReadEeprom block (Address: $00D0, Count: $10)
- Sending ReadEeprom block (Address: $00E0, Count: $10)
- Sending ReadEeprom block (Address: $00F0, Count: $10)
- Sending ReadEeprom block (Address: $0100, Count: $10)
- Sending ReadEeprom block (Address: $0110, Count: $10)
- Sending ReadEeprom block (Address: $0120, Count: $10)
- Sending ReadEeprom block (Address: $0130, Count: $10)
- Sending ReadEeprom block (Address: $0140, Count: $10)
- Sending ReadEeprom block (Address: $0150, Count: $10)
- Sending ReadEeprom block (Address: $0160, Count: $10)
- Sending ReadEeprom block (Address: $0170, Count: $10)
- Sending ReadEeprom block (Address: $0180, Count: $10)
- Sending ReadEeprom block (Address: $0190, Count: $10)
- Sending ReadEeprom block (Address: $01A0, Count: $10)
- Sending ReadEeprom block (Address: $01B0, Count: $10)
- Sending ReadEeprom block (Address: $01C0, Count: $10)
- Sending ReadEeprom block (Address: $01D0, Count: $10)
- Sending ReadEeprom block (Address: $01E0, Count: $10)
- Sending ReadEeprom block (Address: $01F0, Count: $10)
- Sending ReadEeprom block (Address: $0200, Count: $10)
- Sending ReadEeprom block (Address: $0210, Count: $10)
- Sending ReadEeprom block (Address: $0220, Count: $10)
- Sending ReadEeprom block (Address: $0230, Count: $10)
- Sending ReadEeprom block (Address: $0240, Count: $10)
- Sending ReadEeprom block (Address: $0250, Count: $10)
- Sending ReadEeprom block (Address: $0260, Count: $10)
- Sending ReadEeprom block (Address: $0270, Count: $10)
- Sending ReadEeprom block (Address: $0280, Count: $10)
- Sending ReadEeprom block (Address: $0290, Count: $10)
- Sending ReadEeprom block (Address: $02A0, Count: $10)
- Sending ReadEeprom block (Address: $02B0, Count: $10)
- Sending ReadEeprom block (Address: $02C0, Count: $10)
- Sending ReadEeprom block (Address: $02D0, Count: $10)
- Sending ReadEeprom block (Address: $02E0, Count: $10)
- Sending ReadEeprom block (Address: $02F0, Count: $10)
- Sending ReadEeprom block (Address: $0300, Count: $10)
- Sending ReadEeprom block (Address: $0310, Count: $10)
- Sending ReadEeprom block (Address: $0320, Count: $10)
- Sending ReadEeprom block (Address: $0330, Count: $10)
- Sending ReadEeprom block (Address: $0340, Count: $10)
- Sending ReadEeprom block (Address: $0350, Count: $10)
- Sending ReadEeprom block (Address: $0360, Count: $10)
- Sending ReadEeprom block (Address: $0370, Count: $10)
- Sending ReadEeprom block (Address: $0380, Count: $10)
- Sending ReadEeprom block (Address: $0390, Count: $10)
- Sending ReadEeprom block (Address: $03A0, Count: $10)
- Sending ReadEeprom block (Address: $03B0, Count: $10)
- Sending ReadEeprom block (Address: $03C0, Count: $10)
- Sending ReadEeprom block (Address: $03D0, Count: $10)
- Sending ReadEeprom block (Address: $03E0, Count: $10)
- Sending ReadEeprom block (Address: $03F0, Count: $10)
- Sending ReadEeprom block (Address: $0400, Count: $10)
- Sending ReadEeprom block (Address: $0410, Count: $10)
- Sending ReadEeprom block (Address: $0420, Count: $10)
- Sending ReadEeprom block (Address: $0430, Count: $10)
- Sending ReadEeprom block (Address: $0440, Count: $10)
- Sending ReadEeprom block (Address: $0450, Count: $10)
- Sending ReadEeprom block (Address: $0460, Count: $10)
- Sending ReadEeprom block (Address: $0470, Count: $10)
- Sending ReadEeprom block (Address: $0480, Count: $10)
- Sending ReadEeprom block (Address: $0490, Count: $10)
- Sending ReadEeprom block (Address: $04A0, Count: $10)
- Sending ReadEeprom block (Address: $04B0, Count: $10)
- Sending ReadEeprom block (Address: $04C0, Count: $10)
- Sending ReadEeprom block (Address: $04D0, Count: $10)
- Sending ReadEeprom block (Address: $04E0, Count: $10)
- Sending ReadEeprom block (Address: $04F0, Count: $10)
- Sending ReadEeprom block (Address: $0500, Count: $10)
- Sending ReadEeprom block (Address: $0510, Count: $10)
- Sending ReadEeprom block (Address: $0520, Count: $10)
- Sending ReadEeprom block (Address: $0530, Count: $10)
- Sending ReadEeprom block (Address: $0540, Count: $10)
- Sending ReadEeprom block (Address: $0550, Count: $10)
- Sending ReadEeprom block (Address: $0560, Count: $10)
- Sending ReadEeprom block (Address: $0570, Count: $10)
- Sending ReadEeprom block (Address: $0580, Count: $10)
- Sending ReadEeprom block (Address: $0590, Count: $10)
- Sending ReadEeprom block (Address: $05A0, Count: $10)
- Sending ReadEeprom block (Address: $05B0, Count: $10)
- Sending ReadEeprom block (Address: $05C0, Count: $10)
- Sending ReadEeprom block (Address: $05D0, Count: $10)
- Sending ReadEeprom block (Address: $05E0, Count: $10)
- Sending ReadEeprom block (Address: $05F0, Count: $10)
- Sending ReadEeprom block (Address: $0600, Count: $10)
- Sending ReadEeprom block (Address: $0610, Count: $10)
- Sending ReadEeprom block (Address: $0620, Count: $10)
- Sending ReadEeprom block (Address: $0630, Count: $10)
- Sending ReadEeprom block (Address: $0640, Count: $10)
- Sending ReadEeprom block (Address: $0650, Count: $10)
- Sending ReadEeprom block (Address: $0660, Count: $10)
- Sending ReadEeprom block (Address: $0670, Count: $10)
- Sending ReadEeprom block (Address: $0680, Count: $10)
- Sending ReadEeprom block (Address: $0690, Count: $10)
- Sending ReadEeprom block (Address: $06A0, Count: $10)
- Sending ReadEeprom block (Address: $06B0, Count: $10)
- Sending ReadEeprom block (Address: $06C0, Count: $10)
- Sending ReadEeprom block (Address: $06D0, Count: $10)
- Sending ReadEeprom block (Address: $06E0, Count: $10)
- Sending ReadEeprom block (Address: $06F0, Count: $10)
- Sending ReadEeprom block (Address: $0700, Count: $10)
- Sending ReadEeprom block (Address: $0710, Count: $10)
- Sending ReadEeprom block (Address: $0720, Count: $10)
- Sending ReadEeprom block (Address: $0730, Count: $10)
- Sending ReadEeprom block (Address: $0740, Count: $10)
- Sending ReadEeprom block (Address: $0750, Count: $10)
- Sending ReadEeprom block (Address: $0760, Count: $10)
- Sending ReadEeprom block (Address: $0770, Count: $10)
- Sending ReadEeprom block (Address: $0780, Count: $10)
- Sending ReadEeprom block (Address: $0790, Count: $10)
- Sending ReadEeprom block (Address: $07A0, Count: $10)
- Sending ReadEeprom block (Address: $07B0, Count: $10)
- Sending ReadEeprom block (Address: $07C0, Count: $10)
- Sending ReadEeprom block (Address: $07D0, Count: $10)
- Sending ReadEeprom block (Address: $07E0, Count: $10)
- Sending ReadEeprom block (Address: $07F0, Count: $10)
- **********************************************************************
- *** Warning: Some bytes could not be read and were replaced with 0 ***
- **********************************************************************
- Saved EEPROM dump to ora.bin
- Sending EndCommunication block
- Version 0.99.0-beta (https://github.com/gmenounos/kw1281test/releases)
- Args: COM3 10400 17 DumpEeprom 0 2048 ora.bin
- OSVersion: Microsoft Windows NT 10.0.19044.0
- .NET Version: 8.0.6
- Culture: en-US
- Opening serial port COM3
- Sending wakeup message
- Reading sync byte
- Keyword Lsb $01
- Keyword Msb $8A
- Protocol is KW 1281 (8N1)
- ECU: 8D0920932C B5-KOMBIINSTR. VDO D12
- Software Coding 16040, Workshop Code: 00222
- Sending ReadIdent block
- Sending Custom "Read Software Version" blocks
- Sending Custom "Unlock Additional Commands" block
- Cluster did not return software version.
- Unknown cluster software version. EEPROM access will likely fail.
- Sending Custom "Get Access Level" block
- Access level is unknown.
- Sending Custom "Seed request" block
- Sending Custom "Get Access Level" block
- Access level is unknown.
- Failed to unlock cluster.
- Saving EEPROM dump to ora.bin
- Sending ReadEeprom block (Address: $0000, Count: $10)
- Sending ReadEeprom block (Address: $0010, Count: $10)
- Sending ReadEeprom block (Address: $0020, Count: $10)
- Sending ReadEeprom block (Address: $0030, Count: $10)
- Sending ReadEeprom block (Address: $0040, Count: $10)
- Sending ReadEeprom block (Address: $0050, Count: $10)
- Sending ReadEeprom block (Address: $0060, Count: $10)
- Sending ReadEeprom block (Address: $0070, Count: $10)
- Sending ReadEeprom block (Address: $0080, Count: $10)
- Sending ReadEeprom block (Address: $0090, Count: $10)
- Sending ReadEeprom block (Address: $00A0, Count: $10)
- Sending ReadEeprom block (Address: $00B0, Count: $10)
- Sending ReadEeprom block (Address: $00C0, Count: $10)
- Sending ReadEeprom block (Address: $00D0, Count: $10)
- Sending ReadEeprom block (Address: $00E0, Count: $10)
- Sending ReadEeprom block (Address: $00F0, Count: $10)
- Sending ReadEeprom block (Address: $0100, Count: $10)
- Sending ReadEeprom block (Address: $0110, Count: $10)
- Sending ReadEeprom block (Address: $0120, Count: $10)
- Sending ReadEeprom block (Address: $0130, Count: $10)
- Sending ReadEeprom block (Address: $0140, Count: $10)
- Sending ReadEeprom block (Address: $0150, Count: $10)
- Sending ReadEeprom block (Address: $0160, Count: $10)
- Sending ReadEeprom block (Address: $0170, Count: $10)
- Sending ReadEeprom block (Address: $0180, Count: $10)
- Sending ReadEeprom block (Address: $0190, Count: $10)
- Sending ReadEeprom block (Address: $01A0, Count: $10)
- Sending ReadEeprom block (Address: $01B0, Count: $10)
- Sending ReadEeprom block (Address: $01C0, Count: $10)
- Sending ReadEeprom block (Address: $01D0, Count: $10)
- Sending ReadEeprom block (Address: $01E0, Count: $10)
- Sending ReadEeprom block (Address: $01F0, Count: $10)
- Sending ReadEeprom block (Address: $0200, Count: $10)
- Sending ReadEeprom block (Address: $0210, Count: $10)
- Sending ReadEeprom block (Address: $0220, Count: $10)
- Sending ReadEeprom block (Address: $0230, Count: $10)
- Sending ReadEeprom block (Address: $0240, Count: $10)
- Sending ReadEeprom block (Address: $0250, Count: $10)
- Sending ReadEeprom block (Address: $0260, Count: $10)
- Sending ReadEeprom block (Address: $0270, Count: $10)
- Sending ReadEeprom block (Address: $0280, Count: $10)
- Sending ReadEeprom block (Address: $0290, Count: $10)
- Sending ReadEeprom block (Address: $02A0, Count: $10)
- Sending ReadEeprom block (Address: $02B0, Count: $10)
- Sending ReadEeprom block (Address: $02C0, Count: $10)
- Sending ReadEeprom block (Address: $02D0, Count: $10)
- Sending ReadEeprom block (Address: $02E0, Count: $10)
- Sending ReadEeprom block (Address: $02F0, Count: $10)
- Sending ReadEeprom block (Address: $0300, Count: $10)
- Sending ReadEeprom block (Address: $0310, Count: $10)
- Sending ReadEeprom block (Address: $0320, Count: $10)
- Sending ReadEeprom block (Address: $0330, Count: $10)
- Sending ReadEeprom block (Address: $0340, Count: $10)
- Sending ReadEeprom block (Address: $0350, Count: $10)
- Sending ReadEeprom block (Address: $0360, Count: $10)
- Sending ReadEeprom block (Address: $0370, Count: $10)
- Sending ReadEeprom block (Address: $0380, Count: $10)
- Sending ReadEeprom block (Address: $0390, Count: $10)
- Sending ReadEeprom block (Address: $03A0, Count: $10)
- Sending ReadEeprom block (Address: $03B0, Count: $10)
- Sending ReadEeprom block (Address: $03C0, Count: $10)
- Sending ReadEeprom block (Address: $03D0, Count: $10)
- Sending ReadEeprom block (Address: $03E0, Count: $10)
- Sending ReadEeprom block (Address: $03F0, Count: $10)
- Sending ReadEeprom block (Address: $0400, Count: $10)
- Sending ReadEeprom block (Address: $0410, Count: $10)
- Sending ReadEeprom block (Address: $0420, Count: $10)
- Sending ReadEeprom block (Address: $0430, Count: $10)
- Sending ReadEeprom block (Address: $0440, Count: $10)
- Sending ReadEeprom block (Address: $0450, Count: $10)
- Sending ReadEeprom block (Address: $0460, Count: $10)
- Sending ReadEeprom block (Address: $0470, Count: $10)
- Sending ReadEeprom block (Address: $0480, Count: $10)
- Sending ReadEeprom block (Address: $0490, Count: $10)
- Sending ReadEeprom block (Address: $04A0, Count: $10)
- Sending ReadEeprom block (Address: $04B0, Count: $10)
- Sending ReadEeprom block (Address: $04C0, Count: $10)
- Sending ReadEeprom block (Address: $04D0, Count: $10)
- Sending ReadEeprom block (Address: $04E0, Count: $10)
- Sending ReadEeprom block (Address: $04F0, Count: $10)
- Sending ReadEeprom block (Address: $0500, Count: $10)
- Sending ReadEeprom block (Address: $0510, Count: $10)
- Sending ReadEeprom block (Address: $0520, Count: $10)
- Sending ReadEeprom block (Address: $0530, Count: $10)
- Sending ReadEeprom block (Address: $0540, Count: $10)
- Sending ReadEeprom block (Address: $0550, Count: $10)
- Sending ReadEeprom block (Address: $0560, Count: $10)
- Sending ReadEeprom block (Address: $0570, Count: $10)
- Sending ReadEeprom block (Address: $0580, Count: $10)
- Sending ReadEeprom block (Address: $0590, Count: $10)
- Sending ReadEeprom block (Address: $05A0, Count: $10)
- Sending ReadEeprom block (Address: $05B0, Count: $10)
- Sending ReadEeprom block (Address: $05C0, Count: $10)
- Sending ReadEeprom block (Address: $05D0, Count: $10)
- Sending ReadEeprom block (Address: $05E0, Count: $10)
- Sending ReadEeprom block (Address: $05F0, Count: $10)
- Sending ReadEeprom block (Address: $0600, Count: $10)
- Sending ReadEeprom block (Address: $0610, Count: $10)
- Sending ReadEeprom block (Address: $0620, Count: $10)
- Sending ReadEeprom block (Address: $0630, Count: $10)
- Sending ReadEeprom block (Address: $0640, Count: $10)
- Sending ReadEeprom block (Address: $0650, Count: $10)
- Sending ReadEeprom block (Address: $0660, Count: $10)
- Sending ReadEeprom block (Address: $0670, Count: $10)
- Sending ReadEeprom block (Address: $0680, Count: $10)
- Sending ReadEeprom block (Address: $0690, Count: $10)
- Sending ReadEeprom block (Address: $06A0, Count: $10)
- Sending ReadEeprom block (Address: $06B0, Count: $10)
- Sending ReadEeprom block (Address: $06C0, Count: $10)
- Sending ReadEeprom block (Address: $06D0, Count: $10)
- Sending ReadEeprom block (Address: $06E0, Count: $10)
- Sending ReadEeprom block (Address: $06F0, Count: $10)
- Sending ReadEeprom block (Address: $0700, Count: $10)
- Sending ReadEeprom block (Address: $0710, Count: $10)
- Sending ReadEeprom block (Address: $0720, Count: $10)
- Sending ReadEeprom block (Address: $0730, Count: $10)
- Sending ReadEeprom block (Address: $0740, Count: $10)
- Sending ReadEeprom block (Address: $0750, Count: $10)
- Sending ReadEeprom block (Address: $0760, Count: $10)
- Sending ReadEeprom block (Address: $0770, Count: $10)
- Sending ReadEeprom block (Address: $0780, Count: $10)
- Sending ReadEeprom block (Address: $0790, Count: $10)
- Sending ReadEeprom block (Address: $07A0, Count: $10)
- Sending ReadEeprom block (Address: $07B0, Count: $10)
- Sending ReadEeprom block (Address: $07C0, Count: $10)
- Sending ReadEeprom block (Address: $07D0, Count: $10)
- Sending ReadEeprom block (Address: $07E0, Count: $10)
- Sending ReadEeprom block (Address: $07F0, Count: $10)
- **********************************************************************
- *** Warning: Some bytes could not be read and were replaced with 0 ***
- **********************************************************************
- Saved EEPROM dump to ora.bin
- Sending EndCommunication block
Advertisement
Add Comment
Please, Sign In to add comment