/
How to reset USB devices - Linux
How to reset USB devices - Linux
Execute below bash script: ./script.sh
#!/bin/bash
for port in $(lspci | grep USB | cut -d' ' -f1); do
echo -n "0000:${port}"| sudo tee /sys/bus/pci/drivers/xhci_hcd/unbind;
sleep 5;
echo -n "0000:${port}" | sudo tee /sys/bus/pci/drivers/xhci_hcd/bind;
sleep 5;
done
, multiple selections available,
Related content
GangFlasher-ST User Guide
GangFlasher-ST User Guide
Read with this
Tutorial movies
Tutorial movies
Read with this
Sequential Functions
Sequential Functions
More like this
Python Basic Demo (Raspberry Pi FP-430)
Python Basic Demo (Raspberry Pi FP-430)
More like this
Silicon Labs Secure Engine walk-through (Series 2 devices: EFR32xG21/22/23/24/25/27/28)
Silicon Labs Secure Engine walk-through (Series 2 devices: EFR32xG21/22/23/24/25/27/28)
More like this
Python Basic Demo (Windows FP-ARM)
Python Basic Demo (Windows FP-ARM)
More like this