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>
15 lines
253 B
Plaintext
15 lines
253 B
Plaintext
# Copyright 2023 Google LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if INPUT
|
|
|
|
menu "Input drivers"
|
|
|
|
source "drivers/input/Kconfig.ft5336"
|
|
source "drivers/input/Kconfig.gpio_keys"
|
|
source "drivers/input/Kconfig.sdl"
|
|
|
|
endmenu # Input Drivers
|
|
|
|
endif # INPUT
|