Skip to content

Commit 9c67e06

Browse files
committed
[stm32] format codes
1 parent 5187d75 commit 9c67e06

File tree

31 files changed

+75
-75
lines changed

31 files changed

+75
-75
lines changed

bsp/stm32/stm32f207-st-nucleo/board/board.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
77
* Date Author Notes
88
* 2018-11-06 SummerGift first version
99
*/
10-
10+
1111
#include "board.h"
1212

1313
void SystemClock_Config(void)

bsp/stm32/stm32f207-st-nucleo/board/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

bsp/stm32/stm32f407-armfly-v5/applications/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

bsp/stm32/stm32f407-armfly-v5/board/board.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

@@ -16,11 +16,11 @@ void SystemClock_Config(void)
1616
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
1717
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
1818

19-
/** Configure the main internal regulator output voltage
19+
/** Configure the main internal regulator output voltage
2020
*/
2121
__HAL_RCC_PWR_CLK_ENABLE();
2222
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
23-
/** Initializes the CPU, AHB and APB busses clocks
23+
/** Initializes the CPU, AHB and APB busses clocks
2424
*/
2525
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE
2626
|RCC_OSCILLATORTYPE_LSE;
@@ -37,7 +37,7 @@ void SystemClock_Config(void)
3737
{
3838
Error_Handler();
3939
}
40-
/** Initializes the CPU, AHB and APB busses clocks
40+
/** Initializes the CPU, AHB and APB busses clocks
4141
*/
4242
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
4343
|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;

bsp/stm32/stm32f407-armfly-v5/board/board.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

bsp/stm32/stm32f407-armfly-v5/board/ports/fal_cfg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

bsp/stm32/stm32f407-armfly-v5/board/ports/sdcard_port.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

bsp/stm32/stm32f407-armfly-v5/board/ports/spi_flash_init.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
66
* Change Logs:
7-
* Date Author Notes
7+
* Date Author Notes
88
* 2020-07-13 Dozingfiretruck first version
99
*/
1010

bsp/stm32/stm32h750-artpi-h750/applications/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

bsp/stm32/stm32h750-artpi-h750/board/port/drv_eth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2006-2018, RT-Thread Development Team
2+
* Copyright (c) 2006-2021, RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

0 commit comments

Comments
 (0)