From 1fbf30e6fe17c26040e430a0cceb22adf8e2dfea Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 25 Nov 2017 13:14:28 -0600 Subject: [PATCH] apps/graphics/pdcurses and apps/examples/fb: Both assume that bits are packed MS first. --- examples/fb/Kconfig | 1 + graphics/pdcurs34/Kconfig | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/fb/Kconfig b/examples/fb/Kconfig index 26ee9eecb..9872ae6b2 100644 --- a/examples/fb/Kconfig +++ b/examples/fb/Kconfig @@ -6,6 +6,7 @@ config EXAMPLES_FB bool "Framebuffer driver example" default n + select LCD_PACKEDFIRST if LCD depends on VIDEO_FB ---help--- Enable the Framebuffer driver example. diff --git a/graphics/pdcurs34/Kconfig b/graphics/pdcurs34/Kconfig index cbc3a0528..f88e8ab86 100644 --- a/graphics/pdcurs34/Kconfig +++ b/graphics/pdcurs34/Kconfig @@ -7,6 +7,8 @@ menuconfig GRAPHICS_PDCURSES bool "pdcurses Text User Interface (TUI)" default n select NXFONTS + select NXFONTS_PACKEDMSFIRST + select LCD_PACKEDFIRST if LCD ---help--- Enable support for the pdcurses Text User Interface (TUI) libray. @@ -14,4 +16,3 @@ if GRAPHICS_PDCURSES source "$APPSDIR/graphics/pdcurs34/pdcurses/Kconfig" source "$APPSDIR/graphics/pdcurs34/nuttx/Kconfig" endif # GRAPHICS_PDCURSES -