aboutsummaryrefslogtreecommitdiffstats
path: root/boards/base/STM32F429i-Discovery
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-02-24 11:49:30 +1000
committerinmarket <andrewh@inmarket.com.au>2018-02-24 11:49:30 +1000
commitaeef03a83e59745f06d9b30a5dbbc4eea7170df5 (patch)
tree6b79eb91ba4cf8704a955a24b362fd60017b52ca /boards/base/STM32F429i-Discovery
parent891b78a62c5f65163f81e39b3fa679210611f1d6 (diff)
downloaduGFX-aeef03a83e59745f06d9b30a5dbbc4eea7170df5.tar.gz
uGFX-aeef03a83e59745f06d9b30a5dbbc4eea7170df5.tar.bz2
uGFX-aeef03a83e59745f06d9b30a5dbbc4eea7170df5.zip
Updates to standard STM32LTDC based boards to ensure the LTDC clock is fully operational before continuing
Diffstat (limited to 'boards/base/STM32F429i-Discovery')
-rw-r--r--boards/base/STM32F429i-Discovery/chibios/board_STM32LTDC.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/boards/base/STM32F429i-Discovery/chibios/board_STM32LTDC.h b/boards/base/STM32F429i-Discovery/chibios/board_STM32LTDC.h
index 274f4890..a6e41f86 100644
--- a/boards/base/STM32F429i-Discovery/chibios/board_STM32LTDC.h
+++ b/boards/base/STM32F429i-Discovery/chibios/board_STM32LTDC.h
@@ -189,6 +189,7 @@ static void init_board(GDisplay *g) {
RCC->PLLSAICFGR = (STM32_PLLSAIN_VALUE << 6) | (STM32_PLLSAIR_VALUE << 28) | (STM32_PLLSAIQ_VALUE << 24);
RCC->DCKCFGR = (RCC->DCKCFGR & ~RCC_DCKCFGR_PLLSAIDIVR) | STM32_PLLSAIR_POST;
RCC->CR |= RCC_CR_PLLSAION;
+ while(!(RCC->CR & RCC_CR_PLLSAIRDY)); // wait for PLLSAI to lock
// Initialise the SDRAM
SDRAM_Init();