Part Number: CC2642R
i am using CC2642R device and using below command to verify firmware was successfully programmed into the Flash memory or not?
my Flash Size 128KB = 131071 Byte. Also i have successfully write 128kb in flash memory, working properly but failed to match the Calculated CRC and Bootloader CRC.
Data Address = 0x00000000;
ucCommand[0] = <size=15>;
ucCommand[1] = <checksum>;
ucCommand[2]= COMMAND_CRC32;
ucCommand[3]= 0x00;
ucCommand[4]= 0x00;
ucCommand[5]= 0x00;
ucCommand[6]= 0x00;
ucCommand[7]= 0x00;
ucCommand[8]= 0x01;
ucCommand[9]= 0xFF;
ucCommand[10]= 0xFF;
ucCommand[11]= 0x00;
ucCommand[12]= 0x00;
ucCommand[13]= 0x00;
By Sending above command i get single data byte which matched with first byte of calculated CRC .
but as per datasheet Bootloader returned the 4 bytes in a 6-byte packet. while i am getting single data byte.
so please help us to resolve the issue.