From 01239ea839548a71b3313d51b5890a6050cb64ec Mon Sep 17 00:00:00 2001 From: Pali Rohár Date: Thu, 9 Aug 2012 16:13:43 +0200 Subject: Rename usb_device to usb-device, fix includes --- src/usb-device.h | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/usb-device.h (limited to 'src/usb-device.h') diff --git a/src/usb-device.h b/src/usb-device.h new file mode 100644 index 0000000..ec4f967 --- /dev/null +++ b/src/usb-device.h @@ -0,0 +1,49 @@ +/* + 0xFFFF - Open Free Fiasco Firmware Flasher + Copyright (C) 2012 Pali Rohár + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +*/ + +#include + +#include "device.h" + +enum usb_flash_protocol { + FLASH_UNKN = 0, + FLASH_NOLO, + FLASH_COLD, + FLASH_MKII, + FLASH_DISK, +}; + +struct usb_flash_device { + uint16_t vendor; + uint16_t product; + int interface; + int alternate; + int configuration; + enum usb_flash_protocol protocol; + enum device devices[DEVICE_COUNT]; +}; + +struct usb_device_info { + usb_dev_handle * dev; + struct usb_flash_device * info; +}; + +const char * usb_flash_protocol_to_string(enum usb_flash_protocol protocol); +struct usb_device_info * usb_wait_for_device(void); +void usb_close_device(struct usb_device_info * dev); -- cgit v1.2.3