mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2025-01-03 08:13:49 +01:00
Added access point min max
This commit is contained in:
parent
1425d5ef90
commit
cd6754bfe1
@ -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
|
||||||
@ -44,9 +44,11 @@ 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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user