2016-09-20 05:35:56 +02:00
|
|
|
menu "NodeMCU modules"
|
|
|
|
|
2016-10-04 05:47:41 +02:00
|
|
|
menu "Core Lua modules"
|
|
|
|
|
|
|
|
config LUA_BUILTIN_STRING
|
|
|
|
bool "String module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the string module (recommended).
|
|
|
|
|
|
|
|
config LUA_BUILTIN_TABLE
|
|
|
|
bool "Table module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the table module (recommended).
|
|
|
|
|
|
|
|
config LUA_BUILTIN_COROUTINE
|
|
|
|
bool "Coroutine module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the coroutine module (recommended).
|
|
|
|
|
|
|
|
config LUA_BUILTIN_MATH
|
|
|
|
bool "Math module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the math module (recommended).
|
|
|
|
|
|
|
|
config LUA_BUILTIN_DEBUG
|
|
|
|
bool "Debug module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the debug module.
|
|
|
|
|
|
|
|
config LUA_BUILTIN_DEBUG_EXTENDED
|
|
|
|
depends on LUA_BUILTIN_DEBUG
|
2016-10-06 08:24:08 +02:00
|
|
|
bool "Extended debug support"
|
2016-10-04 05:47:41 +02:00
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the full debug module, rather than just getregistry and traceback.
|
|
|
|
|
|
|
|
config LUA_BUILTIN_DEBUG_MINIMAL
|
|
|
|
depends on LUA_BUILTIN_DEBUG
|
|
|
|
bool
|
|
|
|
default !LUA_BUILTIN_DEBUG_EXTENDED
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2016-09-20 05:35:56 +02:00
|
|
|
|
2016-11-17 11:56:51 +01:00
|
|
|
config LUA_MODULE_BIT
|
|
|
|
bool "Bit module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the bit module. This module provide bit manipulation functions
|
|
|
|
on Lua numbers.
|
2016-10-06 08:24:08 +02:00
|
|
|
|
|
|
|
config LUA_MODULE_BTHCI
|
|
|
|
bool "BlueTooth HCI interface module"
|
|
|
|
default "n"
|
2016-09-22 09:18:22 +02:00
|
|
|
help
|
2016-10-06 08:24:08 +02:00
|
|
|
Includes the simple BlueTooth HCI module.
|
2016-09-22 09:18:22 +02:00
|
|
|
|
2016-09-28 09:58:44 +02:00
|
|
|
config LUA_MODULE_ENCODER
|
|
|
|
bool "Encoder module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the encoder module. This provides hex and base64 encoding and
|
|
|
|
decoding functionality.
|
|
|
|
|
2016-10-06 08:24:08 +02:00
|
|
|
config LUA_MODULE_FILE
|
|
|
|
bool "File module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the file module (recommended).
|
|
|
|
|
2016-11-26 11:54:05 +01:00
|
|
|
config LUA_MODULE_GPIO
|
|
|
|
bool "GPIO module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the GPIO module (recommended).
|
|
|
|
|
2016-10-06 08:24:08 +02:00
|
|
|
config LUA_MODULE_NET
|
|
|
|
bool "Net module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the net module (recommended).
|
|
|
|
|
|
|
|
config LUA_MODULE_NODE
|
|
|
|
bool "Node module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the node module (recommended).
|
|
|
|
|
2016-11-17 11:48:31 +01:00
|
|
|
config LUA_MODULE_STRUCT
|
|
|
|
bool "Struct module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the struct module. This module provides [un]packing of raw
|
|
|
|
byte strings into Lua values and vice versa.
|
|
|
|
|
2016-10-03 08:42:28 +02:00
|
|
|
config LUA_MODULE_WIFI
|
|
|
|
bool "WiFi module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the WiFi module (recommended).
|
|
|
|
|
2016-09-20 05:35:56 +02:00
|
|
|
endmenu
|