From 9737d21262d03cc802a93f4cd64a240537430bd9 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Tue, 30 May 2017 12:47:17 +0200 Subject: o Initial import of usbreset. --- src/usbreset.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/usbreset.cpp (limited to 'src/usbreset.cpp') diff --git a/src/usbreset.cpp b/src/usbreset.cpp new file mode 100644 index 0000000..76c30c0 --- /dev/null +++ b/src/usbreset.cpp @@ -0,0 +1,40 @@ +/* usbreset -- send a USB port reset to a USB device */ + +#include +#include +#include +#include +#include + +#include + + +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; +} -- cgit v1.2.3