0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-06-26 11:31:23 +02:00

Added access point min max

This commit is contained in:
peteruithoven 2013-10-17 14:03:30 +02:00
parent 1425d5ef90
commit cd6754bfe1

View File

@ -18,7 +18,7 @@ local M = {}
--NOTE: pcall protects from invocation exceptions, which is what we need except
--during debugging. This flag replaces them with a normal call so we can inspect stack traces.
M.DEBUG_PCALLS = false
M.DEBUG_PCALLS = true
--This enables debugging of the REST API from the command-line, specify the path and optionally the request method as follows: 'p=/mod/func rq=POST'
M.DEBUG_API = true
@ -44,9 +44,11 @@ M.network_ap_address = {
}
M.network_ap_key = {
default = '',
type = 'string',
description = 'Access Point security key'
default = '',
type = 'string',
description = 'Access Point security key',
min = 8,
max = 63
}
M.network_ap_netmask = {