Use configdefault when enabling LV_COLOR_SWAP_16 within boards and shield definitions, to avoid OR'ing the dependencies for the Kconfig symbol. Otherwise, a user manually selecting LV_COLOR_DEPTH will encounter build errors as LV_COLOR_SWAP_16 may be enabled when LV_COLOR_DEPTH_16 is not selected Fixes #81546 Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
# M5Stack AtomS3 board configuration
|
|
# Copyright (c) 2023 Benjamin Cabé <benjamin@zephyrproject.org>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_M5STACK_ATOMS3_ESP32S3_PROCPU
|
|
|
|
configdefault LV_COLOR_16_SWAP
|
|
default y if LVGL
|
|
|
|
endif # BOARD_M5STACK_ATOMS3_ESP32S3_PROCPU
|