summaryrefslogtreecommitdiff
path: root/apps/interpreters/micropython/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/interpreters/micropython/Kconfig')
-rw-r--r--apps/interpreters/micropython/Kconfig34
1 files changed, 34 insertions, 0 deletions
diff --git a/apps/interpreters/micropython/Kconfig b/apps/interpreters/micropython/Kconfig
new file mode 100644
index 000000000..82f345148
--- /dev/null
+++ b/apps/interpreters/micropython/Kconfig
@@ -0,0 +1,34 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config INTERPRETERS_MICROPYTHON
+ bool "Micro Python support"
+ default n
+ ---help---
+ Enable support for the Micro Python interpreter
+
+if INTERPRETERS_MICROPYTHON
+
+config INTERPRETERS_MICROPYTHON_APPNAME
+ string "Executable name"
+ default "micropython"
+ depends on NSH_BUILTIN_APPS
+
+config INTERPRETERS_MICROPYTHON_STACKSIZE
+ int "Interpreter stack size"
+ default 2048
+ depends on NSH_BUILTIN_APPS
+
+config INTERPRETERS_MICROPYTHON_PRIORITY
+ int "Interpreter priority"
+ default 100
+ depends on NSH_BUILTIN_APPS
+
+CONFIG_INTERPRETERS_MICROPYTHON_PROGNAME
+ string "Program name"
+ default "micropython"
+ depends on BUILD_KERNEL
+
+endif # INTERPRETERS_MICROPYTHON \ No newline at end of file