0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-07-01 05: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 --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. --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' --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 M.DEBUG_API = true
@ -46,7 +46,9 @@ M.network_ap_address = {
M.network_ap_key = { M.network_ap_key = {
default = '', default = '',
type = 'string', type = 'string',
description = 'Access Point security key' description = 'Access Point security key',
min = 8,
max = 63
} }
M.network_ap_netmask = { M.network_ap_netmask = {