[dm][input] support input #11031

This commit is contained in:
GUI
2025-12-10 16:58:10 +08:00
committed by GitHub
parent 357c9b7b5a
commit 3ff3fc3948
19 changed files with 2207 additions and 0 deletions
@@ -0,0 +1,18 @@
from building import *
group = []
if not GetDepend(['RT_INPUT_KEYBOARD']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../../include']
src = []
if GetDepend(['RT_INPUT_KEYBOARD_GPIO']):
src += ['keys-gpio.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')