Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions components/drivers/graphic/framebuffer/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ menuconfig RT_GRAPHIC_FB
select RT_USING_LCD
default y

config RT_GRAPHIC_FB_ILI9486
bool "ILI9486 framebuffer support"
depends on RT_GRAPHIC_FB
depends on RT_USING_SPI
default n

config RT_GRAPHIC_FB_SIMPLE
bool "Simple framebuffer support"
depends on RT_GRAPHIC_FB
Expand Down
3 changes: 3 additions & 0 deletions components/drivers/graphic/framebuffer/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ CPPPATH = [cwd + '/../../include']

src = []

if GetDepend(['RT_GRAPHIC_FB_ILI9486']):
src += ['fb-ili9486.c']

if GetDepend(['RT_GRAPHIC_FB_SIMPLE']):
src += ['fb-simple.c']

Expand Down
Loading
Loading