1# MAX32672FTHR boards configuration 2 3# Copyright (c) 2024 Analog Devices, Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_MAX32672FTHR 7 8if DISPLAY 9 10if LVGL 11 12# LVGL should allocate buffers equal to size of display 13config LV_Z_VDB_SIZE 14 default 64 15 16# Default Dot Per Inch. [px/inch] 17# Used to initialize default sizes such as widgets sized, style paddings. 18config LV_DPI_DEF 19 default 128 20 21config LV_Z_BITS_PER_PIXEL 22 default 1 23 24# Use offloaded render thread 25config LV_Z_FLUSH_THREAD 26 default y 27 28choice LV_COLOR_DEPTH 29 default LV_COLOR_DEPTH_1 # 1 byte per pixel 30endchoice 31 32endif # LVGL 33 34endif # DISPLAY 35 36endif # BOARD_MAX32672FTHR 37