Skip to content

Commit 01bc434

Browse files
authored
Merge pull request #5482 from bcostm/fix_disco_l072cz_extclock
DISCO_L072CZ_LRWAN1: HSE clock configuration improvement
2 parents 4198695 + f0aed41 commit 01bc434

File tree

2 files changed

+45
-22
lines changed

2 files changed

+45
-22
lines changed

targets/TARGET_STM/TARGET_STM32L0/TARGET_DISCO_L072CZ_LRWAN1/device/system_clock.c

Lines changed: 44 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#define USE_PLL_HSE_XTAL 0x4 // Use external xtal (X3 on board - not provided by default)
4242
#define USE_PLL_HSI 0x2 // Use HSI internal clock
4343

44+
// Uncomment to output the MCO on PA8 for debugging
45+
//#define DEBUG_MCO
46+
4447
#if ( ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) )
4548
uint8_t SetSysClock_PLL_HSE(uint8_t bypass);
4649
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) */
@@ -118,10 +121,6 @@ void SetSysClock(void)
118121
}
119122
}
120123
}
121-
122-
/* Output clock on MCO1 pin(PA8) for debugging purpose */
123-
//HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_SYSCLK, RCC_MCODIV_1);
124-
//HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSI48, RCC_MCODIV_1);
125124
}
126125

127126
#if ( ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) )
@@ -130,9 +129,10 @@ void SetSysClock(void)
130129
/******************************************************************************/
131130
uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
132131
{
133-
RCC_ClkInitTypeDef RCC_ClkInitStruct;
134-
RCC_OscInitTypeDef RCC_OscInitStruct;
135-
RCC_PeriphCLKInitTypeDef RCC_PeriphClkInit;
132+
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
133+
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
134+
RCC_PeriphCLKInitTypeDef RCC_PeriphClkInit = {0};
135+
RCC_CRSInitTypeDef RCC_CRSInitStruct = {0};
136136

137137
/* Used to gain time after DeepSleep in case HSI is used */
138138
if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) {
@@ -144,11 +144,12 @@ uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
144144
regarding system frequency refer to product datasheet. */
145145
__PWR_CLK_ENABLE();
146146
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
147+
__HAL_RCC_PWR_CLK_DISABLE();
147148

148149
/* Enable HSE and HSI48 oscillators and activate PLL with HSE as source */
149-
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE|RCC_OSCILLATORTYPE_HSI48;
150+
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE | RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_HSI48;
150151
if (bypass == 0) {
151-
RCC_OscInitStruct.HSEState = RCC_HSE_ON; /* External 8 MHz xtal on OSC_IN/OSC_OUT */
152+
RCC_OscInitStruct.HSEState = RCC_HSE_ON; /* 8 MHz xtal on OSC_IN/OSC_OUT */
152153
} else {
153154
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS; /* External 8 MHz clock on OSC_IN */
154155
}
@@ -163,6 +164,13 @@ uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
163164
return 0; // FAIL
164165
}
165166

167+
/* Select HSI48 as USB clock source */
168+
RCC_PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USB;
169+
RCC_PeriphClkInit.UsbClockSelection = RCC_USBCLKSOURCE_HSI48;
170+
if (HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphClkInit) != HAL_OK) {
171+
return 0; // FAIL
172+
}
173+
166174
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers */
167175
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
168176
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; // 32 MHz
@@ -173,17 +181,30 @@ uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
173181
return 0; // FAIL
174182
}
175183

176-
RCC_PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USB;
177-
RCC_PeriphClkInit.UsbClockSelection = RCC_USBCLKSOURCE_HSI48;
178-
if (HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphClkInit) != HAL_OK) {
179-
return 0; // FAIL
180-
}
184+
/* Configure the clock recovery system (CRS) ********************************/
185+
/* Enable CRS Clock */
186+
__HAL_RCC_CRS_CLK_ENABLE();
187+
/* Default Synchro Signal division factor (not divided) */
188+
RCC_CRSInitStruct.Prescaler = RCC_CRS_SYNC_DIV1;
189+
/* Set the SYNCSRC[1:0] bits according to CRS_Source value */
190+
RCC_CRSInitStruct.Source = RCC_CRS_SYNC_SOURCE_USB;
191+
/* HSI48 is synchronized with USB SOF at 1KHz rate */
192+
RCC_CRSInitStruct.ReloadValue = __HAL_RCC_CRS_RELOADVALUE_CALCULATE(48000000, 1000);
193+
RCC_CRSInitStruct.ErrorLimitValue = RCC_CRS_ERRORLIMIT_DEFAULT;
194+
/* Set the TRIM[5:0] to the default value */
195+
RCC_CRSInitStruct.HSI48CalibrationValue = 0x20;
196+
/* Start automatic synchronization */
197+
HAL_RCCEx_CRSConfig(&RCC_CRSInitStruct);
181198

182-
/* Output clock on MCO1 pin(PA8) for debugging purpose */
183-
//if (bypass == 0)
184-
// HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_2); // 4 MHz
185-
//else
186-
// HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_1); // 8 MHz
199+
#ifdef DEBUG_MCO
200+
// Output clock on MCO1 pin(PA8) for debugging purpose
201+
if (bypass == 0) { // Xtal used
202+
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_SYSCLK, RCC_MCODIV_2); // 16 MHz
203+
}
204+
else { // External clock used
205+
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_SYSCLK, RCC_MCODIV_4); // 8 MHz
206+
}
207+
#endif
187208

188209
return 1; // OK
189210
}
@@ -252,8 +273,10 @@ uint8_t SetSysClock_PLL_HSI(void)
252273
/* Start automatic synchronization */
253274
HAL_RCCEx_CRSConfig(&RCC_CRSInitStruct);
254275

255-
/* Output clock on MCO1 pin(PA8) for debugging purpose */
256-
//HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSI, RCC_MCODIV_1); // 16 MHz
276+
#ifdef DEBUG_MCO
277+
// Output clock on MCO1 pin(PA8) for debugging purpose
278+
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_SYSCLK, RCC_MCODIV_1); // 32 MHz (not precise due to HSI not calibrated)
279+
#endif
257280

258281
return 1; // OK
259282
}

targets/targets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@
15621562
"macros": ["RTC_LSI=1"],
15631563
"config": {
15641564
"clock_source": {
1565-
"help": "Mask value : USE_PLL_HSE_EXTC | USE_PLL_HSE_XTAL (need HW patch) | USE_PLL_HSI",
1565+
"help": "Mask value : USE_PLL_HSE_EXTC (need HW patch) | USE_PLL_HSE_XTAL (need HW patch) | USE_PLL_HSI",
15661566
"value": "USE_PLL_HSI",
15671567
"macro_name": "CLOCK_SOURCE"
15681568
}

0 commit comments

Comments
 (0)