diff options
Diffstat (limited to 'src/libirecovery.c')
-rw-r--r-- | src/libirecovery.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c index dfc0aea..cdb0c53 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -78,6 +78,16 @@ int irecv_open(irecv_device* device) { return IRECV_ERROR_NO_DEVICE; } +int irecv_reset(irecv_device* device) { + if (device != NULL) { + if (device->handle != NULL) { + libusb_reset_device(device->handle); + } + } + + return IRECV_SUCCESS; +} + int irecv_close(irecv_device* device) { if (device != NULL) { if (device->handle != NULL) { |