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
The current logic to determine flash start address finds the first executable segment and considers that as the start of data that goes into flash. This breaks if the CRT0 header goes into a data segment instead. The easiest fix seems to be to consider all read-only segments, not just executable ones, as flash.
This works for all the use cases I have, but there may be unintended consequences if I missed something?
The text was updated successfully, but these errors were encountered:
The current logic to determine flash start address finds the first executable segment and considers that as the start of data that goes into flash. This breaks if the CRT0 header goes into a data segment instead. The easiest fix seems to be to consider all read-only segments, not just executable ones, as flash.
This works for all the use cases I have, but there may be unintended consequences if I missed something?
The text was updated successfully, but these errors were encountered: