Question
In G4 what is the HSI48 calibration default value ? 32 (HAL) or 64 (LL)
HAL driver V1.2.2 / 10-November-2021
In stm32G4xx_hal_crs.h:
#define RCC_CRS_HSI48CALIBRATION_DEFAULT 0x00000020U
In stm32G4xx_ll_crs.h:
#define LL_CRS_HSI48CALIBRATION_DEFAULT ((uint32_t)0x40U)
Both claim:
The default value corresponds to the middle of the trimming interval.
In G4 the TRIM field of CRS_CR is 7 bits, so I think it's 0x40.
