vrmay23 opened a new pull request, #3082: URL: https://github.com/apache/nuttx-apps/pull/3082
## Summary When I have submitted the example, somehow, there was an issue on the Kconfig, where the stack size was absent. Thus, it cause an issue to compile nuttx when 'examples/posix_stdio' was included. Now it was tested properly and it is as expected. ## Impact To fix the example, it was needed to add the the following onto Kconfig file: config EXAMPLES_POSIX_STDIO_STACKSIZE int "POSIX_STDIO stack size" default 2048 depends on EXAMPLES_POSIX_STDIO ## Testing vinicius@labs:~/embedded_sys/nuttxspace/nuttx$ ./nuttx NuttShell (NSH) NuttX-12.9.0 nsh> uname -a NuttX 12.9.0 de0c697db8 May 25 2025 17:39:28 sim sim nsh> nsh> nsh> posix_stdio Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! Hello, NuttX users, welcome!!! nsh> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org