I erased a board using a MAC (Monterey 12.1) and a Segger Version 11.0 Part-no 8.19.28
nrfjprog --masserase
After which I was no longer able to program, connect, or recover. Per another ticket, I attempted to do a loop recover, while reseting the power.
#!/bin/bash
# My example bash script
echo "RECOVER BOARD"
while true
do
nrfjprog --family nRF53 --recover --log
done
Results are as follows:
ERROR: Recover failed. Please make sure that the correct device family is given
ERROR: and try again.
ERROR: [SeggerBackend] - Low voltage detected in target device.
ERROR: Unable to connect to a debugger.
ERROR: Low voltage detected at the target. Please make sure the device is
ERROR: properly supplied.
ERROR: [SeggerBackend] - Low voltage detected in target device.
ERROR: Unable to connect to a debugger.
ERROR: Low voltage detected at the target. Please make sure the device is
ERROR: properly supplied.
Recovering device. This operation might take 30s.
ERROR: Recover failed. Please make sure that the correct device family is given
ERROR: and try again.
Recovering device. This operation might take 30s.
ERROR: Recover failed. Please make sure that the correct device family is given
ERROR: and try again.
How can I recover this board?
Kind Regards,
Troy

