File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_MTB_STM_S2LP Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ typedef enum {
58
58
UART_8 = (int )UART8_BASE
59
59
} UARTName ;
60
60
61
+
61
62
#define SPI_COUNT 6
62
63
typedef enum {
63
64
SPI_1 = (int )SPI1_BASE ,
Original file line number Diff line number Diff line change @@ -275,7 +275,6 @@ typedef enum {
275
275
SPI1_SCK = PB_10 ,
276
276
SPI1_CS = PD_1 , //MX25R Chip Select
277
277
278
- // See JIRA IOTTHD-2908
279
278
SPI2_MOSI = PC_12 ,
280
279
SPI2_MISO = PC_11 ,
281
280
SPI2_SCK = PC_10 ,
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ void SystemInit(void)
60
60
#if (__FPU_PRESENT == 1 ) && (__FPU_USED == 1 )
61
61
SCB -> CPACR |= ((3UL << 10 * 2 ) | (3UL << 11 * 2 )); /* set CP10 and CP11 Full Access */
62
62
#endif
63
+
63
64
/* Reset the RCC clock configuration to the default reset state ------------*/
64
65
/* Set HSION bit */
65
66
RCC -> CR |= (uint32_t )0x00000001 ;
@@ -89,7 +90,6 @@ void SystemInit(void)
89
90
#else
90
91
SCB -> VTOR = NVIC_FLASH_VECTOR_ADDRESS ; /* Vector Table Relocation in Internal FLASH */
91
92
#endif
92
-
93
93
}
94
94
95
95
/**
@@ -237,4 +237,5 @@ uint8_t SetSysClock_PLL_HSI(void)
237
237
238
238
return 1 ;
239
239
}
240
- #endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
240
+ #endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
241
+
You can’t perform that action at this time.
0 commit comments