Hi all,
I know that normally one would use the PROGMEM or __flash directives to store a given data into flash. But the problem is that some libraries, like uGFX, are written without it and are using only the const declaration to store in program memory, since normally other proprietary compilers are doing that automatically.
Is there an option/tweak on the linker instructions or anything else to store any variable declared as const without any other special attribute, into flash? OR at least to avoid to tweak all the files of a third party library?