1# Copyright (c) 2020 Rohit Gujarathi
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_LS013B7DH03
5
6if DISPLAY
7
8config SPI
9	default y
10
11config LS0XX
12	default y
13
14if LVGL
15
16config LVGL_DISPLAY_DEV_NAME
17	string "Display device name"
18	default "LS0XX"
19
20config LVGL_HOR_RES_MAX
21	int "Horizantal resolution"
22	default 128
23
24config LVGL_VER_RES_MAX
25	int "Vertical resolution"
26	default 128
27
28config LVGL_VDB_SIZE
29	int "Display buffer percentage"
30	default 16
31
32config LVGL_DPI
33	int "Dots per inch"
34	default 150
35
36config LVGL_BITS_PER_PIXEL
37	int "Number of bits per pixel"
38	default 1
39
40choice LVGL_COLOR_DEPTH
41	default LVGL_COLOR_DEPTH_1
42endchoice
43
44endif # LVGL
45
46endif # DISPLAY
47
48endif # SHIELD_LS013B7DH03
49