nuttx-apps/system/irtest/Kconfig
Tiago Medicci 6cb1a04fe7 system/irtest: Fix issues regarding portability and buffer size
This commit fixes issues regarding portability by using variables
with fixed width (and their format macro constants).

Signed-off-by: Tiago Medicci <tiago.medicci@espressif.com>
2026-04-24 14:58:05 +02:00

38 lines
835 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_IRTEST
tristate "IR driver test"
default n
depends on DRIVERS_RC
---help---
Enable the IR driver test
if SYSTEM_IRTEST
config SYSTEM_IRTEST_PROGNAME
string "Program name"
default "irtest"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_IRTEST_PRIORITY
int "IR driver test task priority"
default 100
config SYSTEM_IRTEST_STACKSIZE
int "IR driver test stack size"
default DEFAULT_TASK_STACKSIZE
config SYSTEM_IRTEST_MAX_NIRDEV
int "The Maximum number of IR devices supported"
default 2
config SYSTEM_IRTEST_MAX_SIRDATA
int "The Maximum size of sending data in nwords (4 bytes)"
default 64
endif