b76ac9a851
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>
11 lines
281 B
Plaintext
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.
|