File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ uint8_t SetSysClock_PLL_HSI(void);
56
56
* @retval None
57
57
*/
58
58
59
- __weak void SetSysClock (void )
59
+ void SetSysClock (void )
60
60
{
61
61
#if ((CLOCK_SOURCE ) & USE_PLL_HSE_EXTC )
62
62
/* 1- Try to start with HSE and external clock */
@@ -88,7 +88,7 @@ __weak void SetSysClock(void)
88
88
/******************************************************************************/
89
89
/* PLL (clocked by HSE) used as System clock source */
90
90
/******************************************************************************/
91
- __weak uint8_t SetSysClock_PLL_HSE (uint8_t bypass )
91
+ MBED_WEAK uint8_t SetSysClock_PLL_HSE (uint8_t bypass )
92
92
{
93
93
RCC_OscInitTypeDef RCC_OscInitStruct ;
94
94
RCC_ClkInitTypeDef RCC_ClkInitStruct ;
@@ -167,7 +167,7 @@ __weak uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
167
167
/******************************************************************************/
168
168
/* PLL (clocked by HSI) used as System clock source */
169
169
/******************************************************************************/
170
- __weak uint8_t SetSysClock_PLL_HSI (void )
170
+ MBED_WEAK uint8_t SetSysClock_PLL_HSI (void )
171
171
{
172
172
RCC_OscInitTypeDef RCC_OscInitStruct ;
173
173
RCC_ClkInitTypeDef RCC_ClkInitStruct ;
You can’t perform that action at this time.
0 commit comments