This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 8b49e17f1f stm32f429i-disco: disable TM32_FB_CMAP
8b49e17f1f is described below
commit 8b49e17f1fd6cb373099df0666037baaa43fa5d4
Author: jianglianfang <[email protected]>
AuthorDate: Wed Oct 9 15:24:08 2024 +0800
stm32f429i-disco: disable TM32_FB_CMAP
The default bpp is STM32_LTDC_L1_L8, when TM32_FB_CMAP=y,and The default
bpp is STM32_LTDC_L1_RGB565 when TM32_FB_CMAP=n. The color-format bpp of
stm32f429i is 16, so we should be disable TM32_FB_CMAP, otherwise fb demo will
result in an error.
Signed-off-by: jianglianfang <[email protected]>
---
boards/arm/stm32/stm32f429i-disco/configs/fb/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/boards/arm/stm32/stm32f429i-disco/configs/fb/defconfig
b/boards/arm/stm32/stm32f429i-disco/configs/fb/defconfig
index de2abd2fd9..80331ee347 100644
--- a/boards/arm/stm32/stm32f429i-disco/configs/fb/defconfig
+++ b/boards/arm/stm32/stm32f429i-disco/configs/fb/defconfig
@@ -6,6 +6,7 @@
# modifications.
#
# CONFIG_ARCH_FPU is not set
+# CONFIG_STM32_FB_CMAP is not set
# CONFIG_STM32_FLASH_PREFETCH is not set
CONFIG_ARCH="arm"
CONFIG_ARCH_BOARD="stm32f429i-disco"