Browse Source

[bsp][stm32] update ports/drv_spi_lcd.c

guozhanxin 6 years ago
parent
commit
6e882807fd
1 changed files with 2 additions and 4 deletions
  1. 2 4
      bsp/stm32/stm32l496-ali-developer/board/ports/drv_spi_lcd.c

+ 2 - 4
bsp/stm32/stm32l496-ali-developer/board/ports/drv_spi_lcd.c

@@ -14,14 +14,12 @@
 #include <rthw.h>
 #include <finsh.h>
 
-#define BSP_USING_SPI_LCD
-
 #ifdef BSP_USING_SPI_LCD
 
 static int rt_hw_spi_lcd_init(void)
 {
-	  rt_hw_spi_device_attach("spi1", "spi10", GPIOA, GPIO_PIN_4);
-	
+    rt_hw_spi_device_attach("spi1", "spi10", GPIOA, GPIO_PIN_4);
+
     return RT_EOK;
 }
 INIT_PREV_EXPORT(rt_hw_spi_lcd_init);