1# Copyright (c) 2025 Arduino SA
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_ARDUINO_GIGA_DISPLAY_SHIELD
5
6if LVGL
7
8config INPUT
9	default y
10
11config LV_Z_BITS_PER_PIXEL
12	default 16
13
14config LV_DPI_DEF
15	default 128
16
17config LV_Z_FLUSH_THREAD
18	default y
19
20choice LV_COLOR_DEPTH
21	default LV_COLOR_DEPTH_16
22
23endchoice
24
25endif # LVGL
26
27endif # SHIELD_ARDUINO_GIGA_DISPLAY_SHIELD
28