Re: Trailer module
Posted: 27 Aug 2022, 23:08
I think you have to define this addresses in your tool - at 17 you write the EEPROM address, then starting with 30 you write the FLASH addresses.
Online community for electronics and microcontroller reverse engineering
https://microhacker.denkdose.de/
When I put in the addresses from the screenshot it's the same data in each blockDGAlexandru wrote: ↑29 Aug 2022, 05:10 Those addresses look weird to me. They don't match the PDF of 9S12D64 (which match the software I use; I've gave you a screenshot from it).
If you read it several times it gives you the same values? ... You might also read some RAM values.. and these ones should change between readouts.
So, what i do in this case is to open the VBF in VBF Tool, and export the data with "File -> ExportToFile -> Motorola...". This will generate an "s19" file that can be imported (!) with HxD. This kind of file remains the addresses.
Code: Select all
// Volvo software part type: Executable
sw_part_type = EXE;
// Erase information
// start, length
erase = { { 0x00004000, 0x00004000 },
{ 0x0000c000, 0x00001800 },
{ 0x003c8000, 0x00004000 },
{ 0x003d8000, 0x00004000 }
};
Code: Select all
// start, length
erase = { { 0x0000d800, 0x00000305 }
};
Code: Select all
// Call address
call = 0x330E;
Yes, i agree that it better.DGAlexandru wrote: ↑27 Aug 2022, 21:35 based on HC/MC 912 / 9S12 and never broke them by connecting only GND, RST and BKGD.
Besides of electronics you should learn to void uneccessary quotes. It makes not sense to quote the whole text of another person and just add a sentence. Please try to be more specific in your quotes, remove parts that are not needed to understand the answer/question. That helps making posts more readable. THX
That's because he is using a differnt tool (USBDM) than you (XProg?). USBDM is more related to the hardware. It uses the default memory map, or the one programmed in the INIT sequence. This Sequence simply set the register RR (given as hex) to the value VV (given as hex), which looks like this:DGAlexandru wrote: ↑29 Aug 2022, 05:10 Those addresses look weird to me. They don't match the PDF of 9S12D64 (which match the software I use; I've gave you a screenshot from it).