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