mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-31 21:59:22 +03:00
Boot phase: Add more error handling + provide verbose output in error cases (#2020)
* WLAN: add error handling * WLAN: parameter global struct * WLAN.ini -> more info text * RSSIThreshold * Rename logs * Boot process: error handling * Update texts * Comments * Init sequence * Prepare for check dir creation * add check makedir, update logs * Blink code for OTA+SoftAP * Blink code for missing time snyc * Update * reboot -> switch LED off * Update log texts * Update * Update log texts * create empty default folders at startup * Update * Adapt log level * Print log level switch * Update * Update text * Add SD free space to log * WIFI/MQTT disconnect message set to WARN (+ ERROR)
This commit is contained in:
@@ -1,12 +1,38 @@
|
||||
ssid = "SSID"
|
||||
password = "PASSWORD"
|
||||
hostname = "watermeter"
|
||||
;hostname is optional
|
||||
;++++++++++++++++++++++++++++++++++
|
||||
; AI on the edge - WLAN configuration
|
||||
;++++++++++++++++++++++++++++++++++
|
||||
; ssid: Name of WLAN network (mandatory), e.g. "WLAN-SSID"
|
||||
; password: Password of WLAN network (mandatory), e.g. "PASSWORD"
|
||||
|
||||
;if you want to use a fixed IP you need to specify the following 3 parameters (ip, gateway, netmask) with IP4-Addresses "123.456.789.012"
|
||||
;ip = "IP4-ADDRESS"
|
||||
;gateway = "IP4-ADDRESS"
|
||||
;netmask = "255.255.255.0"
|
||||
ssid = ""
|
||||
password = ""
|
||||
|
||||
;in some cases you want to specify the DNS server as well (especially, if it is not identical to the gateway - this is optional for a fixed IP
|
||||
;dns = "IP4-ADDRESS"
|
||||
;++++++++++++++++++++++++++++++++++
|
||||
; hostname: Name of device in network, e.g "watermeter"
|
||||
; This parameter can be configured via WebUI configuration
|
||||
; Default: "watermeter", if nothing is configured
|
||||
;hostname = "watermeter"
|
||||
|
||||
;++++++++++++++++++++++++++++++++++
|
||||
; Fixed IP: If you like to use fixed IP instead of DHCP (default), the following
|
||||
; parameters needs to be configured: ip, gateway, netmask are mandatory, dns optional
|
||||
|
||||
;ip = "xxx.xxx.xxx.xxx"
|
||||
;gateway = "xxx.xxx.xxx.xxx"
|
||||
;netmask = "xxx.xxx.xxx.xxx"
|
||||
|
||||
; DNS server (optional, if no DNS is configured, gateway address will be used)
|
||||
|
||||
;dns = "xxx.xxx.xxx.xxx"
|
||||
|
||||
;++++++++++++++++++++++++++++++++++
|
||||
; WIFI Roaming:
|
||||
; Network assisted roaming protocol is activated by default
|
||||
; AP / mesh system needs to support roaming protocol 802.11k/v
|
||||
;
|
||||
; Optional feature (usually not neccessary):
|
||||
; RSSI Threshold for client requested roaming query (RSSI < RSSIThreshold)
|
||||
; Note: This parameter can be configured via WebUI configuration
|
||||
; Default: 0 = Disable client requested roaming query
|
||||
|
||||
RSSIThreshold = 0
|
||||
|
||||
Reference in New Issue
Block a user