Skip to content

Commit eff3430

Browse files
jonathannilsenrlubos
authored andcommitted
Revert "[nrf fromlist] west: runners: nrf: don't recover twice on nrf54h"
This reverts commit 5f67798. Signed-off-by: Jonathan Nilsen <[email protected]>
1 parent 2cd7542 commit eff3430

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/west_commands/runners/nrf_common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,8 @@ def recover_target(self):
320320
# recover operation unlocks the core and then flashes a small image that
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.
323-
if self.family in ('nrf53', 'nrf92'):
323+
# In the case of the 54H, the order is indifferent.
324+
if self.family in ('nrf53', 'nrf54h', 'nrf92'):
324325
self.exec_op('recover', core='Network')
325326

326327
self.exec_op('recover')

0 commit comments

Comments
 (0)