Support for the MIO283QT9A LCD from Toby Duckworth

This commit is contained in:
Gregory Nutt
2014-02-10 12:26:08 -06:00
parent a9f5fdd35d
commit 527dcacb64
5 changed files with 570 additions and 4 deletions
+4
View File
@@ -94,6 +94,10 @@ ifeq ($(CONFIG_LCD_MIO283QT2),y)
CSRCS += up_mio283qt2.c
endif
ifeq ($(CONFIG_LCD_MIO283QT9A),y)
CSRCS += up_mio283qt9a.c
endif
ifeq ($(CONFIG_VS1053),y)
CSRCS += up_vs1053.c
endif
@@ -250,7 +250,7 @@ void weak_function stm32_usbinitialize(void);
*
****************************************************************************************************/
#ifdef CONFIG_LCD_MIO283QT2
#if defined(CONFIG_LCD_MIO283QT2) || defined(CONFIG_LCD_MIO283QT9A)
void stm32_lcdinitialize(void);
#endif
@@ -263,7 +263,7 @@ void stm32_lcdinitialize(void);
*
****************************************************************************************************/
#ifdef CONFIG_LCD_MIO283QT2
#if defined(CONFIG_LCD_MIO283QT2) || defined(CONFIG_LCD_MIO283QT9A)
int up_lcdinitialize(void);
#endif
+1 -1
View File
@@ -79,7 +79,7 @@ void stm32_boardinitialize(void)
/* Configure GPIOs for controlling the LCD */
#ifdef CONFIG_LCD_MIO283QT2
#if defined(CONFIG_LCD_MIO283QT2) || defined(CONFIG_LCD_MIO283QT9A)
stm32_lcdinitialize();
#endif
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -356,7 +356,7 @@ int nsh_archinitialize(void)
}
#endif
#ifdef CONFIG_LCD_MIO283QT2
#if defined(CONFIG_LCD_MIO283QT2) || defined(CONFIG_LCD_MIO283QT9A)
/* Configure the TFT LCD module */
message("nsh_archinitialize: Initializing TFT LCD module\n");