mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #1002] Fatal exception 28(LoadProhibitedCause) Multiple Parameters #855
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#855
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rodri16 on GitHub (Jan 31, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1002
Hardware
WiFimanager Branch/Release:
Esp8266/Esp32:
ESP Core Version: 2.4.0, staging
Hi, I have a problem (OTA Branch on esp8266ex), using multiple parameters. My parameters are
After full erase flash, everything is ok, but when booting again and finding the file config.jsn it crashes after the 5th parameter. Do you know why?
After full erase
On reboot:
changed to 10 MAX_PARAMS but nothing changed,
#define WIFI_MANAGER_MAX_PARAMS 10If I use less parameters everything is OK
@tablatronix commented on GitHub (Feb 1, 2020):
Usually running out of memory, we are working on it, see the other issues some hints were to allocate memory for http page variable output to prevent fragmentation
@rodri16 commented on GitHub (Feb 4, 2020):
Maybe increasing DynamicJsonDocument json(1024);??
Still couldn't make it work
@tablatronix commented on GitHub (Feb 4, 2020):
No its memory in wm theres a issue about it
@rodri16 commented on GitHub (Feb 4, 2020):
So removing PROGMEM could be a solution according to https://github.com/tzapu/WiFiManager/issues/931
@tablatronix commented on GitHub (Feb 4, 2020):
Actually I was thinking of another issue , I forgot about that one. Are you using progmem strings in your params?
@rodri16 commented on GitHub (Feb 4, 2020):
Actually not in params but in strings_en.h
@tablatronix commented on GitHub (Feb 4, 2020):
No those should be fine, we are talking about stack memory
@rodri16 commented on GitHub (Feb 10, 2020):
https://github.com/tzapu/WiFiManager/issues/901?? I still don't get what to change to support multiple params
@rodri16 commented on GitHub (Feb 17, 2020):
I have another weird problem, in config portal after connecting WiFi "Credential saved. Trying.." page doesn't appear, is it because of lack of memory?
Also when calling captive portal sometimes I have to reload captive portal page many times till I see the WM menu
@tablatronix commented on GitHub (Feb 17, 2020):
I was having this issue also, let me se if that is a new bug i introduced
@rodri16 commented on GitHub (Feb 18, 2020):
Solved after clicking save. Thanks @marcovanoord!
But still cannot always connect directly to configportal... HTTP root not always appearing
So i have to go back and launch again config portal and then portal opens (sometimes) successfully
@tablatronix commented on GitHub (Feb 18, 2020):
what device?
@rodri16 commented on GitHub (Feb 19, 2020):
I am using SonOff Pow (r1) Esp8266
@tablatronix commented on GitHub (Feb 19, 2020):
What client device is not pulling up captive portal or web page. Might be a cached issue or a dns issue, try forgetting ap
@rodri16 commented on GitHub (Feb 19, 2020):
Oh sorry, it's an Android v10. Ok I'll test
@tablatronix commented on GitHub (Feb 19, 2020):
I just merged dev into ota, it should be up to date now, might be your problem