You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
426 B
20 lines
426 B
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config INTERPRETERS_DUKTAPE
|
|
tristate "Duktape JavaScript interpreter"
|
|
default n
|
|
|
|
if INTERPRETERS_DUKTAPE
|
|
|
|
config INTERPRETERS_DUKTAPE_PRIORITY
|
|
int "Duktape interpreter priority"
|
|
default 100
|
|
|
|
config INTERPRETERS_DUKTAPE_STACKSIZE
|
|
int "Duktape interpreter stack size"
|
|
default 8192
|
|
|
|
endif
|
|
|