You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
variable 'bitmap_array' must be const in order to be put into read-only section by means of '__attribute__((progmem))' is the issue while compiling. Please fix it or give a solution for this. Regards.
#16
Open
AADITYA5584 opened this issue
Apr 6, 2021
· 2 comments
You have to specify that the pointer is const. try to use, for example
"PROGMEM const char* const weekString[]" instead of
" PROGMEM const char* weekString[]"
No description provided.
The text was updated successfully, but these errors were encountered: