1# Copyright (c) 2019 Linaro Limited
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_SSD1306_128X64 || SHIELD_SSD1306_128X64_SPI || SHIELD_SSD1306_128X32 || SHIELD_SH1106_128X64
5
6if DISPLAY
7
8if LVGL
9
10config LV_Z_VDB_SIZE
11	default 64
12
13config LV_DPI_DEF
14	default 116 if SHIELD_SH1106_128X64
15	default 148
16
17config LV_Z_BITS_PER_PIXEL
18	default 1
19
20choice LV_COLOR_DEPTH
21	default LV_COLOR_DEPTH_1
22endchoice
23
24endif # LVGL
25
26endif # DISPLAY
27
28endif # SHIELD_SSD1306_128X64 || SHIELD_SSD1306_128X64_SPI || SHIELD_SSD1306_128X32 || SHIELD_SH1106_128X64
29