Add a driver for the Nintendo Nunchuk, accessed through the I2C bus. This driver only supports the joystick and the buttons, not the accelerometer. Signed-off-by: Miguel Gazquez <miguel.gazquez@bootlin.com>
10 lines
264 B
Text
10 lines
264 B
Text
# Copyright (c) 2024 Bootlin
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config INPUT_NUNCHUK
|
|
bool "Nintendo Nunchuk joystick"
|
|
default y
|
|
depends on DT_HAS_NINTENDO_NUNCHUK_ENABLED
|
|
select I2C
|
|
help
|
|
This option enable the driver for the Nintendo Nunchuk joystick.
|