Download Base Converter [
self-extracting install, version 1.3]
(The self-extracting installation can be installed directly from your computer) Read the online user's manual
An example, how can you be benefited with this software
Here is some L7 flash file versions:
R4513_G_08.B7.AER
R4513_G_08.B7.DAR
R4513_G_08.B7.DCR
Convet AER, DAR, DCR hex values to decimal:
AER = 174
DAR = 218
DCR = 220Now you can easily understand which version is higher and which lower.
++++++++++++++++++++++++++++++++++++++++++++++++++ +++
Another example:
Suppose, your want to read a 16MB flash file from a china phone, you must set the read address.
Now calculate:
16MB = (16*1024)
16384KB16384KB = (16384*1024)
16777216 ByteNow convert this value to hex:
16777216 = 01000000When you read full flash start address must
00000000 and end address will be that
01000000Set this start address and end address and read full flash for 16MB Flash.
You can also calculate 4MB or 8MB fullflash read address, set it and read.
8MB = 8388608 bytedecimal
8388608 = hex
800000So for 8MB full flash read: Start Address:
000000 End Address:
800000
4MB = 4194304 bytedecimal
4194304 = hex
400000So for 4MB full flash read: Start Address:
000000 End Address:
400000