MAX32690EVKIT board has CFAF128128B1-0145T display which is 128x128 graphic display. The pins goes to display is not standard SPI interface, it requires SPI bitbanging to drive display. This commit enables mpi dbi display support with LVGL graphic library Pin connection of display is 3wire mode Signed-off-by: Sadik Ozer <sadik.ozer@analog.com>
30 lines
417 B
Plaintext
30 lines
417 B
Plaintext
# MAX32690EVKIT boards configuration
|
|
|
|
# Copyright (c) 2024 Analog Devices, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_MAX32690EVKIT
|
|
|
|
if DISPLAY
|
|
|
|
config MIPI_DBI_SPI_3WIRE
|
|
default y
|
|
|
|
if LVGL
|
|
|
|
config LV_Z_BITS_PER_PIXEL
|
|
default 16
|
|
|
|
choice LV_COLOR_DEPTH
|
|
default LV_COLOR_DEPTH_16 # 16 bit per pixel
|
|
endchoice
|
|
|
|
config LV_COLOR_16_SWAP
|
|
default y
|
|
|
|
endif # LVGL
|
|
|
|
endif # DISPLAY
|
|
|
|
endif # BOARD_MAX32690EVKIT
|