Skip to content

Commit

Permalink
fix: RTC issue causing time reset and lag on colorlcd (#5902)
Browse files Browse the repository at this point in the history
  • Loading branch information
3djc authored and pfeerick committed Feb 13, 2025
1 parent bd79a6c commit 57dde79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radio/src/targets/common/arm/stm32/rtc_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void rtcInit()
// Enable LSE Oscillator
RCC_OscInitTypeDef RCC_OscInitStruct;
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
// RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
RCC_OscInitStruct.LSEState = RCC_LSE_ON;

if (HAL_RCC_OscConfig(&RCC_OscInitStruct) == HAL_OK) {
Expand Down

0 comments on commit 57dde79

Please sign in to comment.