We're now using the Kconfig copied from the upstream lvgl repository. It uses the LV_ prefix for all options while we're using LVGL_ for Zephyr-specific ones. Make the latter consistent with upstream but also make sure they're distinct from lvgl's by using LV_Z_ as the prefix. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@huawei.com>
15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
# Copyright (c) 2020 Jabil Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config KSCAN_SDL
|
|
bool "SDL event filter for touch panel emulation"
|
|
depends on HAS_SDL
|
|
help
|
|
Enable driver for the SDL mouse event filter.
|
|
|
|
config SDL_POINTER_KSCAN_DEV_NAME
|
|
string "SDL kscan device name"
|
|
depends on KSCAN_SDL
|
|
default LV_Z_POINTER_KSCAN_DEV_NAME if LVGL
|
|
default "SDL_KSCAN"
|