Skip to content

Commit 83ad921

Browse files
Ashok RaoAshok Rao
authored andcommitted
Resolving merge conflicts from my remote
2 parents d4c83fc + 21339ab commit 83ad921

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_MTB_STM_S2LP/PeripheralNames.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ typedef enum {
5858
UART_8 = (int)UART8_BASE
5959
} UARTName;
6060

61+
6162
#define SPI_COUNT 6
6263
typedef enum {
6364
SPI_1 = (int)SPI1_BASE,

targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_MTB_STM_S2LP/PinNames.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ typedef enum {
275275
SPI1_SCK = PB_10,
276276
SPI1_CS = PD_1, //MX25R Chip Select
277277

278-
// See JIRA IOTTHD-2908
279278
SPI2_MOSI = PC_12,
280279
SPI2_MISO = PC_11,
281280
SPI2_SCK = PC_10,

targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_MTB_STM_S2LP/system_clock.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ void SystemInit(void)
6060
#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
6161
SCB->CPACR |= ((3UL << 10 * 2) | (3UL << 11 * 2)); /* set CP10 and CP11 Full Access */
6262
#endif
63+
6364
/* Reset the RCC clock configuration to the default reset state ------------*/
6465
/* Set HSION bit */
6566
RCC->CR |= (uint32_t)0x00000001;
@@ -89,7 +90,6 @@ void SystemInit(void)
8990
#else
9091
SCB->VTOR = NVIC_FLASH_VECTOR_ADDRESS; /* Vector Table Relocation in Internal FLASH */
9192
#endif
92-
9393
}
9494

9595
/**
@@ -237,4 +237,5 @@ uint8_t SetSysClock_PLL_HSI(void)
237237

238238
return 1;
239239
}
240-
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
240+
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
241+

0 commit comments

Comments
 (0)