Tasmota Crahes when I run "WebServer 0" or "Webserver 1" with USE_SCRIPT_WEB_DISPLAY defined #22874
Unanswered
DiegoB80
asked this question in
Support request
Replies: 1 comment 2 replies
-
Without providing a small sample script to reproduce the issue, no help is possible |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
PROBLEM DESCRIPTION
A clear and concise description of what the problem is.
When I compile the firmware by adding the lines
#ifndef USE_SCRIPT
#define USE_SCRIPT // adds about 17k flash size, variable ram size
#endif
#ifdef USE_RULES
#undef USE_RULES
#endif
#ifndef USE_SCRIPT_WEB_DISPLAY
#define USE_SCRIPT_WEB_DISPLAY
#endif
the device crashes when I try to connect to the web server and webserver is set to 0 or 1.
If I compile the firmware by adding only the lines
#ifndef USE_SCRIPT
#define USE_SCRIPT // adds about 17k flash size, variable ram size
#endif
#ifdef USE_RULES
#undef USE_RULES
#endif
it doesn't crash.
Tested compiling firmware:
REQUESTED INFORMATION
Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!
Backlog Template; Module; GPIO 255
:Backlog Rule1; Rule2; Rule3
:Status 0
:weblog
to 4 and then, when you experience your issue, provide the output of the Console log:TO REPRODUCE
Steps to reproduce the behavior:
Self-compiling firmware with
#ifndef USE_SCRIPT
#define USE_SCRIPT // adds about 17k flash size, variable ram size
#endif
#ifdef USE_RULES
#undef USE_RULES
#endif
#ifndef USE_SCRIPT_WEB_DISPLAY
#define USE_SCRIPT_WEB_DISPLAY
#endif
send command "webserver 0" or "webserver 1" via serial console
try to open webserver http://tamotadevice
It crashes immediately
EXPECTED BEHAVIOUR
A clear and concise description of what you expected to happen.
No crashes
SCREENSHOTS
If applicable, add screenshots to help explain your problem.
ADDITIONAL CONTEXT
Add any other context about the problem here.
(Please, remember to close the issue when the problem has been addressed)
Beta Was this translation helpful? Give feedback.
All reactions