mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-04 19:07:16 +08:00

Fix the Kconfig file for the posix_stdio example by adding the STACKSIZE symbol and setting it to DEFAULT_TASK_STACKSIZE. This change ensures that the example builds properly and respects system-wide stack size configuration. Signed-off-by: Vinicius May <vmay.sweden@gmail.com>
27 lines
675 B
Plaintext
27 lines
675 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_POSIX_STDIO
|
|
bool "Posix stdio example"
|
|
default n
|
|
---help---
|
|
Enable POSIX stdio example that shows how to use open(), write() and
|
|
close() via /dev/console.
|
|
|
|
config EXAMPLES_POSIX_STDIO_PROGNAME
|
|
string "Program name"
|
|
default "posix_stdio"
|
|
depends on EXAMPLES_POSIX_STDIO
|
|
|
|
config EXAMPLES_POSIX_STDIO_PRIORITY
|
|
int "POSIX_STDIO priority"
|
|
default 100
|
|
depends on EXAMPLES_POSIX_STDIO
|
|
|
|
config EXAMPLES_POSIX_STDIO_STACKSIZE
|
|
int "POSIX_STDIO stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
depends on EXAMPLES_POSIX_STDIO
|