nuttx-apps/graphics/traveler/Kconfig

40 lines
943 B
Plaintext
Raw Normal View History

2014-11-30 16:25:41 +01:00
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
if GRAPHICS_TRAVELER
choice
prompt "Color format"
default GRAPHICS_TRAVELER_RGB16_565
config GRAPHICS_TRAVELER_RGB16_565
bool "RGB16 565"
config GRAPHICS_TRAVELER_RGB32_888
bool "RGB32 888 (no transparency)"
endchoice # Color format
config GRAPHICS_TRAVELER_PERFMON
bool "Performance monitor"
default y
depends on FS_READABLE
---help---
Enable or disable performance monitoring instrumentation and output.
2014-11-30 16:25:41 +01:00
config GRAPHICS_TRAVELER_DEBUG_LEVEL
int "Debug output level"
default 0
range 0 3
---help---
DEBUG_LEVEL == 3 turns off sound and video and enables verbose debug
messages on stdout.
DEBUG_LEVEL == 2 turns off sound and video and enables normal debug
output
DEBUG_LEVEL == 1 turns off sound and enables normal debug output
OTHERWISE, all debugging features are disabled.
endif # GRAPHICS_TRAVELER