Git Product home page Git Product logo

pcmhacks's People

Contributors

anthonysymons avatar antuspcm avatar ddub07 avatar dependabot[bot] avatar dzidav8 avatar eagle5x avatar gampyg28 avatar joukoy avatar legacynsfw avatar loud160 avatar patrickmcquay avatar tazzi3 avatar turbo-v6 avatar zack4200 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pcmhacks's Issues

False negatives for the OS checksum

The OS checksum needs to exclude the parameter and calibration ranges. It currently doesn't exclude them, and a quirk of the checksum math enables it to give true positive results, but at the risk of false negatives.

If the parameter and calibration blocks have valid checksums, the app can still check for a valid OS checksum.

But, if the parameter or calibration blocks have invalid checksums, the app will report an invalid checksum for the OS as well, even if the OS blocks are actually valid.

Updated seedkey lookup

This has been tested, but I have not tested it in the main program, i made my best attempt at implementing it using just this file. It converts from algo "01" to algo "13". I am pretty sure the 0411 uses algo 13 but i might be off 1 or 2 as algo 0 is valid.

KeyAlgorithm.txt

Seed/Key Algo

Hi,
There is nothing wrong with the 0x934D - byteswap(seed). It's because the calculator you're using (http://www.calculator.net/hex-calculator.html) is showing signed values not unsigned (showing negative values).

You should be using uint16 in your code (Unsigned 16bit Integer) and the value will roll. You can see this if you fire up Windows Calculator and do the hex calc. The result will be 0xFFFFFFFFFFFFA6D6 which in uint16 is 0xA6D6

Or use this (http://calc.penjee.com/) and set it to 16 bit and unsigned it will be correct

        static void Main(string[] args)
        {
            UInt16 seed = UInt16.Parse(args[0], System.Globalization.NumberStyles.HexNumber);
            UInt16 key = 0x934D; //Initial Value
            seed = (UInt16)((seed << 8) + (seed >> 8)); //Byteswap
            key -= seed;
            Console.WriteLine(key.ToString("X4"));
        }

Think you might find some of the keys are wrong though but works on most with your algo as its not 100% correct ;)

Use the STPX command

In the ScanToolDeviceImplementation code, the SendMessage member function has two code paths. The path currently being used sends messages using the standard ELM approach. The other path uses the STPX command, which should be better.

I briefly tried to get STPX working, and though I didn't much much luck. However since I think it would be better, I kept that code in the main branch, just dormant, as a reminder.

/Apps/PcmLibrary/Devices/ScanToolDeviceImplementation.cs

In theory the STPX command will allow longer messages to be sent (speeding up writes). It should also reduce (eliminate?) the amount of time that the device waits for incoming messages, because one of the parameters tells it how many messages to wait for. In most cases, that number can just be 1.

If there are cases that would require more than one response to a message, we should add a SendMessageAwaitResponses function that takes a message-count parameter. I don't like the idea of adding a message-count parameter to SendMessage though - in almost all cases we only expect zero or one responses, so let's keep it focused on that kind of usage.

J2534 Max and Min Packet Sizes

As part of the J2534-2 compliance, there is an option to request a J2534 scantools maximum packet sizes along with alot of other tool specific information.

This should help resolve current and future tool support and dynamically set packet sizes.

Issue here, if the tool does not support J2534-2, so possibly have a defaulted smaller packet size? Thoughts?

Crash when trying to CRC segments of an invalid file

If a P01 file is accidentally chosen for a flash in to a P59 computer, we get a crash at the local file CRC gathering stage. We might need to protect against that in the crc routine, or add a pre-flight check when doing a write that the file has the correct size before attempting to check CRCs. The error message also assumes the flash has begun, which it has not.

> [05:40:25:891]  Calculating CRCs from file...
> [05:40:25:964]  Something went wrong. Index was outside the bounds of the array.
> [05:40:25:970]  Do not power off the PCM! Do not exit this program!
> [05:40:25:976]  Try flashing again. If errors continue, seek help online.
> [05:40:25:982]  https://pcmhacking.net/forums/viewtopic.php?f=42&t=6080
> [05:40:25:988]  
> [05:40:25:999]  System.IndexOutOfRangeException: Index was outside the bounds of the array.
>    at PcmHacking.Crc.GetCrc(Byte[] buffer, UInt32 start, UInt32 length)
>    at PcmHacking.CKernelVerifier.GetCrcFromImage()
>    at PcmHacking.CKernelVerifier.<CompareRanges>d__7.MoveNext()
> --- End of stack trace from previous location where exception was thrown ---
>    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
>    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
>    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
>    at PcmHacking.CKernelWriter.<Write>d__6.MoveNext()
> --- End of stack trace from previous location where exception was thrown ---
>    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
>    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
>    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
>    at PcmHacking.CKernelWriter.<Write>d__5.MoveNext()
> [05:40:26:022]  Elapsed time 00:00:00.3340755

CanBus Talk

Any Intrest in adding CANBus to the project or no

recovery mode works but not as designed

It looks like the recovery mode detection is failing to detect recovery mode, but the flash proceeds as we fall through to the default of carry on anyway. We could clean this up and log that a recovery flash is happening on the main tab.

[05:54:38:480]  Checking for recovery mode...
[05:54:38:534]  TX: 6C 10 F0 62
[05:54:38:568]  RX: 6C F0 10 A2 00
[05:54:38:572]  TX: 6C 10 F0 62
[05:54:38:768]  RX: 6C F0 10 A2 00
[05:54:38:771]  TX: 6C 10 F0 62
[05:54:38:968]  RX: 6C F0 10 A2 00
[05:54:38:971]  TX: 6C 10 F0 62
[05:54:39:168]  RX: 6C F0 10 A2 00
[05:54:39:170]  TX: 6C 10 F0 62
[05:54:39:368]  RX: 6C F0 10 A2 00
[05:54:39:371]  TX: 6C 10 F0 62
[05:54:39:568]  RX: 6C F0 10 A2 00
[05:54:39:571]  TX: 6C 10 F0 62
[05:54:39:768]  RX: 6C F0 10 A2 00
[05:54:39:770]  TX: 6C 10 F0 62
[05:54:39:968]  RX: 6C F0 10 A2 00
[05:54:39:970]  TX: 6C 10 F0 62
[05:54:40:169]  RX: 6C F0 10 A2 00
[05:54:40:171]  TX: 6C 10 F0 62
[05:54:40:369]  RX: 6C F0 10 A2 00
[05:54:40:371]  PCM is not responding to OSID, kernel version, or recovery mode checks.
[05:54:40:374]  Unlock may not work, but we'll try...
[05:54:40:377]  Suppressing VPW chatter.
[05:54:40:380]  TX: 6C FE F0 28 00
[05:54:40:384]  Sending 'test device present' notification.
[05:54:40:387]  TX: 8C FE F0 3F
[05:54:40:445]  Sending seed request.
[05:54:40:447]  TX: 6C 10 F0 27 01
[05:54:40:462]  RX: 6C F0 10 67 01 00 00
[05:54:40:465]  Parsing seed value.
[05:54:40:468]  PCM Unlock not required

PCM Logger won't log, but PCM Hammer will read and flash

I was able to use PCM Hammer to make changes to my 02 Corvettes ECU, as I've had someone in the past tune my car and turn off a lot of things in the transmission. Now I'm trying to log but I can't seem to do that. I can get it to detect my OBDLink SX but once I try to log it doesn't. I got PCM Logger off the Microsoft store, so I don't know of any other source to get it.

This is the USB OBD tool I'm using to try and log. I'm not sure if there's a log file that I can upload that shows this problem.
https://www.amazon.com/dp/B005ZWM0R4?psc=1&ref=ppx_yo2ov_dt_b_product_details

Godiag nano compatibility

Has there been any information on godiag nano working on either 1x or 4x? Up to this point I can connect to PO1 411 pcm and see the osid etc. No problems there. If I read the entire pcm, it hangs up and errors after it unlocks and sets 4x speed. It will not upload and tines out after this. I have some log files I can upload in a bit

nexiq usb link 2 kernel issues

im new to automotive but experienced with heavy duty j1939 and j1708. i am attempting to put a lq4 6.0 im my e 60 bmw. i am having issues uploading the kernal to the pcm.
i could go on and on but here is the log. any help would be great
neqix usb link 2. with obd2 adapter for a vovlo/ mack. (im thinking this hay be the issue

pcm blue plug
[11:38:44:056] PCM Hammer 020
[11:38:44:059] Initializing J2534 Device
[11:38:44:062] DLL already loaded, unloading before proceeding
[11:38:49:331] Existing DLL successfully unloaded.
[11:38:49:336] Loaded DLL
[11:38:49:377] Connected to the device.
[11:38:49:381] Battery Voltage is: 11.9
[11:38:49:452] Protocol Set
[11:38:49:454] Device initialization complete.
[11:39:05:874] Will save to C:\Users\DieselMoney\Desktop\PcmHammer020\og bmw.bin
[11:39:16:028] Querying operating system of current PCM.
[11:39:16:038] TX: 6C 10 F0 3C 0A
[11:39:16:064] RX: 6C F0 10 7C 0A 00 BF F2 4D
[11:39:16:066] OSID: 12579405
[11:39:16:074] Suppressing VPW chatter.
[11:39:16:076] TX: 6C FE F0 28 00
[11:39:16:085] Sending 'test device present' notification.
[11:39:16:087] TX: 8C FE F0 3F
[11:39:18:094] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[11:39:18:207] Sending seed request.
[11:39:18:208] TX: 6C 10 F0 27 01
[11:39:18:229] RX: 6C F0 10 67 01 19 F3
[11:39:18:230] Parsing seed value.
[11:39:18:231] Sending unlock request (19F3, A034)
[11:39:18:232] TX: 6C 10 F0 27 02 A0 34
[11:39:18:254] RX: 6C F0 10 67 02 34
[11:39:18:255] Unlock succeeded.
[11:39:18:259] Sending 'test device present' notification.
[11:39:18:259] TX: 8C FE F0 3F
[11:39:18:268] Attempting switch to VPW 4x
[11:39:18:273] TX: 6C FE F0 A0
[11:39:18:291] RX: 6C F0 10 E0 AA
[11:39:18:292] Parsing 6C F0 10 E0 AA
[11:39:18:293] Module 0x10 (engine controller) has agreed to enter high-speed mode.
[11:39:18:298] Sending 'test device present' notification.
[11:39:18:299] TX: 8C FE F0 3F
[11:39:20:416] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[11:39:20:417] Sending 'test device present' notification.
[11:39:20:418] TX: 8C FE F0 3F
[11:39:20:425] TX: 6C FE F0 A1
[11:39:22:434] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[11:39:22:435] J2534 setting VPW 4X
[11:39:22:558] Sending 'test device present' notification.
[11:39:22:559] TX: 8C FE F0 3F
[11:39:22:560] Sending 'test device present' notification.
[11:39:22:561] TX: 8C FE F0 3F
[11:39:22:563] Loaded C:\Program Files\WindowsApps\32430NSFW.PCMHammerBeta_20.0.3.0_neutral__05a2d7v89m7fp\PcmHammer\kernel.bin
[11:39:22:565] Sending upload request for kernel size 7882, loadaddress FF8000
[11:39:22:566] Requesting permission to upload kernel.
[11:39:22:574] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:576] Unable to send upload request message. Attempt #1
[11:39:22:577] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:578] Unable to send upload request message. Attempt #2
[11:39:22:579] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:579] Unable to send upload request message. Attempt #3
[11:39:22:580] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:581] Unable to send upload request message. Attempt #4
[11:39:22:582] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:583] Unable to send upload request message. Attempt #5
[11:39:22:584] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:585] Unable to send upload request message. Attempt #6
[11:39:22:586] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:587] Unable to send upload request message. Attempt #7
[11:39:22:588] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:589] Unable to send upload request message. Attempt #8
[11:39:22:590] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:591] Unable to send upload request message. Attempt #9
[11:39:22:592] TX: 6C 10 F0 34 00 10 00 FF 80 00
[11:39:22:594] Unable to send upload request message. Attempt #10
[11:39:22:595] Failed to upload kernel to PCM
[11:39:22:603] Halting the kernel.
[11:39:22:604] TX: 6C 10 F0 20
[11:39:22:605] J2534 setting VPW 1X
[11:39:22:677] TX: 6C 10 F0 20
[11:39:22:779] Clearing trouble codes.
[11:39:23:040] TX: 68 6A F0 04
[11:39:23:312] TX: 68 6A F0 04
[11:39:23:584] TX: 8C FE F0 14
[11:39:23:856] TX: 8C FE F0 14
[11:39:23:866] Elapsed time 00:00:05.6065389
[11:39:23:873] Read failed, Error

eml327

hi this isnt a issue but was wondering if you guys ever got it to work with elm327 cables and if not im willing to help also where can i buy these other cables ect

App may hang if you press cancel while PCM is in recovery mode

Seen with ELM-based devices, may or may not affect others.

The first loop in ElmDeviceImplementation.ReadElmLine doesn't check for \r characters. If the PCM is in recovery mode it will loop until the buffer is full, receiving the PCM's recovery-mode pings. This can take a very long time, and the app just appears hung.

Not sure what the side effects would be, though. Subsequent calls to ReadElmLine may or may not just pick up the read of the buffered messages. This would need a lot of testing.

Change order in which blocks are erased and rewritten

The current approach works, but a different approach would be more resilient to interuptions.

The guidance below is from PeteS / Loud160 (of LS Droid fame).

write the boot block 1st and then write the next higher chip segment increasing until you get to the end. The last segment of the chip should be the last thing you write.

For calibration you should write the the $8000 range 1st and then the upper block after that.
if you write the boot block and the rest of the PCM is blank the PCM will still boot and can be flashed over the DLC.

so once the boot block is written the PCM will be able to boot at any point regardless of how much of the chip is flashed.

This is assuming you erase the entire chip in 1 pass. If you have 1/2 of 1 OS and 1/2 of another it's not gonna boot.

But if you wipe the entire chip and write just the boot block your fine

srv#12576106 hw#12570558 Permission to upload kernel was denied

I have a PCM from an '03 yukon with flex fuel (srv#12576106 hw#12570558) and when I tried to read it I recieved "Permission to upload kernel was denied".

Shouldn't this PCM be supported?

If I can help in any way let me know, I have a bench harness and a BDM interface on the way, I'm new to this as of last saturday, but I am rapidly educating myself after bricking my factory original PCM with HP tuners.

For a sanity check, I have a 411 PCM as well and was able to read it with PCM hammer without issue. I'm using a VXdiag nano gds2 interface.

any guidance would be amazing!

cheers!

unable to reconnect obd link lx

pcm opens and will not let me chose which serial port, the click down comes up and it no longer has any options to choose from, any help? im trying to use my obdlink LX

Issue with the 12587603 - 2004 1mb - BETA.XDF file

Not sure if I should be starting an issue for something as small as this?
Working with the 12587603 - 2004 1mb - BETA.XDF file and I found a small issue..

In the P0128 Action section of this file it shows P0128 action address as 0x18B3E . This is incorrect, this location is for enable/disable of the DTC. This should be either a zero or a one.. It is shown correctly in the set/unset of P0128..

The P0128 Action address should be 0x18A38 . Once changed to that it works fine..

Don't store port choice until after a successful operation

Right now the app stores the device type and serial port name as soon as the user closes the device-picker dialog box.

Something about ObdLink and/or Windows has corrupted ObdLink LX serial ports at the OS level, so the app hangs if you pick one. Then you kill the app and restart it, and it hangs again because it tries to use the same broken serial port.

After selecting a port, or closing the dialog box, the app should try to do a simple operation, like an OSID query, and only store the settings if the operation succeeds. That way if the serial port hangs the process, the app will restart with the old configuration (no config, or a working configuration) so the user can try a different port after they kill it and restart it.

Picture of just how broken things are when the app gets hung by a broken serial port:

image

MainForm.ParameterGrid.cs line 80 assumes that ID will be unique

At least, I'm reasonably sure thats where this problem comes from. When I load a profile that contains the wideband AFR via ac pressure parameter, it turns into the plain AC pressure parameter.

I suggest using the name as well, or for a more comprehensive solution, getting rid of the ID attribute and using the location convention that is in the RAM parameters XML. Certain PIDs are only available from certain PCMs, so it makes sense to have that be the way they are looked up as well.

I would be open to doing the work to submit a PR, I just want to talk about the best way to fix that before getting started.

vehicles useing P01 GTP 3800SC

Im doing a motor swap 3800 SC into Lesharo motorhome

My PCM is a Delphi P01, I wonder if I can use PC Hammmer to remove IGN BCM and sterio from the loop so its a standalone

2006 pontiac gtp engine code E32

I have motor and no car so...

03

OBD-II
ECU protocol: 2) SAE J1850 VPW (10.4 kbaud)
ECU address/CAN Id: 10
Calibration Verification Numbers: 0010000FA22A6486B104906020000E765D486B1049060300006E623486B10490604000035CFC486B1049060500007739E486B104906060000BDFAA486B1049060700007FA89486B10490608000063B00
Calibration ID:
1257�±��#�C�Hk�I����d�±�@@���Hk���127d�±�@csc�HkI�����Ô���@���
H�I� 257¤±��@�C3sk�I������±��À���Hk�I
125¤�±�@ãSCRHk������¤�±�A����HkI��1574���A#�CV4±��A����k�I������±��S�#SHk�I�835��±�Ap���Hk������D�±�A��Stä���A£Ss�H�I�����ô±��A����k�I�1257�±��ã#S#Hk�I����D�±�B�������
VIN: HGCET3H317S

Recurring issue with 1x communication and 4x

[05:00:22:712] PCM Hammer 021
[05:00:22:715] Friday, May 05 2023 @05:00:22:71
[05:00:22:717] Initializing J2534 Device
[05:00:22:723] Loaded DLL
[05:00:22:752] Connected to the device.
[05:00:22:754] Battery Voltage is: 14.6
[05:00:22:816] Protocol Set
[05:00:22:818] Device initialization complete.
[05:00:22:895] Loaded start.txt from network.
[05:00:22:897] Thanks for using PCM Hammer.
[05:00:22:904] Loaded help.html from network.
[05:00:22:904] Loaded credits.html from network.
[05:00:25:800] TX: 6C 10 F0 3C 01
[05:00:25:823] RX: 6C F0 10 7C 01 00 31 47 59 45 4B
[05:00:25:823] TX: 6C 10 F0 3C 02
[05:00:25:845] RX: 6C F0 10 7C 02 36 33 4E 31 32 52
[05:00:25:846] TX: 6C 10 F0 3C 03
[05:00:25:870] RX: 6C F0 10 7C 03 31 38 39 31 30 31
[05:00:25:872] VIN: 1GYEK63N12R189101
[05:00:25:875] TX: 6C 10 F0 3C 0A
[05:00:25:894] RX: 6C F0 10 7C 0A 00 BA 57 BC
[05:00:25:895] OS ID: 12212156
[05:00:25:899] Hardware Type: P01_P59
[05:00:25:901] TX: 6C 10 F0 3C 08
[05:00:25:931] RX: 6C F0 10 7C 08 00 BA 58 CF
[05:00:25:931] Calibration ID: 12212431
[05:00:25:934] TX: 6C 10 F0 3C 04
[05:00:25:955] RX: 6C F0 10 7C 04 00 8F 3A 22
[05:00:25:956] Hardware ID: 9386530
[05:00:25:959] TX: 6C 10 F0 3C 05
[05:00:25:979] RX: 6C F0 10 7C 05 32 45 42 32
[05:00:25:981] TX: 6C 10 F0 3C 06
[05:00:26:005] RX: 6C F0 10 7C 06 36 37 4B 33
[05:00:26:006] TX: 6C 10 F0 3C 07
[05:00:26:029] RX: 6C F0 10 7C 07 31 33 31 31
[05:00:26:032] Serial Number: 2EB267K31311
[05:00:26:036] TX: 6C 10 F0 3C 14
[05:00:26:054] RX: 6C F0 10 7C 14 44 4D 4E 50
[05:00:26:055] Broad Cast Code: DMNP
[05:00:26:057] TX: 6C 10 F0 3C A0
[05:00:26:078] RX: 6C F0 10 7C A0 00
[05:00:26:078] MEC: 0
[05:00:34:317] Will save to C:\Users\15712\Documents\PcmHammer021\PcmHammer021\lq9.bin
[05:00:36:101] Querying operating system of current PCM.
[05:00:36:104] TX: 6C 10 F0 3C 0A
[05:00:36:131] RX: 6C F0 10 7C 0A 00 BA 57 BC
[05:00:36:132] OSID: 12212156
[05:00:36:135] Suppressing VPW chatter.
[05:00:36:136] TX: 6C FE F0 28 00
[05:00:36:145] Sending 'test device present' notification.
[05:00:36:145] TX: 8C FE F0 3F
[05:00:36:157] RX: 6C F0 10 68 00
[05:00:36:158] Ignoring chatter: 6C F0 10 68 00
[05:00:36:160] Sending seed request.
[05:00:36:160] TX: 6C 10 F0 27 01
[05:00:36:180] RX: 6C F0 10 67 01 1B E4
[05:00:36:181] Parsing seed value.
[05:00:36:185] Sending unlock request (1BE4, AF32)
[05:00:36:186] TX: 6C 10 F0 27 02 AF 32
[05:00:36:216] RX: 6C F0 10 67 02 34
[05:00:36:217] Unlock succeeded.
[05:00:36:223] Sending 'test device present' notification.
[05:00:36:223] TX: 8C FE F0 3F
[05:00:36:230] 4X communications disabled by configuration.
[05:00:36:233] Sending 'test device present' notification.
[05:00:36:234] TX: 8C FE F0 3F
[05:00:36:245] Loaded C:\Users\15712\Documents\PcmHammer021\PcmHammer021\Kernel-P01.bin
[05:00:36:248] Sending upload request for kernel size 7890, loadaddress FF8000
[05:00:36:250] TX: 6C 10 F0 34 00 10 00 FF 80 00
[05:00:36:277] RX: 6C F0 10 74 00 44
[05:00:36:279] Going to load a 7890 byte kernel to 0xFF8000
[05:00:36:279] Sending end block payload with offset 0x1800, start address 0xFF9800, length 0x6D2.
[05:00:36:342] TX: 6D 10 F0 36 00 06 D2 FF 98 00 E5 8A 20 42 D0 88 24 00 E5 8A 20 42 D0 88 24 01 94 80 20 02 72 01 B2 80 66 06 4E B9 00 FF 8B DC 20 2F 00 1A 24 2F 00 10 D4 80 2F 42 00 0A 22 2F 00 0A 70 0A D0 AF 00 1A 10 30 09 B0 00 FF 9E D6 20 41 10 80 52 AF 00 1A 20 2F 00 1A B0 AF 00 14 65 90 42 80 10 2F 00 19 2F 00 4E BA FD 0C 58 8F 0C 2F FF 80 00 19 66 10 2F 6F 00 10 00 06 20 2F 00 06 20 40 4E 90 60 5E 60 5C 0C 2F 00 44 00 19 57 C0 44 00 10 00 02 80 00 00 00 FF 2F 00 48 79 00 FF 9E E0 2F 2F 00 18 2F 2F 00 20 4E B9 00 FF 87 2E 50 8F 50 8F 1F 40 00 05 4A 2F 00 05 66 10 42 80 10 2F 00 19 2F 00 4E BA FC AE 58 8F 60 16 10 2F 00 05 10 00 02 80 00 00 00 FF 2F 00 42 A7 4E BA FC E4 50 8F 24 1F 4F EF 00 20 4E 75 00 00 59 8F 20 2F 00 08 1F 40 00 02 20 3C 00 FF FA 48 20 40 30 BC 00 07 20 3C 00 FF FA 4A 20 40 30 BC 68 20 20 3C 00 FF FA 4C 20 40 30 BC 00 07 4A 2F 00 02 67 26 20 3C 00 FF FA 4E 20 40 30 BC 70 60 20 3C FF FF E2 FA 22 3C FF FF E2 FA 20 41 32 10 00 41 00 01 20 40 30 81 60 24 20 3C 00 FF FA 4E 20 40 30 BC 10 60 20 3C FF FF E2 FA 22 3C FF FF E2 FA 20 41 32 10 02 41 FF FE 20 40 30 81 48 78 00 50 4E B9 00 FF 8C 74 58 8F 58 8F 4E 75 59 8F 20 3C 00 FF FA 4C 20 40 30 BC 00 07 20 3C 00 FF FA 4A 20 40 30 BC 68 20 20 3C 00 FF FA 4E 20 40 30 BC 70 60 42 80 20 40 30 BC 90 90 42 80 20 40 2E 90 42 80 20 40 30 BC FF FF 20 3C 00 FF FA 4E 20 40 30 BC 10 60 20 17 58 8F 4E 75 51 8F 59 8F 42 6F 00 0A 48 78 00 01 4E BA FF 16 58 8F 2F 6F 00 10 00 02 20 2F 00 02 20 40 30 BC 50 50 20 2F 00 02 20 40 30 BC 20 20 20 2F 00 02 20 40 30 BC D0 D0 20 2F 00 02 20 40 30 BC 70 70 42 AF 00 06 60 26 4E B9 00 FF 8B DC 20 2F 00 02 20 40 3F 50 00 0A 42 80 30 2F 00 0A 72 7F 46 01 C0 81 4A 80 67 02 60 0E 52 AF 00 06 0C AF 00 63 FF FF 00 06 6F D0 02 6F 00 E8 00 0A 20 2F 00 02 20 40 30 BC FF FF 20 2F 00 02 20 40 30 BC FF FF 42 A7 4E BA FE 90 58 8F 0C 6F 00 80 00 0A 66 04 42 6F 00 0A 30 2F 00 0A 10 00 50 8F 58 8F 4E 75 4F EF FF E0 42 2F 00 1F 4A AF 00 30 66 0A 48 78 00 01 4E BA FE 60 58 8F 2F 6F 00 2C 00 0E 2F 6F 00 28 00 0A 42 AF 00 18 60 00 00 D8 20 2F 00 18 D0 80 22 2F 00 0A D2 80 2F 41 00 06 20 2F 00 18 D0 80 D0 AF 00 0E 20 40 3F 50 00 04 4A AF 00 30 66 28 20 2F 00 06 20 40 30 BC 50 50 20 2F 00 06 20 40 30 BC 40 40 20 2F 00 06 20 40 30 AF 00 04 20 2F 00 06 20 40 30 BC 70 70 42 2F 00 17 42 AF 00 12 60 3A 4A AF 00 30 67 08 3F 7C 00 80 00 1C 60 0A 20 2F 00 06 20 40 3F 50 00 1C 4E B9 00 FF 8B DC 42 80 30 2F 00 1C 72 7F 46 01 C0 81 4A 80 67 08 1F 7C 00 01 00 17 60 0E 52 AF 00 12 0C AF 00 00 0F FF 00 12 6F BC 4A 2F 00 17 66 30 30 2F 00 1C 1F 40 00 1F 4A AF 00 30 66 1C 20 2F 00 06 20 40 30 BC FF FF 20 2F 00 06 20 40 30 BC FF FF 42 A7 4E BA FD 80 58 8F 10 2F 00 1F 60 54 52 AF 00 18 20 2F 00 24 E2 88 B0 AF 00 18 62 00 FF 1E 4A AF 00 30 66 1C 2E AF 00 28 20 17 20 40 30 BC FF FF 20 17 20 40 30 BC FF FF 42 A7 4E BA FD 46 58 8F 42 80 30 2F 00 1C 72 67 46 01 C0 81 0C 80 00 00 00 80 67 08 30 2F 00 1C 1F 40 00 1F 10 2F 00 1F 4F EF 00 20 4E 75 51 8F 2F 02 20 3C 00 FF FA 4C 20 40 30 BC 00 07 20 3C 00 FF FA 4A 20 40 30 BC 68 20 20 3C 00 FF FA 4E 20 40 30 BC 70 60 20 3C 00 00 0A AA 20 40 30 BC AA AA 20 3C 00 00 05 54 20 40 30 BC 55 55 20 3C 00 00 0A AA 20 40 30 BC 90 90 42 80 20 40 3F 50 00 0A 70 02 20 40 3F 50 00 08 42 80 30 2F 00 0A 22 00 48 41 42 41 42 80 30 2F 00 08 24 01 84 80 2F 42 00 04 42 80 20 40 30 BC FF FF 20 3C 00 FF FA 4E 20 40 30 BC 10 60 20 2F 00 04 24 1F 50 8F 4E 75 51 8F 51 8F 42 6F 00 0E 2F 6F 00 14 00 06 20 3C 00 FF FA 4E 20 40 30 BC 70 60 20 3C 00 00 0A AA 20 40 30 BC AA AA 20 3C 00 00 05 54 20 40 30 BC 55 55 20 3C 00 00 0A AA 20 40 30 BC 80 80 20 3C 00 00 0A AA 20 40 30 BC AA AA 20 3C 00 00 05 54 20 40 30 BC 55 55 20 2F 00 06 20 40 30 BC 30 30 42 6F 00 04 42 6F 00 02 42 AF 00 0A 60 58 20 2F 00 06 20 40 30 10 32 00 02 41 00 40 3F 41 00 04 4E B9 00 FF 8B DC 20 2F 00 06 20 40 30 10 32 00 02 41 00 40 3F 41 00 02 30 2F 00 02 B0 6F 00 04 66 02 60 2C 20 2F 00 06 20 40 30 10 32 00 02 41 00 20 3E 81 4A 57 66 06 52 AF 00 0A 60 08 3F 7C 00 A0 00 0E 60 0A 0C AF 01 27 FF FF 00 0A 6F 9E 0C 6F 00 A0 00 0E 66 3A 20 2F 00 06 20 40 30 10 32 00 02 41 00 40 3F 41 00 04 20 2F 00 06 20 40 30 10 32 00 02 41 00 40 3F 41 00 02 30 2F 00 02 B0 6F 00 04 67 08 3F 7C 00 B0 00 0E 60 04 42 6F 00 0E 20 2F 00 06 20 40 30 BC F0 F0 20 2F 00 06 20 40 30 BC F0 F0 20 3C 00 FF FA 4E 20 40 30 BC 10 60 30 2F 00 0E 10 00 50 8F 50 8F 4E 75 4F EF FF E0 42 2F 00 15 2F 6F 00 2C 00 10 2F 6F 00 28 00 0C 42 AF 00 1C 60 00 00 E6 20 2F 00 1C D0 80 22 2F 00 0C D2 80 2F 41 00 08 20 2F 00 1C D0 80 D0 AF 00 10 20 40 3F 50 00 06 4A AF 00 30 66 3A 20 3C 00 FF FA 4E 20 40 30 BC 70 60 20 3C 00 00 0A AA 20 40 30 BC AA AA 20 3C 00 00 05 54 20 40 30 BC 55 55 20 3C 00 00 0A AA 20 40 30 BC A0 A0 20 2F 00 08 20 40 30 AF 00 06 42 2F 00 1B 42 AF 00 16 60 34 4E B9 00 FF 8B DC 4A AF 00 30 66 0A 20 2F 00 08 20 40 30 10 60 04 30 2F 00 06 3F 40 00 04 30 2F 00 06 B0 6F 00 04 66 08 1F 7C 00 01 00 1B 60 0E 52 AF 00 16 0C AF 00 00 0F FF 00 16 6F C2 4A 2F 00 1B 66 32 1F 7C FF AA 00 15 4A AF 00 30 66 20 20 2F 00 08 20 40 30 BC F0 F0 20 2F 00 08 20 40 30 BC F0 F0 20 3C 00 FF FA 4E 20 40 30 BC 10 60 10 2F 00 15 60 3A 52 AF 00 1C 20 2F 00 24 E2 88 B0 AF 00 1C 62 00 FF 10 4A AF 00 30 66 20 2E AF 00 28 20 17 20 40 30 BC F0 F0 20 17 20 40 30 BC F0 F0 20 3C 00 FF FA 4E 20 40 30 BC 10 60 42 00 4F EF 00 20 4E 75 FB B2
[05:00:37:740] RX: 6D F0 10 76 00 73
[05:00:37:741] Found response, Success
[05:00:37:741] Kernel upload 22% complete.
[05:00:37:743] Sending block with offset 0x001000, start address 0xFF9000, length 0x0800.
[05:00:37:821] TX: 6D 10 F0 36 00 08 00 FF 90 00 00 08 60 6E 20 3C 00 FF F6 0F 20 40 12 10 20 2F 00 10 20 40 10 81 20 3C 00 FF F6 0C 20 40 10 BC 00 02 4A AF 00 04 66 02 60 48 20 2F 00 10 20 40 10 10 10 00 02 80 00 00 00 FF 72 30 C0 81 4A 80 67 0E 20 2F 00 14 20 40 10 BC 00 02 42 80 60 26 20 2F 00 14 20 40 10 BC 00 01 20 2F 00 04 60 16 4E 71 20 2F 00 14 20 40 10 BC 00 0B 42 80 60 06 4E 71 60 00 FE DA 50 8F 58 8F 4E 75 59 8F 20 2F 00 0C 53 80 2E 80 60 2A 20 17 D0 AF 00 10 22 17 D2 AF 00 08 20 41 12 10 11 81 09 B0 00 FF 9E D6 20 17 02 80 00 00 01 FF 4A 80 66 04 4E BA FB 2E 53 97 4A 97 6C D2 58 8F 4E 75 4E BA FB 98 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 60 00 FF 9E D9 20 2F 00 04 72 18 E2 A8 10 00 13 C0 00 FF 9E DA 20 2F 00 04 02 80 00 FF 00 00 42 40 48 40 10 00 13 C0 00 FF 9E DB 20 2F 00 04 02 80 00 00 FF 00 E0 88 10 00 13 C0 00 FF 9E DC 20 2F 00 04 10 00 13 C0 00 FF 9E DD 48 78 00 05 48 78 00 08 48 79 00 FF 9E D6 4E BA FC 58 50 8F 58 8F 4E BA FB 18 60 FE 51 8F 51 8F 2F 02 22 6F 00 18 20 6F 00 1C 22 2F 00 20 20 2F 00 24 34 09 1F 42 00 0A 34 08 1F 42 00 08 1F 41 00 06 1F 40 00 04 1F 7C FF 8C 00 0C 1F 7C FF FE 00 0D 1F 7C FF F0 00 0E 1F 7C 00 3F 00 0F 1F 6F 00 0A 00 10 1F 6F 00 08 00 11 1F 6F 00 06 00 12 1F 6F 00 04 00 13 48 78 00 05 48 78 00 08 70 14 D0 8F 2F 00 4E BA FB E2 50 8F 58 8F 24 1F 50 8F 50 8F 4E 75 2F 02 20 2F 00 08 10 00 10 00 02 80 00 00 00 FF 22 40 20 2F 00 08 02 80 00 00 FF 00 E0 88 10 00 10 00 02 80 00 00 00 FF 20 40 20 2F 00 08 02 80 00 FF 00 00 42 40 48 40 10 00 42 81 12 00 20 2F 00 08 74 18 E4 A8 10 00 10 00 02 80 00 00 00 FF 2F 09 2F 08 2F 01 2F 00 4E BA FF 2E 50 8F 50 8F 24 1F 4E 75 51 8F 42 6F 00 06 70 04 2F 40 00 02 60 1C 20 2F 00 02 06 80 00 FF 9E D6 20 40 10 10 10 00 02 40 00 FF D1 6F 00 06 52 AF 00 02 70 09 B0 AF 00 02 6C DC 30 2F 00 06 50 8F 4E 75 51 8F 2F 02 4E BA F9 80 42 6F 00 0A 42 AF 00 06 60 56 20 2F 00 06 D0 AF 00 10 20 40 1F 50 00 05 42 40 10 2F 00 05 D1 6F 00 0A 22 2F 00 06 24 01 4C 3C 2C 00 51 EB 85 1F EA 80 24 01 D4 82 95 82 20 42 90 88 E5 88 24 00 E5 8A 20 42 D0 88 24 00 E5 8A 20 42 D0 88 24 01 94 80 20 02 4A 80 66 04 4E BA F9 24 52 AF 00 06 20 2F 00 06 B0 AF 00 14 65 A0 4E BA F9 12 30 2F 00 0A 24 1F 50 8F 4E 75 59 8F 20 2F 00 0C 3F 40 00 02 70 0A D0 AF 00 08 32 2F 00 02 E0 49 12 01 11 81 09 B0 00 FF 9E D6 70 0B D0 AF 00 08 32 2F 00 02 12 01 11 81 09 B0 00 FF 9E D6 58 8F 4E 75 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 42 39 00 FF 9E DA 13 FC 00 01 00 FF 9E DB 13 FC 00 03 00 FF 9E DC 13 FC 00 05 00 FF 9E DD 13 FC 00 01 00 FF 9E DE 4E BA F9 0E 48 78 00 05 48 78 00 09 48 79 00 FF 9E D6 4E BA FA 24 50 8F 58 8F 4E 75 51 8F 10 39 00 FF 9E DB 10 00 02 80 00 00 00 FF 22 00 E1 89 10 39 00 FF 9E DC 10 00 02 80 00 00 00 FF D0 81 2F 40 00 04 10 39 00 FF 9E DD 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DE 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E DF 10 00 02 80 00 00 00 FF D0 81 2E 80 13 FC 00 6D 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 36 00 FF 9E D9 13 FC 00 01 00 FF 9E DA 20 2F 00 04 E0 88 10 00 13 C0 00 FF 9E DB 20 2F 00 04 10 00 13 C0 00 FF 9E DC 20 17 42 40 48 40 10 00 13 C0 00 FF 9E DD 20 17 E0 88 10 00 13 C0 00 FF 9E DE 20 17 10 00 13 C0 00 FF 9E DF 4E B9 00 FF 8C 64 48 78 00 01 48 78 00 0A 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 20 2F 00 04 30 00 30 00 02 80 00 00 FF FF 22 17 48 78 00 0C 2F 00 2F 01 4E B9 00 FF 8D 8C 50 8F 58 8F 50 8F 4E 75 51 8F 10 39 00 FF 9E DB 10 00 02 80 00 00 00 FF 22 00 E1 89 10 39 00 FF 9E DC 10 00 02 80 00 00 00 FF D0 81 2F 40 00 04 10 39 00 FF 9E DD 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DE 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E DF 10 00 02 80 00 00 00 FF D0 81 2E 80 0C AF 00 00 10 00 00 04 63 42 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7F 00 FF 9E D9 13 FC 00 34 00 FF 9E DA 48 78 00 05 48 78 00 05 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 60 3E 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 74 00 FF 9E D9 42 39 00 FF 9E DA 48 78 00 05 48 78 00 05 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 50 8F 4E 75 59 8F 20 2F 00 08 1F 40 00 02 13 FC 00 6D 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 76 00 FF 9E D9 13 EF 00 02 00 FF 9E DA 48 78 00 05 48 78 00 05 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 58 8F 4E 75 59 8F 22 2F 00 08 20 2F 00 0C 1F 41 00 02 1E 80 13 FC 00 6D 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7F 00 FF 9E D9 13 FC 00 36 00 FF 9E DA 13 EF 00 02 00 FF 9E DB 13 D7 00 FF 9E DC 48 78 00 05 48 78 00 07 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 58 8F 4E 75 4F EF FF E0 2F 02 1F 79 00 FF 9E DA 00 19 10 39 00 FF 9E DB 10 00 02 80 00 00 00 FF 22 00 E1 89 10 39 00 FF 9E DC 10 00 02 80 00 00 00 FF D0 81 2F 40 00 14 10 39 00 FF 9E DD 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DE 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E DF 10 00 02 80 00 00 00 FF D0 81 2F 40 00 10 42 6F 00 22 70 04 2F 40 00 1E 60 30 20 2F 00 1E 02 80 00 00 03 FF 4A 80 66 06 4E B9 00 FF 8B DC 20 2F 00 1E 06 80 00 FF 9E D6 20 40 10 10 10 00 02 40 00 FF D1 6F 00 22 52 AF 00 1E 70 0A D0 AF 00 14 B0 AF 00 1E 62 C4 70 0A D0 AF 00 14 10 30 09 B0 00 FF 9E D6 10 00 02 80 00 00 00 FF E1 88 32 00 70 0B D0 AF 00 14 10 30 09 B0 00 FF 9E D6 10 00 02 40 00 FF 80 41 3F 40 00 0E 30 2F 00 0E B0 6F 00 22 67 00 00 94 13 FC 00 6D 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7F 00 FF 9E D9 13 FC 00 36 00 FF 9E DA 30 2F 00 22 E0 48 10 00 13 C0 00 FF 9E DB 30 2F 00 22 10 00 13 C0 00 FF 9E DC 30 2F 00 0E E0 48 10 00 13 C0 00 FF 9E DD 30 2F 00 0E 10 00 13 C0 00 FF 9E DE 20 2F 00 14 E0 88 10 00 13 C0 00 FF 9E DF 20 2F 00 14 10 00 13 C0 00 FF 9E E0 48 78 00 05 48 78 00 0B 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 60 00 01 38 70 01 C0 AF 00 10 4A 80 67 10 42 A7 48 78 00 BB 4E BA FE 04 50 8F 60 00 01 1E 0C AF 00 FF 7F FF 00 10 63 00 00 B6 20 2F 00 10 D0 AF 00 14 0C 80 00 FF CD FF 62 00 00 A4 42 AF 00 0A 42 AF 00 1A 60 66 22 2F 00 1A 24 01 4C 3C 2C 00 51 EB 85 1F E8 80 24 01 D4 82 95 82 20 42 90 88 D0 80 24 00 C6 B2
[05:00:39:433] RX: 6D F0 10 76 00 73
[05:00:39:435] Found response, Success
[05:00:39:435] Kernel upload 48% complete.
[05:00:39:438] Sending block with offset 0x000800, start address 0xFF8800, length 0x0800.
[05:00:39:438] Sending 'test device present' notification.
[05:00:39:438] TX: 8C FE F0 3F
[05:00:39:506] TX: 6D 10 F0 36 00 08 00 FF 88 00 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 00 5E 00 6E 00 78 00 92 01 4E 01 4E 01 4E 01 4E 01 4E 00 B8 01 4E 01 8E 4E B9 00 FF 8C 54 20 2F 00 04 00 80 CC 00 00 00 2F 00 4E B9 00 FF 90 BA 58 8F 60 00 01 34 4E B9 00 FF 94 7A 4E B9 00 FF 8C EC 60 00 01 24 4E B9 00 FF 93 70 60 00 01 1A 10 39 00 FF 9E D6 0C 00 00 6D 66 0A 4E B9 00 FF 96 18 60 00 01 04 60 00 01 00 10 39 00 FF 9E D9 10 00 02 80 00 00 00 FF 42 A7 42 A7 2F 00 48 78 00 B2 4E B9 00 FF 91 40 50 8F 50 8F 60 00 00 DA 10 39 00 FF 9E DA 10 00 02 80 00 00 00 FF 72 03 B2 80 67 42 72 03 B2 80 6D 12 72 01 B2 80 67 2A 72 01 B2 80 6D 2A 4A 80 67 18 60 42 72 05 B2 80 67 2A 72 05 B2 80 6E 5A 0C 80 00 00 00 FF 67 28 60 2C 4E B9 00 FF 93 0E 60 4A 4E BA F9 24 60 44 4E BA F9 EA 60 3E 4E BA FB F0 60 38 4E BA FC 72 4E B9 00 FF 8A 12 60 2C 4E BA FD A0 60 26 10 39 00 FF 9E DA 10 00 02 80 00 00 00 FF 42 A7 42 A7 2F 00 48 78 00 3D 4E B9 00 FF 91 40 50 8F 50 8F 60 02 4E 71 60 42 10 39 00 FF 9E DA 10 00 02 80 00 00 00 FF 20 40 10 39 00 FF 9E D9 42 81 12 00 10 39 00 FF 9E D8 10 00 02 80 00 00 00 FF 2F 08 2F 01 2F 00 48 78 00 AA 4E B9 00 FF 91 40 50 8F 50 8F 4E 71 60 02 4E 71 4E 75 00 00 51 8F 59 8F 42 B9 00 FF B3 52 42 B9 00 FF B3 56 42 B9 00 FF B3 5A 42 B9 00 FF B3 5E 42 AF 00 04 60 5C 4E B9 00 FF 8B DC 20 2F 00 04 72 18 E3 A8 2F 40 00 08 1F 7C 00 08 00 03 60 2A 20 2F 00 08 4A 80 6C 14 20 2F 00 08 D0 80 22 00 0A 81 04 C1 1D B7 2F 41 00 08 60 0A 20 2F 00 08 D0 80 2F 40 00 08 53 2F 00 03 4A 2F 00 03 66 D0 20 2F 00 04 21 AF 00 08 0D B0 00 FF AF 52 52 AF 00 04 0C AF 00 00 00 FF 00 04 6F 9A 50 8F 58 8F 4E 75 42 B9 00 FF B3 52 42 B9 00 FF B3 56 42 B9 00 FF B3 5A 42 B9 00 FF B3 5E 4E 75 51 8F 59 8F 2F 02 42 AF 00 0C 42 AF 00 08 60 52 20 2F 00 18 72 00 46 01 C0 81 4A 80 66 06 4E B9 00 FF 8B DC 20 2F 00 08 D0 AF 00 14 20 40 12 10 20 2F 00 0C 74 18 E4 A8 10 00 14 01 B1 02 1F 42 00 07 42 80 10 2F 00 07 22 30 0D B0 00 FF AF 52 20 2F 00 0C E1 88 24 01 B1 82 2F 42 00 0C 52 AF 00 08 20 6F 00 08 B1 EF 00 18 6D A4 20 2F 00 0C 24 1F 50 8F 58 8F 4E 75 20 39 00 FF B3 52 B0 AF 00 04 67 04 42 80 60 12 20 39 00 FF B3 56 B0 AF 00 08 67 04 42 80 60 02 70 01 4E 75 2F 2F 00 08 2F 2F 00 08 4E BA FF D2 50 8F 4A 80 66 04 42 80 60 12 20 39 00 FF B3 5A B0 AF 00 08 66 04 70 01 60 02 42 80 4E 75 23 EF 00 04 00 FF B3 52 23 EF 00 08 00 FF B3 56 42 B9 00 FF B3 5A 42 B9 00 FF B3 5E 4E 75 20 39 00 FF B3 5E 4E 75 51 8F 59 8F 2F 02 20 39 00 FF B3 56 4A 80 66 04 60 00 00 AA 2F 79 00 FF B3 56 00 0C 2F 7C 00 00 20 00 00 08 20 39 00 FF B3 5A D0 AF 00 08 B0 AF 00 0C 6C 12 20 39 00 FF B3 5A 22 00 D2 AF 00 08 2F 41 00 0C 60 6A 60 68 20 39 00 FF B3 5A 74 00 46 02 C0 82 4A 80 66 06 4E B9 00 FF 8B DC 22 39 00 FF B3 52 20 39 00 FF B3 5A D0 81 20 40 12 10 20 39 00 FF B3 5E 74 18 E4 A8 10 00 14 01 B1 02 1F 42 00 07 42 80 10 2F 00 07 22 30 0D B0 00 FF AF 52 20 39 00 FF B3 5E E1 88 B3 80 23 C0 00 FF B3 5E 20 39 00 FF B3 5A 52 80 23 C0 00 FF B3 5A 20 39 00 FF B3 5A B0 AF 00 0C 6D 8C 24 1F 50 8F 58 8F 4E 75 20 3C 00 FF FA 27 20 40 10 BC 00 55 20 3C 00 FF FA 27 20 40 10 BC FF AA 20 3C 00 FF D0 06 22 3C 00 FF D0 06 20 41 12 10 0A 01 FF 80 20 40 10 81 4E 75 4E 71 4E 71 4E 71 4E 71 4E 75 51 8F 42 AF 00 04 60 26 42 97 60 12 4E 71 4E 71 4E 71 4E 71 4E 71 4E 71 4E 71 4E 71 52 97 20 17 B0 AF 00 10 6D E6 4E BA FF 9C 52 AF 00 04 20 2F 00 04 B0 AF 00 0C 6D D0 50 8F 4E 75 48 78 00 05 48 78 27 10 4E BA FF BA 50 8F 4E 75 48 78 00 32 48 78 00 01 4E BA FF AA 50 8F 4E 75 20 2F 00 04 48 78 00 FA 2F 00 4E BA FF 98 50 8F 4E 75 59 8F 2F 02 42 AF 00 04 60 4C 22 6F 00 04 22 09 4C 3C 1C 00 10 62 4D D3 EA 80 22 09 D2 81 93 81 24 00 94 81 22 02 20 41 20 08 E5 88 20 40 20 08 EB 88 90 88 D0 81 E5 88 22 09 92 80 4A 81 66 04 4E BA FF 14 20 2F 00 04 06 80 00 FF 9E D6 20 40 42 10 52 AF 00 04 0C AF 00 00 10 13 00 04 6F AA 24 1F 58 8F 4E 75 59 8F 42 97 60 0E 20 17 06 80 00 FF AE EA 20 40 42 10 52 97 70 63 B0 97 6C EC 58 8F 4E 75 51 8F 20 2F 00 0C 1E 80 20 3C 00 FF F6 0E 20 40 10 10 12 00 02 01 00 03 1F 41 00 07 42 2F 00 06 60 3A 10 2F 00 06 12 00 52 01 1F 41 00 06 42 AF 00 02 60 08 4E BA FE CE 52 AF 00 02 70 31 B0 AF 00 02 6C F0 4E BA FE 8C 20 3C 00 FF F6 0E 20 40 10 10 12 00 02 01 00 03 1F 41 00 07 0C 2F 00 02 00 07 67 08 0C 2F 00 03 00 07 66 08 0C 2F FF F9 00 06 63 AE 20 3C 00 FF F6 0D 20 40 10 97 50 8F 4E 75 4F EF FF EC 20 2F 00 1C 3F 40 00 02 4E BA FE 42 70 01 C0 AF 00 20 4A 80 67 0C 20 3C 00 FF F6 0C 20 40 10 BC 00 14 70 04 C0 AF 00 20 4A 80 67 08 30 2F 00 02 53 40 60 04 30 2F 00 02 3F 40 00 04 4E BA 04 4E 3F 40 00 10 42 6F 00 0E 60 42 42 80 30 2F 00 0E D0 AF 00 18 20 40 10 10 10 00 02 40 00 FF D1 6F 00 10 42 80 30 2F 00 0E D0 AF 00 18 20 40 10 10 10 00 02 80 00 00 00 FF 2F 00 4E BA FE FE 58 8F 30 2F 00 0E 32 00 52 41 3F 41 00 0E 30 2F 00 04 B0 6F 00 0E 62 B4 70 08 C0 AF 00 20 4A 80 67 58 42 80 30 2F 00 0E D0 AF 00 18 20 40 10 10 10 00 02 40 00 FF D1 6F 00 10 42 80 30 2F 00 0E D0 AF 00 18 20 40 10 10 10 00 02 80 00 00 00 FF 2F 00 4E BA FE A8 58 8F 30 2F 00 10 E0 48 10 00 10 00 02 80 00 00 00 FF 2F 00 4E BA FE 90 58 8F 30 2F 00 10 1F 40 00 12 60 10 42 80 30 2F 00 0E D0 AF 00 18 20 40 1F 50 00 12 70 04 C0 AF 00 20 4A 80 67 00 00 94 20 3C 00 FF F6 0C 20 40 10 BC 00 0C 20 3C 00 FF F6 0D 20 40 10 AF 00 12 4E BA FD 50 20 3C 00 FF F6 0C 20 40 10 BC 00 03 20 3C 00 FF F6 0D 20 40 42 10 20 3C 00 FF F6 0E 20 40 10 10 12 00 02 01 00 03 1F 41 00 13 42 AF 00 0A 60 36 52 AF 00 0A 42 AF 00 06 60 0C 4E BA FC E0 4E BA FD 0E 52 AF 00 06 70 63 B0 AF 00 06 6C EC 4E BA FC CC 20 3C 00 FF F6 0E 20 40 10 10 12 00 02 01 00 03 1F 41 00 13 4A 2F 00 13 67 0A 0C AF 00 00 01 F3 00 0A 6F BA 4F EF 00 14 4E 75 51 8F 59 8F 4E BA FC 9A 42 AF 00 08 42 AF 00 04 60 02 4E 71 4E BA FC 8A 52 AF 00 08 0C AF 00 03 00 00 00 08 63 06 42 80 60 00 01 10 0C AF 00 00 10 14 00 04 6F 12 20 2F 00 14 20 40 10 BC FF EE 20 2F 00 04 60 00 00 F4 20 3C 00 FF F6 0E 20 40 10 10 EA 08 1F 40 00 03 42 80 10 2F 00 03 72 07 B2 80 65 AE 30 3B 0A 06 4E FB 00 02 00 C8 00 10 00 10 00 B8 00 10 00 5C 00 5C 00 5C 20 2F 00 04 22 00 52 81 2F 41 00 04 22 3C 00 FF F6 0F 20 41 12 10 11 81 09 B0 00 FF 9E D6 20 3C 00 FF F6 0E 20 40 10 10 EA 08 1F 40 00 03 0C 2F 00 01 00 03 67 CA 0C 2F 00 02 00 03 67 C2 0C 2F 00 04 00 03 67 BA 42 AF 7F B7
[05:00:41:130] RX: 6D F0 10 76 00 73
[05:00:41:131] Found response, Success
[05:00:41:131] Kernel upload 74% complete.
[05:00:41:134] Sending block with offset 0x000000, start address 0xFF8000, length 0x0800.
[05:00:41:196] TX: 6D 10 F0 36 80 08 00 FF 80 00 4F EF FF E8 00 7C 07 00 4E B9 00 FF 8B DC 20 3C 00 FF F6 06 20 40 42 10 4E B9 00 FF 89 84 20 3C 00 FF F6 0C 20 40 10 BC 00 03 20 3C 00 FF F6 0D 20 40 42 10 4E B9 00 FF 8C 86 4E B9 00 FF 8C 0E 4E B9 00 FF 8B DC 42 A7 4E B9 00 FF 95 68 58 8F 48 78 00 04 48 78 00 03 48 78 00 02 48 78 00 01 4E B9 00 FF 91 40 50 8F 50 8F 4E B9 00 FF 8C 54 42 AF 00 14 2F 7C 00 00 09 C4 00 0C 20 2F 00 14 90 AF 00 0C 22 00 52 81 2F 41 00 08 20 2F 00 14 90 AF 00 0C 2F 40 00 10 52 AF 00 14 4E B9 00 FF 8B DC 50 EF 00 03 50 EF 00 02 20 0F 54 80 2F 00 20 0F 5E 80 2F 00 4E B9 00 FF 8F 3C 50 8F 2F 40 00 04 4A AF 00 04 66 32 20 2F 00 10 D0 AF 00 0C B0 AF 00 14 64 22 48 78 00 77 48 78 00 66 48 78 00 73 48 78 00 6E 4E B9 00 FF 91 40 50 8F 50 8F 2F 6F 00 14 00 10 60 62 60 60 10 2F 00 03 49 C0 72 30 C0 81 4A 80 67 02 60 50 10 2F 00 02 0C 00 00 01 67 2C 10 2F 00 02 42 81 12 00 10 2F 00 02 10 00 02 80 00 00 00 FF 2F 01 2F 00 48 78 00 BB 48 78 00 BB 4E B9 00 FF 91 40 50 8F 50 8F 60 1A 2F 6F 00 14 00 08 2F 6F 00 14 00 10 20 2F 00 14 2F 00 4E B9 00 FF 87 A2 58 8F 60 00 FF 3C 00 00 51 8F 2F 02 22 6F 00 10 20 6F 00 14 22 2F 00 18 20 2F 00 1C 34 09 1F 42 00 0A 34 08 1F 42 00 08 1F 41 00 06 1F 40 00 04 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 4A 2F 00 0A 67 22 13 FC 00 7D 00 FF 9E D9 13 EF 00 08 00 FF 9E DA 13 EF 00 06 00 FF 9E DB 13 EF 00 04 00 FF 9E DC 60 28 13 FC 00 7F 00 FF 9E D9 13 FC 00 3D 00 FF 9E DA 13 EF 00 08 00 FF 9E DB 13 EF 00 06 00 FF 9E DC 13 EF 00 04 00 FF 9E DD 4A 2F 00 0A 67 04 70 07 60 02 70 08 48 78 00 05 2F 00 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 24 1F 50 8F 4E 75 4E B9 00 FF 8B DC 4E B9 00 FF 99 6E 23 C0 00 FF 9E D2 4E B9 00 FF 8B DC 20 39 00 FF 9E D2 42 40 48 40 0C 80 00 00 00 89 67 0C 4E B9 00 FF 9B C4 23 C0 00 FF 9E D2 4E B9 00 FF 8B DC 48 78 00 01 4E B9 00 FF 8C 74 58 8F 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 13 FC 00 01 00 FF 9E DA 20 39 00 FF 9E D2 72 18 E2 A8 10 00 13 C0 00 FF 9E DB 20 39 00 FF 9E D2 42 40 48 40 10 00 13 C0 00 FF 9E DC 20 39 00 FF 9E D2 E0 88 10 00 13 C0 00 FF 9E DD 20 39 00 FF 9E D2 10 00 13 C0 00 FF 9E DE 48 78 00 05 48 78 00 09 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 4E 75 4F EF FF E8 10 39 00 FF 9E DB 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DC 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E DD 10 00 02 80 00 00 00 FF D0 81 2F 40 00 12 10 39 00 FF 9E DE 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DF 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E E0 10 00 02 80 00 00 00 FF D0 81 2F 40 00 0E 2F 6F 00 0E 00 0A 2F 6F 00 12 00 06 2F 2F 00 06 2F 2F 00 0E 4E B9 00 FF 8A A4 50 8F 4A 80 66 18 1F 7C 00 01 00 17 2F 2F 00 06 2F 2F 00 0E 4E B9 00 FF 8A F2 50 8F 60 0C 1F 7C 00 02 00 17 4E B9 00 FF 8B 18 4E B9 00 FF 8C 64 2F 2F 00 06 2F 2F 00 0E 4E B9 00 FF 8A C8 50 8F 4A 80 67 00 00 E8 4E B9 00 FF 8B 10 2F 40 00 02 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 13 FC 00 02 00 FF 9E DA 20 39 00 FF B3 56 48 40 48 C0 10 00 13 C0 00 FF 9E DB 20 39 00 FF B3 56 E0 80 10 00 13 C0 00 FF 9E DC 20 39 00 FF B3 56 10 00 13 C0 00 FF 9E DD 20 39 00 FF B3 52 42 40 48 40 10 00 13 C0 00 FF 9E DE 20 39 00 FF B3 52 E0 88 10 00 13 C0 00 FF 9E DF 20 39 00 FF B3 52 10 00 13 C0 00 FF 9E E0 20 2F 00 02 72 18 E2 A8 10 00 13 C0 00 FF 9E E1 20 2F 00 02 42 40 48 40 10 00 13 C0 00 FF 9E E2 20 2F 00 02 E0 88 10 00 13 C0 00 FF 9E E3 20 2F 00 02 10 00 13 C0 00 FF 9E E4 48 78 00 05 48 78 00 0F 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 60 48 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 50 F9 00 FF 9E DA 10 2F 00 17 13 C0 00 FF 9E DB 48 78 00 05 48 78 00 06 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 4F EF 00 18 4E 75 59 8F 4E B9 00 FF 8C 64 2E BC 00 00 05 04 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 13 FC 00 03 00 FF 9E DA 20 17 20 40 10 10 13 C0 00 FF 9E DB 20 17 20 40 10 28 00 01 13 C0 00 FF 9E DC 20 17 20 40 10 28 00 02 13 C0 00 FF 9E DD 20 17 20 40 10 28 00 03 13 C0 00 FF 9E DE 48 78 00 05 48 78 00 09 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 58 8F 4E 75 51 8F 10 39 00 FF 9E DB 10 00 02 80 00 00 00 FF 22 00 48 41 42 41 10 39 00 FF 9E DC 10 00 02 80 00 00 00 FF E1 88 D2 80 10 39 00 FF 9E DD 10 00 02 80 00 00 00 FF D0 81 2F 40 00 02 42 2F 00 07 20 39 00 FF 9E D2 0C 80 00 01 22 81 67 3C 0C 80 00 01 22 81 62 12 0C 80 00 01 22 03 67 2C 0C 80 00 01 22 58 67 24 60 34 0C 80 00 89 44 71 67 08 0C 80 00 89 88 9D 66 24 2F 2F 00 02 4E B9 00 FF 99 BC 58 8F 1F 40 00 07 60 36 2F 2F 00 02 4E B9 00 FF 9C 58 58 8F 1F 40 00 07 60 24 48 78 00 02 4E B9 00 FF 8C 74 58 8F 48 78 00 FF 48 78 00 FF 48 78 00 05 42 A7 4E BA FB 30 50 8F 50 8F 60 26 48 78 00 02 4E B9 00 FF 8C 74 58 8F 42 80 10 2F 00 07 42 A7 2F 00 48 78 00 05 48 78 00 01 4E BA FB 08 50 8F 50 8F 50 8F 4E 75 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7F 00 FF 9E D9 13 FC 00 3D 00 FF 9E DA 13 FC 00 06 00 FF 9E DB 42 39 00 FF 9E DC 48 78 00 05 48 78 00 07 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 4E 75 59 8F 2E BC 12 34 56 78 13 FC 00 6C 00 FF 9E D6 13 FC FF F0 00 FF 9E D7 13 FC 00 10 00 FF 9E D8 13 FC 00 7D 00 FF 9E D9 50 F9 00 FF 9E DA 20 17 72 18 E2 A8 10 00 13 C0 00 FF 9E DB 20 17 42 40 48 40 10 00 13 C0 00 FF 9E DC 20 17 E0 88 10 00 13 C0 00 FF 9E DD 20 17 10 00 13 C0 00 FF 9E DE 48 78 00 05 48 78 00 09 48 79 00 FF 9E D6 4E B9 00 FF 8D 8C 50 8F 58 8F 58 8F 4E 75 20 39 00 FF 9E D2 0C 80 00 01 22 81 67 46 0C 80 00 01 22 81 62 12 0C 80 00 01 22 03 67 36 0C 80 00 01 22 58 67 2E 60 48 0C 80 00 89 44 71 67 08 0C 80 00 89 88 9D 66 38 2F 2F 00 10 2F 2F 00 10 2F 2F 00 10 2F 2F 00 10 4E B9 00 FF 9A 6C 50 8F 50 8F 60 1E 2F 2F 00 10 2F 2F 00 10 2F 2F 00 10 2F 2F 00 10 4E B9 00 FF 9D 96 50 8F 50 8F 60 02 70 EE 4E 75 10 39 00 FF 9E D7 0C 00 00 10 67 10 10 39 00 FF 9E D7 0C 00 FF FE 67 04 60 00 01 C4 10 39 00 FF 9E D8 0C 00 FF F0 67 04 60 00 01 B4 10 39 00 FF 9E D9 10 00 02 80 00 00 00 FF 72 E0 D0 81 72 1F B2 80 65 00 01 58 30 3B 0A 06 4E FB 00 02 00 40 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E 01 4E E8 73
[05:00:42:808] RX: 6D F0 10 76 00 73
[05:00:42:809] Found response, Success
[05:00:42:809] Kernel upload 100% complete.
[05:00:42:814] TX: 6C 10 F0 3D 00
[05:00:42:850] RX: 6D F0 10 76 00
[05:00:42:962] TX: 6C 10 F0 3D 00
[05:00:43:067] RX: 6C F0 10 7D 00 01 03 05 01
[05:00:43:068] Kernel Version: 01030501
[05:00:43:070] kernel uploaded to PCM succesfully. Requesting data...
[05:00:43:086] Sending 'test device present' notification.
[05:00:43:086] TX: 8C FE F0 3F
[05:00:43:097] TX: 6C 10 F0 3D 01
[05:00:43:114] RX: 6C F0 10 7D 01 00 89 44 71
[05:00:43:117] Flash chip: Intel 28F400B, 512kb
[05:00:43:119] Sending 'test device present' notification.
[05:00:43:120] TX: 8C FE F0 3F
[05:00:43:129] Reading from 0 / 0x0, length 2048 / 0x800
[05:00:43:131] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:00:45:034] RX: 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:00:45:037] Processing message
[05:00:45:038] Unable to process response: Truncated 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:00:47:040] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:47:041] No payload following read request.
[05:00:49:041] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:49:042] No payload following read request.
[05:00:51:042] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:51:043] No payload following read request.
[05:00:53:044] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:53:044] No payload following read request.
[05:00:53:045] Unable to read segment: Truncated
[05:00:53:045] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:00:55:055] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:55:056] No payload following read request.
[05:00:57:056] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:57:057] No payload following read request.
[05:00:59:058] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:00:59:059] No payload following read request.
[05:01:01:059] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:01:060] No payload following read request.
[05:01:03:061] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:03:061] No payload following read request.
[05:01:03:061] Unable to read segment: Error
[05:01:03:062] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:04:965] RX: 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:04:967] Processing message
[05:01:04:968] Unable to process response: Truncated 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:06:971] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:06:972] No payload following read request.
[05:01:08:972] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:08:973] No payload following read request.
[05:01:10:974] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:10:975] No payload following read request.
[05:01:12:976] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:12:976] No payload following read request.
[05:01:12:977] Unable to read segment: Truncated
[05:01:12:977] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:14:988] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:14:989] No payload following read request.
[05:01:16:989] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:16:990] No payload following read request.
[05:01:18:991] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:18:991] No payload following read request.
[05:01:20:993] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:20:993] No payload following read request.
[05:01:22:994] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:22:995] No payload following read request.
[05:01:22:995] Unable to read segment: Error
[05:01:22:996] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:24:899] RX: 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:24:902] Processing message
[05:01:24:902] Unable to process response: Truncated 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:26:904] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:26:905] No payload following read request.
[05:01:28:906] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:28:906] No payload following read request.
[05:01:30:907] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:30:908] No payload following read request.
[05:01:32:909] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:32:909] No payload following read request.
[05:01:32:909] Unable to read segment: Truncated
[05:01:32:910] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:34:922] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:34:923] No payload following read request.
[05:01:36:924] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:36:924] No payload following read request.
[05:01:38:926] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:38:926] No payload following read request.
[05:01:40:927] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:40:927] No payload following read request.
[05:01:42:928] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:42:928] No payload following read request.
[05:01:42:929] Unable to read segment: Error
[05:01:42:929] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:44:833] RX: 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:44:835] Processing message
[05:01:44:836] Unable to process response: Truncated 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:01:46:839] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:46:840] No payload following read request.
[05:01:48:840] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:48:841] No payload following read request.
[05:01:50:842] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:50:843] No payload following read request.
[05:01:52:843] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:52:843] No payload following read request.
[05:01:52:843] Unable to read segment: Truncated
[05:01:52:844] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:01:54:856] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:54:856] No payload following read request.
[05:01:56:857] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:56:858] No payload following read request.
[05:01:58:858] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:01:58:859] No payload following read request.
[05:02:00:860] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:00:860] No payload following read request.
[05:02:02:862] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:02:862] No payload following read request.
[05:02:02:863] Unable to read segment: Error
[05:02:02:863] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:02:04:766] RX: 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:02:04:768] Processing message
[05:02:04:768] Unable to process response: Truncated 6D F0 10 36 01 08 00 00 00 00 00 FF CE 00 00 00 04 40 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 90 00 00 00 00 00 00 00 00 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 92 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 64 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 7C 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 02 00 00 06 9A 00 00 06 9A 00 00 05 DE 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 CC 00 00 06 9A 00 00 05 A8 00 00 05 BA 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 06 9A 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 05 F0 00 00 00 00 0E 16 4A 00 66 0C 4E B9 00 06 EF 4E 4E B9 00 00 0A CE
[05:02:06:771] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:06:772] No payload following read request.
[05:02:08:772] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:08:772] No payload following read request.
[05:02:10:774] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:10:775] No payload following read request.
[05:02:12:775] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:12:776] No payload following read request.
[05:02:12:776] Unable to read segment: Truncated
[05:02:12:776] TX: 6D 10 F0 35 01 08 00 00 00 00
[05:02:14:788] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:14:789] No payload following read request.
[05:02:16:790] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:16:790] No payload following read request.
[05:02:18:792] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:18:792] No payload following read request.
[05:02:20:794] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:20:794] No payload following read request.
[05:02:22:795] ReadMsgs OBDError: ERR_BUFFER_EMPTY
[05:02:22:796] No payload following read request.
[05:02:22:796] Unable to read segment: Error
[05:02:22:796] Unable to read block from 0 to 2047
[05:02:22:800] Halting the kernel.
[05:02:22:801] TX: 6C 10 F0 20
[05:02:22:809] TX: 6C 10 F0 20
[05:02:22:818] Clearing trouble codes.
[05:02:23:077] TX: 68 6A F0 04
[05:02:23:346] TX: 68 6A F0 04
[05:02:23:618] TX: 8C FE F0 14
[05:02:23:889] TX: 8C FE F0 14
[05:02:23:898] Elapsed time 00:01:47.6793261
[05:02:23:902] Read failed, Error

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.