| 1 | = How to Unbrick a USRP = |
| 2 | |
| 3 | == N210 == |
| 4 | Do this if the USRP becomes unresponsive to normal commands and cannot be found with uhd_find_devices. |
| 5 | 1. Load baseline_uhd.ndz onto a node with the extra ethernet card |
| 6 | 2. Boot up the node |
| 7 | 3. Download the latest firmware/UHD images to the node: |
| 8 | {{{ |
| 9 | uhd_images_downloader |
| 10 | }}} |
| 11 | 4. Configure eth2 to be able to talk to the USRP |
| 12 | {{{ |
| 13 | ifconfig eth2 192.168.10.1 netmask 255.255.255.0 |
| 14 | }}} |
| 15 | 5. Remove lid of USRP |
| 16 | 6. Connect the USRP's ethernet to the node |
| 17 | 7. Put USRP in safe-mode: |
| 18 | a. Hold down the S2 button in the middle of the USRP's motherboard while power-cycling the USRP |
| 19 | b. Keep holding until the D & F status LED lights are stable and the left LED on the ethernet jack is green |
| 20 | 8. Check if the node can see the USRP: |
| 21 | {{{ |
| 22 | uhd_find_devices --args="addr=192.168.10.2" |
| 23 | }}} |
| 24 | If not, retry step 7 |
| 25 | 9. Burn new firmware and FPGA images directly to the USRP: |
| 26 | {{{ |
| 27 | usrp_n2xx_simple_net_burner --addr="192.168.10.2" --fw="/usr/share/uhd/images/usrp_n210_fw.bin" --fpga="/usr/share/uhd/images/usrp_n210_r4_fpga.bin" --dont-check-rev |
| 28 | }}} |
| 29 | 10. Most likely the automatic reboot will fail so you will have to boot the USRP into safe-mode manually again |
| 30 | 11. Write new default ip into EEPROM: |
| 31 | {{{ |
| 32 | /usr/lib/uhd/utils/usrp_burn_mb_eeprom --values="ip-addr=192.168.10.2" |
| 33 | }}} |
| 34 | 12. Manually reboot the USRP into regular mode by just power-cycling it (do not hold down the S2 button) |
| 35 | 13. Check if the node can see the USRP: |
| 36 | {{{ |
| 37 | uhd_find_devices --args="addr=192.168.10.2" |
| 38 | }}} |
| 39 | 14. Test image loading: |
| 40 | {{{ |
| 41 | uhd_image_loader --args="type=usrp2,addr=192.168.10.2" |
| 42 | }}} |
| 43 | 15. Check if everything shows up correctly (versions, daughter-boards, etc): |
| 44 | {{{ |
| 45 | uhd_usrp_probe |
| 46 | }}} |
| 47 | |
| 48 | |