Skip to content

Instantly share code, notes, and snippets.

@hello-fazil
Last active March 11, 2023 05:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hello-fazil/fb8a4063203d50214ff4e7556560fa21 to your computer and use it in GitHub Desktop.
Save hello-fazil/fb8a4063203d50214ff4e7556560fa21 to your computer and use it in GitHub Desktop.
Scrict to download and install Realsense D400 firmware version 13.00.50.
echo "Show connected devices:"
rs-fw-update -l
echo
echo "Download rs-firmware 13.0.50:"
wget https://www.intelrealsense.com/download/19295/D400_Series_FW_5_13_0_50.zip
echo
sn=$(rs-fw-update -l | grep -o -P '(?<=, serial number: ).*(?=, update)')
echo "Serial Number: $sn"
echo "Install rs-firmware:"
unzip D400_Series_FW_5_13_0_50.zip
cd D400_Series_FW_5_13_0_50
cmd="rs-fw-update -s $sn -f Signed_Image_UVC_5_13_0_50.bin"
eval $cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment