You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
811 B
43 lines
811 B
2 years ago
|
/* usbreset -- send a USB port reset to a USB device */
|
||
|
/* sudo ./usbreset /dev/bus/usb/Bus/Device */
|
||
|
|
||
|
#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;
|
||
|
}
|
||
|
|