Skip to content

Instantly share code, notes, and snippets.

View akhepcat's full-sized avatar

Leif akhepcat

  • Anchorage, AK
View GitHub Profile
@akhepcat
akhepcat / usbreset.c
Created July 10, 2023 22:31
send a USB port reset to a USB device
/* usbreset -- send a USB port reset to a USB device */
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <linux/usbdevice_fs.h>