We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1a923 commit d1299d2Copy full SHA for d1299d2
1 file changed
src/fw/wscript
@@ -122,14 +122,14 @@ def _generate_memory_layout(bld):
122
elif bld.env.MICRO_FAMILY == 'SF32LB52':
123
# We use XIP flash, so the bootloader does not have to be taken into account.
124
bootloader_size = '0K'
125
- if bld.is_obelix() and bld.variant == 'prf':
+ if bld.is_obelix() and bld.variant == 'prf' and not bld.env.IS_MFG:
126
flash_size = '512K'
127
else:
128
flash_size = '3072K'
129
130
elif bld.env.MICRO_FAMILY == 'NRF52840':
131
bootloader_size = '32K'
132
- if bld.is_asterix() and bld.variant == 'prf':
+ if bld.is_asterix() and bld.variant == 'prf' and not bld.env.IS_MFG:
133
134
135
flash_size = '1024K'
0 commit comments