Other Parts Discussed in Thread: UNIFLASH
Hi, Expert :
I am try to erase eMMC flash (16GB) on TDA4 EVB board, and I reference command for "uniflash"
Usage:
dslite.bat --mode processors -c <COM_Port> -f <Path_to_the_file_to_be_transfered> -d <Device_Type> -i <Image_Type> -e <erase_length> -o <Offset>
dslite.bat -c COM10 -e 7c0000 -d 4 -o 0
My question is :
1. what's unit for "-e", Is it means how many bytes in HEX? for example, 16GB eMMC = 17179869184 bytes = 0x400000000 (HEX)
so, I should give this command " dslite.bat -c COM10 -e 400000000 -d 4 -o 0" to erase, Am i right?
2. "-o <Offset>" means start address for eMMC, if I want to erase all, I should give " -o 0", Am I right?
Many Thanks