From 12113b480d8c3775b97fc8228dad8627c2c615c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Thu, 29 Jul 2021 14:19:18 +0300 Subject: [PATCH] ApiHal: update HSE tuning to match EVT samples (#612) --- firmware/targets/f6/api-hal/api-hal-clock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/targets/f6/api-hal/api-hal-clock.c b/firmware/targets/f6/api-hal/api-hal-clock.c index f0172452..4743c440 100644 --- a/firmware/targets/f6/api-hal/api-hal-clock.c +++ b/firmware/targets/f6/api-hal/api-hal-clock.c @@ -10,7 +10,7 @@ void api_hal_clock_init() { while(LL_FLASH_GetLatency() != LL_FLASH_LATENCY_3); /* HSE configuration and activation */ - LL_RCC_HSE_SetCapacitorTuning(0x18); + LL_RCC_HSE_SetCapacitorTuning(0x26); LL_RCC_HSE_Enable(); while(LL_RCC_HSE_IsReady() != 1) ;