- Joined
- May 30, 2023
- Threads
- 7
- Messages
- 99
- Reaction score
- 97
- Location
- Fairchild AFB, WA
- Vehicle(s)
- 2023 Maverick XLT Hybrid Lux
- Engine
- 2.5L Hybrid
- Thread starter
- #1
After looking through the Livnitup spreadsheet at the various configuration options, decided on a whim to take my truck's AS BUILT file and toss it into Notepad++ to see what was there. Was not expecting to see the data structured like XML, which was surprisingly nice as it made sorting through the data easy, and I'll have a fun project to work on over the next couple of weeks as I pick it apart to see exactly how everything was configured from the factory. What struck me as odd though is at the end of the file I came across an ERROR tag. Has anyone else seen anything like this? Is this normal, or did something go sideways when the file was generated? I also tried pulling the file again just in case it was an error when I pulled it the first time, however the ERROR tag is still there in the new file.
Here's what I'm seeing in the .ab file. I tried to capture the overall file structure while paring down the length a lot - original worked out to 776 lines, I've reduced that significantly for the sake of the discussion. I've also sanitized it quite a bit.
Here's what I'm seeing in the .ab file. I tried to capture the overall file structure while paring down the length a lot - original worked out to 776 lines, I've reduced that significantly for the sake of the discussion. I've also sanitized it quite a bit.
XML:
<AS_BUILT_DATA>
<VEHICLE>
<VIN>myvin</VIN>
<VEHICLE_DATA>
<DATA LABEL=""><CODE>xxxx</CODE><CODE>xxxx</CODE><CODE>xxxx</CODE></DATA>
</VEHICLE_DATA>
<PCM_MODULE>
<DATA LABEL="PCM #">9x PCM data labels each with 3x code blocks formated same as data above,
matches text from https://www.motorcraftservice.com/AsBuilt/Details</DATA>
</PCM_MODULE>
<BCE_MODULE>
<DATA LABEL="xxx-xx-xx">all modules AS BUILT data, 6F0-01-01 thru 7E6-01-07, 1-3 code blocks per label</DATA>
</BCE_MODULE>
<NODEID>6F0
... tags in this section contain what looks like part numbers for installed equipment associated with each node,
will be deciphering/cross referencing all of these later. One NODEID for each address group (first 3 chars of the data
addresses above in the BCE_MODULE section)
</NODEID>
... more NODEID tags (706, 716, 720, 723, 724, 726, 727, 730, 732, 733, 737, 746, 750, 754, 760, 765, 791, 7C7, 7E0, 7E4)
<NODEID>7E6
...
</NODEID>
<ERROR>
<ERRORCODE>614</ERRORCODE>
<ERRORMSG>CCC DATA NOT FOUND</ERRORMSG>
</ERROR>
</VEHICLE>
</AS_BUILT_DATA>
Sponsored