zephyr/drivers/input/Kconfig.sdl
Fabio Baltieri b76ac9a851 input: convert the kscan_sdl driver from kscan to input
Convert the SDL driver to use the input subsystem. This is specifically
meant to emulate touchscreen drivers, so it's setup to send triplet of
x, y, touch for touch-on events and just touch off on touch off events.

Renamed the driver to input-sdl-touch since now we can also develop an
sdl driver for simulating key events.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2023-04-11 09:34:23 +02:00

11 lines
281 B
Plaintext

# Copyright (c) 2020 Jabil Inc.
# SPDX-License-Identifier: Apache-2.0
config INPUT_SDL_TOUCH
bool "SDL event filter for touch panel emulation"
default y
depends on DT_HAS_ZEPHYR_INPUT_SDL_TOUCH_ENABLED
depends on HAS_SDL
help
Enable driver for the SDL mouse event filter.