File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
scripts/west_commands/runners Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -259,8 +259,16 @@ def program_hex(self):
259
259
if self .family in ('NRF54H_FAMILY' , 'NRF92_FAMILY' ):
260
260
erase_arg = 'ERASE_NONE'
261
261
262
- cpuapp = self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_CPUAPP' ) or self .build_conf .getboolean ('CONFIG_SOC_NRF9280_CPUAPP' )
263
- cpurad = self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_CPURAD' ) or self .build_conf .getboolean ('CONFIG_SOC_NRF9280_CPURAD' )
262
+ cpuapp = (
263
+ self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_CPUAPP' ) or
264
+ self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_ENGB_CPUAPP' ) or
265
+ self .build_conf .getboolean ('CONFIG_SOC_NRF9280_CPUAPP' )
266
+ )
267
+ cpurad = (
268
+ self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_CPURAD' ) or
269
+ self .build_conf .getboolean ('CONFIG_SOC_NRF54H20_ENGB_CPURAD' ) or
270
+ self .build_conf .getboolean ('CONFIG_SOC_NRF9280_CPURAD' )
271
+ )
264
272
265
273
if self .erase :
266
274
self .exec_op ('erase' , core = 'NRFDL_DEVICE_CORE_APPLICATION' )
You can’t perform that action at this time.
0 commit comments