1# Copyright (c) 2019 Linaro Limited
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_ADAFRUIT_2_8_TFT_TOUCH_V2 || SHIELD_ADAFRUIT_2_8_TFT_TOUCH_V2_NANO
5
6if DISPLAY
7
8if INPUT
9
10# NOTE: Enable if IRQ line is available (requires to solder jumper)
11config INPUT_FT5336_INTERRUPT
12	default n
13
14endif # INPUT
15
16if LVGL
17
18config LV_Z_VDB_SIZE
19	default 64
20
21config LV_Z_BITS_PER_PIXEL
22	default 24
23
24choice LV_COLOR_DEPTH
25	default LV_COLOR_DEPTH_32
26endchoice
27
28config INPUT
29	default y
30
31endif # LVGL
32
33endif # DISPLAY
34
35if DISK_DRIVERS
36
37config DISK_DRIVER_SDMMC
38	default y
39
40endif # DISK_DRIVERS
41
42endif # SHIELD_ADAFRUIT_2_8_TFT_TOUCH_V2
43