Skip to content

Commit 95d893f

Browse files
authored
Update generic_clock.c - remove zeroes like guide says
Signed-off-by: its-kronos <140297693+its-kronos@users.noreply.github.com>
1 parent 0c225eb commit 95d893f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variants/STM32F1xx/F103C8T_F103CB(T-U)/generic_clock.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
*/
2222
WEAK void SystemClock_Config(void)
2323
{
24-
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
25-
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
26-
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
24+
RCC_OscInitTypeDef RCC_OscInitStruct = {};
25+
RCC_ClkInitTypeDef RCC_ClkInitStruct = {};
26+
RCC_PeriphCLKInitTypeDef PeriphClkInit = {};
2727

2828
/** Initializes the RCC Oscillators according to the specified parameters
2929
* in the RCC_OscInitTypeDef structure.

0 commit comments

Comments
 (0)