Resolved! Bug in CRS register definition of STM32U585xx
Affected driver library: STM32Cube_FW_U5_V1.2.0File: stm32u585xx.hThe definition of CRS_CR_TRIM_Msk is wrong.Currently it is:#define CRS_CR_TRIM_Msk (0x3FUL << CRS_CR_TRIM_Pos) /*!< 0x00003F00 */But instead it should be:#define CRS_CR_TRIM_Msk (0x7FU...