This is a follow-up to our discussion of the const on the forum.
If you look at this doc you will see that prepending the names of constants with _ saves RAM (8 bytes per symbol). This is on the assumption that the symbol need not be visible externally to the module.
Given the large number of constants it might be worth considering.
Great work, BTW!
This is a follow-up to our discussion of the const on the forum.
If you look at this doc you will see that prepending the names of constants with _ saves RAM (8 bytes per symbol). This is on the assumption that the symbol need not be visible externally to the module.
Given the large number of constants it might be worth considering.
Great work, BTW!