Merge pull request #7663 from blues/fix-swan_r5_LSE_drive_level
fix: Increases drive strength of the 32kHz external crystal
This commit is contained in:
commit
965caa0302
|
@ -45,6 +45,9 @@
|
|||
#define BOARD_HAS_LOW_SPEED_CRYSTAL (1)
|
||||
#define BOARD_HAS_HIGH_SPEED_CRYSTAL (0)
|
||||
|
||||
// Increase drive strength of 32kHz external crystal, in line with calculations specified in ST AN2867 sections 3.3, 3.4, and STM32L4 datasheet DS12023 Table 58. LSE oscillator characteristics.
|
||||
// The drive strength RCC_LSEDRIVE_LOW is marginal for the 32kHz crystal oscillator stability, and RCC_LSEDRIVE_MEDIUMLOW meets the calculated drive strength with a small margin for parasitic capacitance.
|
||||
#define BOARD_LSE_DRIVE_LEVEL RCC_LSEDRIVE_MEDIUMLOW
|
||||
|
||||
// Bootloader only
|
||||
#ifdef UF2_BOOTLOADER_ENABLED
|
||||
|
|
|
@ -39,6 +39,8 @@
|
|||
#error HSE support needs to be added for the L4 family.
|
||||
#elif !BOARD_HAS_LOW_SPEED_CRYSTAL
|
||||
#error LSE clock source required
|
||||
#elif !defined(BOARD_LSE_DRIVE_LEVEL)
|
||||
#error BOARD_LSE_DRIVE_LEVEL is not defined for this board. The board should define the drive strength of 32kHz external crystal in line with calculations specified in ST AN2867 sections 3.3, 3.4, and STM32L4 datasheet DS12023 Table 58, LSE oscillator characteristics.
|
||||
#endif
|
||||
|
||||
void Error_Handler(void) {
|
||||
|
@ -57,7 +59,7 @@ void stm32_peripherals_clocks_init(void) {
|
|||
|
||||
// Configure LSE Drive
|
||||
HAL_PWR_EnableBkUpAccess();
|
||||
__HAL_RCC_LSEDRIVE_CONFIG(RCC_LSEDRIVE_LOW);
|
||||
__HAL_RCC_LSEDRIVE_CONFIG(BOARD_LSE_DRIVE_LEVEL);
|
||||
__HAL_RCC_PWR_CLK_ENABLE();
|
||||
|
||||
/** Configure the main internal regulator output voltage
|
||||
|
|
Loading…
Reference in New Issue