1# Copyright (c) 2020 Teslabs Engineering S.L.
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_BUYDISPLAY_2_8_TFT_TOUCH_ARDUINO
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 16
23
24choice LV_COLOR_DEPTH
25	default LV_COLOR_DEPTH_16
26endchoice
27
28configdefault LV_COLOR_16_SWAP
29	default y
30
31config INPUT
32	default y
33
34endif # LVGL
35
36endif # DISPLAY
37
38endif # SHIELD_BUYDISPLAY_2_8_TFT_TOUCH_ARDUINO
39