From 8e09d58e7e6259c9c9448abacba41ae34a69f9b2 Mon Sep 17 00:00:00 2001 From: tanek liang Date: Sat, 5 Aug 2017 21:13:37 +0800 Subject: [PATCH] [Bsp] stm32f107 delete c99 mode code --- bsp/stm32f107/drivers/rt_stm32f10x_spi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bsp/stm32f107/drivers/rt_stm32f10x_spi.c b/bsp/stm32f107/drivers/rt_stm32f10x_spi.c index 124c41945b..08d24c75eb 100644 --- a/bsp/stm32f107/drivers/rt_stm32f10x_spi.c +++ b/bsp/stm32f107/drivers/rt_stm32f10x_spi.c @@ -419,8 +419,9 @@ rt_err_t stm32_spi_register(SPI_TypeDef * SPI, { rt_err_t res = RT_EOK; NVIC_InitTypeDef NVIC_InitStructure; - RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE); rt_uint32_t flags = 0; + RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE); + if(SPI == SPI1) { stm32_spi->SPI = SPI1;