Bug in CRS register definition of STM32U585xx
Affected driver library: STM32Cube_FW_U5_V1.2.0
File: stm32u585xx.h
The 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 (0x7FUL << CRS_CR_TRIM_Pos) /*!< 0x00007F00 */
(The TRIM field has seven bits, not six)
