We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using ESPLorer to experiment with newer NodeMCU firmware built with make LUA=53
make LUA=53
There are problems when code includes newly introduced right shift operator >> like
a=7 b=a>>3
When saving the script to flash the process hangs and module reboots. The problem is in these 2 lines of code checking the module answer:
ESPlorer/src/main/java/ESPlorer/ESPlorer.java
Line 12038 in 142ff90
data = data.replace(">> ", ""); data = data.replace(">>", "");
(I commented them for myself, it seems to work)
The text was updated successfully, but these errors were encountered:
As Lua 5.3 will become the standard sooner or later (see nodemcu/nodemcu-firmware#3144 (comment) from @TerryE) this should be addressed.
Sorry, something went wrong.
No branches or pull requests
I am using ESPLorer to experiment with newer NodeMCU firmware built with
make LUA=53
There are problems when code includes newly introduced right shift operator >> like
When saving the script to flash the process hangs and module reboots. The problem is in these 2 lines of code checking the
module answer:
ESPlorer/src/main/java/ESPlorer/ESPlorer.java
Line 12038 in 142ff90
(I commented them for myself, it seems to work)
The text was updated successfully, but these errors were encountered: