stm32f429i-disco: initialize ltdc during bootup

Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
This commit is contained in:
Gregory Nutt 2014-12-19 14:05:19 -06:00
parent 61c927904f
commit 8d6614b9af
1 changed files with 4 additions and 0 deletions

View File

@ -104,6 +104,10 @@ void stm32_boardinitialize(void)
#ifdef CONFIG_STM32_FSMC #ifdef CONFIG_STM32_FSMC
stm32_enablefsmc(); stm32_enablefsmc();
#endif #endif
#ifdef CONFIG_STM32_LTDC
up_fbinitialize();
#endif
} }
/**************************************************************************** /****************************************************************************