File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
targets/TARGET_STM/TARGET_STM32F4
TARGET_STM32F413xH/TARGET_DISCO_F413ZH
TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI
TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,7 @@ MBED_WEAK uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
106
106
HAL_RCC_GetOscConfig (& RCC_OscInitStruct );
107
107
108
108
/* PLL could be already configured by bootlader */
109
- if (RCC_OscInitStruct .PLL .PLLState != RCC_PLL_ON )
110
- {
109
+ if (RCC_OscInitStruct .PLL .PLLState != RCC_PLL_ON ) {
111
110
/* Enable HSE oscillator and activate PLL with HSE as source */
112
111
RCC_OscInitStruct .OscillatorType = RCC_OSCILLATORTYPE_HSE ;
113
112
if (bypass == 0 ) {
Original file line number Diff line number Diff line change 15
15
16
16
#include "stm32f4xx.h"
17
17
18
- void TargetBSP_Init (void ) {
18
+ void TargetBSP_Init (void )
19
+ {
19
20
/* In DISCO_F413ZH board, Arduino connector and Wifi embeded module are sharing the same SPI pins */
20
21
/* We need to set the default SPI SS pin for the Wifi module to the inactive state i.e. 1 */
21
22
/* See board User Manual: WIFI_SPI_CS = PG_11*/
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ typedef enum {
290
290
D69 = PF_1 ,
291
291
D70 = PF_2 ,
292
292
D71 = PA_7 ,
293
-
293
+
294
294
// STDIO for console print
295
295
#ifdef MBED_CONF_TARGET_STDIO_UART_TX
296
296
CONSOLE_TX = MBED_CONF_TARGET_STDIO_UART_TX ,
@@ -394,4 +394,3 @@ typedef enum {
394
394
#endif
395
395
396
396
#endif
397
-
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ typedef enum {
287
287
D69 = PF_1 ,
288
288
D70 = PF_2 ,
289
289
D71 = PA_7 ,
290
-
290
+
291
291
// STDIO for console print
292
292
#ifdef MBED_CONF_TARGET_STDIO_UART_TX
293
293
CONSOLE_TX = MBED_CONF_TARGET_STDIO_UART_TX ,
@@ -387,4 +387,3 @@ typedef enum {
387
387
#endif
388
388
389
389
#endif
390
-
You can’t perform that action at this time.
0 commit comments