mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
* Updated runtime gating to enable LilyGO T-Deck specific apps and services * New device compatibility and model-detection APIs * Added a buffer-overflow error code and message * Updated GitHub Actions checkout to v4 * Adjusted an LVGL-related library version * Device config now emits a T-Deck workaround flag when applicable * Removed internal developer comments and minor cleanups
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
|