vrmay23 commented on code in PR #3065:
URL: https://github.com/apache/nuttx-apps/pull/3065#discussion_r2076129123


##########
examples/posix_stdio/Kconfig:
##########
@@ -0,0 +1,20 @@
+config EXAMPLES_POSIX_STDIO                                          # Defines 
new configuration
+       bool "Posix STDIO"                                                      
                                                                                
                                                         # Real name inside 
menuconfig
+       default n                                                          # 
Enabling this config by default
+       ---help---                                                         # 
Text used to show the example purpose
+       POSIX Style. Using open(), write() and close() via /dev/console
+
+config EXAMPLES_POSIX_STDIO_PROGNAME
+       string "Program name"
+       default "posix_stdio"                                                   
               # app name (NSH> hello_nuttx)
+       depends on EXAMPLES_POSIX_STDIO
+
+config EXAMPLES_POSIX_STDIO_PRIORITY
+       int "POSIX_STDIO test priority"
+       default 100
+       depends on EXAMPLES_POSIX_STDIO
+
+config EXAMPLES_POSIX_STDIO_STACKSIZE
+       int "POSIX_STDIO test stack size"
+       default 2048
+       depends on EXAMPLES_POSIX_STDIO

Review Comment:
   Ok. Done!



-- 
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

Reply via email to