Skip to content

Commit 47a2d50

Browse files
circumvent --recover reset loop
Signed-off-by: Jonathan Nilsen <[email protected]>
1 parent 7a4fc51 commit 47a2d50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/west_commands/runners/nrf_common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def flush(self, force=False):
308308

309309

310310
def recover_target(self):
311-
if self.family in ('nrf53', 'nrf54h', 'nrf92'):
311+
if self.family in ('nrf53', 'nrf92'):
312312
self.logger.info(
313313
'Recovering and erasing flash memory for both the network '
314314
'and application cores.')
@@ -321,7 +321,7 @@ def recover_target(self):
321321
# keeps the debug access port open, recovering the network core last
322322
# would result in that small image being deleted from the app core.
323323
# In the case of the 54H, the order is indifferent.
324-
if self.family in ('nrf53', 'nrf54h', 'nrf92'):
324+
if self.family in ('nrf53', 'nrf92'):
325325
self.exec_op('recover', core='Network')
326326

327327
self.exec_op('recover')

0 commit comments

Comments
 (0)