mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1325] Compatibility with AsyncElegantOTA #1139
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#1139
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 @markpope on GitHub (Dec 20, 2021).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1325
I combined two working examples, WiFiManager and AsyncElegantOTA, producing one app that panic’s the core. Is there a combability issue or my coding. Two great features should play well together. Others have verified the same problem.
I get two stack dump:
Decoding stack results
0x4022f20f: __strftime at /workdir/repo/newlib/newlib/libc/time/../time/strftime.c line 715
0x40226b4d: _printf_i at /workdir/repo/newlib/newlib/libc/stdio/nano-vfprintf_i.c line 204
And
Decoding stack results
0x4025ad31: tcp_input at core/tcp_in.c line 702
0x4025ad31: tcp_input at core/tcp_in.c line 702
0x402242d9: uw_update_context_1 at /workdir/repo/gcc-gnu/libgcc/unwind-dw2.c line 208
0x4022f20f: __strftime at /workdir/repo/newlib/newlib/libc/time/../time/strftime.c line 715
0x40226b4d: _printf_i at /workdir/repo/newlib/newlib/libc/stdio/nano-vfprintf_i.c line 204
0x402242d9: uw_update_context_1 at /workdir/repo/gcc-gnu/libgcc/unwind-dw2.c line 208
0x4024a935: std::num_get > >::_M_extract_int (std::istreambuf_iterator >, std::istreambuf_iterator >, std::ios_base&, std::_Ios_Iostate&, long&) const at /workdir/arena.x86_64/gcc-gnu/xtensa-lx106-elf/libstdc++-v3/include/bits/basic_string.h line 4186
0x4024a947: std::num_get > >::_M_extract_int (std::istreambuf_iterator >, std::istreambuf_iterator >, std::ios_base&, std::_Ios_Iostate&, long&) const at /workdir/arena.x86_64/gcc-gnu/xtensa-lx106-elf/libstdc++-v3/include/bits/basic_string.h line 4186
0x40241bf3: std::time_get > >::_M_extract_via_format(std::istreambuf_iterator >, std::istreambuf_iterator >, std::ios_base&, std::_Ios_Iostate&, tm*, char const*) const at /workdir/arena.x86_64/gcc-gnu/xtensa-lx106-elf/libstdc++-v3/include/bits/ios_base.h line 182
0x40246157: std::collate ::~collate() at /workdir/arena.x86_64/gcc-gnu/xtensa-lx106-elf/libstdc++-v3/include/bits/locale_classes.h line 748
Basic Infos
Hardware
WiFimanager Branch/Release: Master V0.16(Latest)
Esp8266/Esp32:
Hardware: NodeMCU 1.0 (ESP-12E)
Core Version: ?
Description
Panic core when trying to upload a new .bin image. Works fine when AsyncElegantOTA is not included.
Settings in IDE
Module: NodeMcu
Additional libraries:
bbx10/DNSServer@^1.1.0
ottowinter/ESPAsyncWebServer-esphome @ ^2.1.0
tzapu/WiFiManager@^0.16.0
ayushsharma82/AsyncElegantOTA@^2.2.6
Sketch
Debug Messages
@tablatronix commented on GitHub (Dec 21, 2021):
none of that trace looks like wm, I assume this is something you are doing , like lost memory pointer or overflow, or a bug in esp
@markpope commented on GitHub (Dec 22, 2021):
Thanks for the look.