Other Parts Discussed in Thread: C2000WARE, CONTROLSUITE, TEST2
Tool/software: Code Composer Studio
Hello all,
I'm trying to implement crc calculation using VCU of F28069. I refer the instruction sets that have mentioned in the following documents.
http://www.ti.com/lit/ug/spruii0a/spruii0a.pdf ----section 4.5
http://www.ti.com/lit/ug/spruhs1c/spruhs1c.pdf ----section 3.6.4
Then I made a assembly file with the instruction set, I have attached it with named as crc_code.asm .
also I made a struct in main file, like
"
typedef struct
{
Uint32 *CRCResult; // Addresswhereresultshouldbe stored
Uint16 *CRCData;// Startof data
Uint16 CRCLen;// Lengthof datain bytes
}CRC_CALC;
CRC_CALC mycrc;
Uint16 CRC16P1(CRC_CALC *crc_reg);
"
But there were some compilation errors.
Would you please kindly help? Thanks!
Best Regards,
Would you please kindly help? Thanks!
Best Regards,