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 2cd7542 commit eff3430Copy full SHA for eff3430
scripts/west_commands/runners/nrf_common.py
@@ -320,7 +320,8 @@ def recover_target(self):
320
# recover operation unlocks the core and then flashes a small image that
321
# keeps the debug access port open, recovering the network core last
322
# would result in that small image being deleted from the app core.
323
- if self.family in ('nrf53', 'nrf92'):
+ # In the case of the 54H, the order is indifferent.
324
+ if self.family in ('nrf53', 'nrf54h', 'nrf92'):
325
self.exec_op('recover', core='Network')
326
327
self.exec_op('recover')
0 commit comments