STM32.CRC defines a new type:
private
type CRC_32 is new STM32_SVD.CRC.CRC_Peripheral;
The above leads to creating new variables instead of accessing the singleton object CRC_Periph located at a specific address.
CRC calculations fail due to this - always returning the last value written to the DR
STM32.CRC defines a new type:
private
type CRC_32 is new STM32_SVD.CRC.CRC_Peripheral;
The above leads to creating new variables instead of accessing the singleton object CRC_Periph located at a specific address.
CRC calculations fail due to this - always returning the last value written to the DR