There was an error while loading. Please reload this page.
1 parent 5700c4a commit 8293ae3Copy full SHA for 8293ae3
3 files changed
components/drivers/graphic/framebuffer/Kconfig
@@ -3,6 +3,12 @@ menuconfig RT_GRAPHIC_FB
3
select RT_USING_LCD
4
default y
5
6
+config RT_GRAPHIC_FB_ILI9486
7
+ bool "ILI9486 framebuffer support"
8
+ depends on RT_GRAPHIC_FB
9
+ depends on RT_USING_SPI
10
+ default n
11
+
12
config RT_GRAPHIC_FB_SIMPLE
13
bool "Simple framebuffer support"
14
depends on RT_GRAPHIC_FB
components/drivers/graphic/framebuffer/SConscript
@@ -11,6 +11,9 @@ CPPPATH = [cwd + '/../../include']
src = []
+if GetDepend(['RT_GRAPHIC_FB_ILI9486']):
15
+ src += ['fb-ili9486.c']
16
17
if GetDepend(['RT_GRAPHIC_FB_SIMPLE']):
18
src += ['fb-simple.c']
19
0 commit comments