2021-07-29 10:29 PM
hi here I am configure the CRC register of STM32f469IITx
I am using the function CRC_CalcCRC(); to generate the crc for 32-bit data.
i am not getting the crc please any one help me.
uint32_t data=0xAAAAAAAA;
uint32_t crcvalue=0x00000000;
how i am using crcvalue = CRC_CalcCRC(data);
crcvalue = ? (crcvalue is giving null only)
Solved! Go to Solution.
2021-07-29 10:34 PM
Where comes CRC_CalcCRC() from?
Single-step in debugger to find out what does it do.
JW
2021-07-29 10:34 PM
Where comes CRC_CalcCRC() from?
Single-step in debugger to find out what does it do.
JW
2021-07-30 05:48 AM
CRC_CalcCRC is not a standard function.
Looks like it returns the CRC value, however.
The CRC module needs to be initialized first (clock enabled, initial value set).