Skip to content

Instantly share code, notes, and snippets.

@x2q
Created March 9, 2013 16:00
Show Gist options
  • Star 50 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save x2q/5124616 to your computer and use it in GitHub Desktop.
Save x2q/5124616 to your computer and use it in GitHub Desktop.
/* usbreset -- send a USB port reset to a USB device
*
* Compile using: gcc -o usbreset usbreset.c
*
*
* */
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <linux/usbdevice_fs.h>
int main(int argc, char **argv)
{
const char *filename;
int fd;
int rc;
if (argc != 2) {
fprintf(stderr, "Usage: usbreset device-filename\n");
return 1;
}
filename = argv[1];
fd = open(filename, O_WRONLY);
if (fd < 0) {
perror("Error opening output file");
return 1;
}
printf("Resetting USB device %s\n", filename);
rc = ioctl(fd, USBDEVFS_RESET, 0);
if (rc < 0) {
perror("Error in ioctl");
return 1;
}
printf("Reset successful\n");
close(fd);
return 0;
}
@renege
Copy link

renege commented Jun 20, 2014

@x2q
Tried what was posted @ http://raspberrypi.stackexchange.com/questions/9264/how-do-i-reset-a-usb-device-using-a-script

pi@raspberrypi ~ $ sudo gcc usbreset.c -o usbreset
usbreset.c:3:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:4:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:5:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:6:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c: In function 'main':
usbreset.c:18:3: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
usbreset.c:18:11: error: 'stderr' undeclared (first use in this function)
usbreset.c:18:11: note: each undeclared identifier is reported only once for each function it appears in
usbreset.c:23:22: error: 'O_WRONLY' undeclared (first use in this function)
usbreset.c:29:2: warning: incompatible implicit declaration of built-in function 'printf' [enabled by default]
pi@raspberrypi ~ $ sudo cc usbreset.c -o usbreset
usbreset.c:3:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:4:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:5:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c:6:10: error: #include expects "FILENAME" or <FILENAME>
usbreset.c: In function 'main':
usbreset.c:18:3: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
usbreset.c:18:11: error: 'stderr' undeclared (first use in this function)
usbreset.c:18:11: note: each undeclared identifier is reported only once for each function it appears in
usbreset.c:23:22: error: 'O_WRONLY' undeclared (first use in this function)
usbreset.c:29:2: warning: incompatible implicit declaration of built-in function 'printf' [enabled by default]

@hrldcpr
Copy link

hrldcpr commented Nov 18, 2015

@renege the command should be:

gcc -o usbreset usbreset.c

@kasumiru
Copy link

armbian 5.65, orange pi zero:
./usbreset /dev/ttyUSB0
Resetting USB device /dev/ttyUSB0
Error in ioctl: Inappropriate ioctl for device

@advra
Copy link

advra commented Sep 21, 2020

armbian 5.65, orange pi zero:
./usbreset /dev/ttyUSB0
Resetting USB device /dev/ttyUSB0
Error in ioctl: Inappropriate ioctl for device

I have the same issue vectornav VN200 INS usb

@petely
Copy link

petely commented May 20, 2022

armbian 5.65, orange pi zero: ./usbreset /dev/ttyUSB0 Resetting USB device /dev/ttyUSB0 Error in ioctl: Inappropriate ioctl for device

Here is an example. To reset the RTL2838 on USB bus 005, port 002

nanopi-root: lsusb
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 002: ID 0bda:2838 Realtek Semiconductor Corp. RTL2838 DVB-T
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

nanopi-root: ./usbreset /dev/bus/usb/005/002
Resetting USB device /dev/bus/usb/005/002
Reset successful
nanopi-root: 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment