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
Arduino has only 2kb of RAM and much is taken up by constant strings etc, because of separate address space for ROM.
Compiler gives 1356 bytes taken before optimization, of them (500 + 150) for basic memory.
The text was updated successfully, but these errors were encountered:
After switching to compare commands and funcs by hashes 1240. After moving common messages and errors to progmem 1052.
Basic memory could now be enlarged to (650 + 300).
Code becomes slightly uglier but not much.
Sorry, something went wrong.
After replacing "charInStr" inside expr.c it becomes 1036
And after removing arrays of commands and function hashes to switches - 996
Basic memories are enlarged to (700 + 300)
No branches or pull requests
Arduino has only 2kb of RAM and much is taken up by constant strings etc, because of separate address space for ROM.
Compiler gives 1356 bytes taken before optimization, of them (500 + 150) for basic memory.
The text was updated successfully, but these errors were encountered: