We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad7f3b commit 28c5088Copy full SHA for 28c5088
2 files changed
bl_update/ldscript_bl.ld
@@ -123,6 +123,13 @@ SECTIONS
123
. = ALIGN(8);
124
} >RAM
125
126
+ /* Ensure flash content is padded to 32 bytes with 0xFF */
127
+ .padding :
128
+ {
129
+ . = ALIGN(32);
130
+ BYTE(0xFF); . = ALIGN(32);
131
+ } >FLASH
132
+
133
/* Remove information from the standard libraries */
134
/DISCARD/ :
135
{
bl_update/ldscript_bl_CAN.ld
@@ -125,6 +125,13 @@ SECTIONS
136
137
0 commit comments