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
fix: ensure stubs for targets are stored in flash to save RAM space
Compiled stub was incorrectly placed in RAM, because the arrays with data
were placed in data.__compound_literal section, which is linked to RAM.
This commit adds const qualifier to the arrays, so they are placed in
rodata.__compound_literal section, which is linked to flash.
0 commit comments