Changes between Initial Version and Version 1 of Internal/UnbrickUSRP


Ignore:
Timestamp:
Mar 9, 2017, 11:09:43 PM (7 years ago)
Author:
jkol
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/UnbrickUSRP

    v1 v1  
     1= How to Unbrick a USRP =
     2
     3== N210 ==
     4Do this if the USRP becomes unresponsive to normal commands and cannot be found with uhd_find_devices.
     51. Load baseline_uhd.ndz onto a node with the extra ethernet card
     62. Boot up the node
     73. Download the latest firmware/UHD images to the node:
     8{{{
     9uhd_images_downloader
     10}}}
     114. Configure eth2 to be able to talk to the USRP
     12{{{
     13ifconfig eth2 192.168.10.1 netmask 255.255.255.0
     14}}}
     155. Remove lid of USRP
     166. Connect the USRP's ethernet to the node
     177. 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
     208. Check if the node can see the USRP:
     21{{{
     22uhd_find_devices --args="addr=192.168.10.2"
     23}}}
     24  If not, retry step 7
     259. Burn new firmware and FPGA images directly to the USRP:
     26{{{
     27usrp_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}}}
     2910. Most likely the automatic reboot will fail so you will have to boot the USRP into safe-mode manually again
     3011. Write new default ip into EEPROM:
     31{{{
     32/usr/lib/uhd/utils/usrp_burn_mb_eeprom --values="ip-addr=192.168.10.2"
     33}}}
     3412. Manually reboot the USRP into regular mode by just power-cycling it (do not hold down the S2 button)
     3513. Check if the node can see the USRP:
     36{{{
     37uhd_find_devices --args="addr=192.168.10.2"
     38}}}
     3914. Test image loading:
     40{{{
     41uhd_image_loader --args="type=usrp2,addr=192.168.10.2"
     42}}}
     4315. Check if everything shows up correctly (versions, daughter-boards, etc):
     44{{{
     45uhd_usrp_probe
     46}}}
     47
     48