summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nuttx/examples/nx/nx_internal.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/nuttx/examples/nx/nx_internal.h b/nuttx/examples/nx/nx_internal.h
index 6ae52869b..ce1f61771 100644
--- a/nuttx/examples/nx/nx_internal.h
+++ b/nuttx/examples/nx/nx_internal.h
@@ -53,10 +53,6 @@
# define CONFIG_EXAMPLES_NX_VPLANE 0
#endif
-#ifndef CONFIG_EXAMPLES_NX_STACKSIZE
-# define CONFIG_EXAMPLES_NX_STACKSIZE 2048
-#endif
-
#ifndef CONFIG_EXAMPLES_NX_BGCOLOR
# define CONFIG_EXAMPLES_NX_BGCOLOR ' '
#endif
@@ -69,6 +65,21 @@
# define CONFIG_EXAMPLES_NX_COLOR2 '2'
#endif
+#ifdef CONFIG_NX_MULTIUSER
+# ifdef CONFIG_DISABLE_MQUEUE
+# error "The multi-threaded example requires MQ support (CONFIG_DISABLE_MQUEUE=n)"
+# endif
+# ifdef CONFIG_DISABLE_SIGNALS
+# error "This example requires signal support (CONFIG_DISABLE_SIGNALS=n)"
+# endif
+# ifndef CONFIG_EXAMPLES_NX_STACKSIZE
+# define CONFIG_EXAMPLES_NX_STACKSIZE 2048
+# endif
+# ifndef CONFIG_EXAMPLES_NX_SERVERPRIO
+# define CONFIG_EXAMPLES_NX_SERVERPRIO 100
+# endif
+#endif
+
/* Debug ********************************************************************/
#ifdef CONFIG_CPP_HAVE_VARARGS