mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
23 lines
945 B
Plaintext
23 lines
945 B
Plaintext
# Kconfig file for Tactility example app
|
|
menu "Tactility App"
|
|
config TT_DEVICE_NAME
|
|
string "Device Name"
|
|
default ""
|
|
config TT_DEVICE_ID
|
|
string "Device Identifier"
|
|
default ""
|
|
# T-Deck device-related code was directly referenced from Tactility in a pull request.
|
|
# This breaks other devices because the code does not exist in those implementations.
|
|
# Until we move it out into a proper driver, we have to have pre-processor definition for that.
|
|
config TT_TDECK_WORKAROUND
|
|
bool "Temporary work-around until we fix the T-Deck keyboard and trackball settings"
|
|
default n
|
|
config TT_SPLASH_DURATION
|
|
int "Splash Duration (ms)"
|
|
default 1000
|
|
range 0 3000
|
|
help
|
|
The minimum time to show the splash screen in milliseconds.
|
|
When set to 0, startup will continue to desktop as soon as boot operations are finished.
|
|
endmenu
|