2009-03-04 04:32:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
2012-02-28 16:21:08 +01:00
|
|
|
* the documentation and/or other materials provided with the
|
2009-03-04 04:32:55 +01:00
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
2012-02-28 16:21:08 +01:00
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
2009-03-04 04:32:55 +01:00
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _USB_H_
|
|
|
|
#define _USB_H_
|
|
|
|
|
2015-11-14 01:15:57 +01:00
|
|
|
struct usb_handle;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-04-08 05:12:50 +02:00
|
|
|
struct usb_ifc_info {
|
2009-03-04 04:32:55 +01:00
|
|
|
/* from device descriptor */
|
|
|
|
unsigned short dev_vendor;
|
|
|
|
unsigned short dev_product;
|
|
|
|
|
|
|
|
unsigned char dev_class;
|
|
|
|
unsigned char dev_subclass;
|
|
|
|
unsigned char dev_protocol;
|
2012-02-28 16:21:08 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
unsigned char ifc_class;
|
|
|
|
unsigned char ifc_subclass;
|
|
|
|
unsigned char ifc_protocol;
|
|
|
|
|
|
|
|
unsigned char has_bulk_in;
|
|
|
|
unsigned char has_bulk_out;
|
2012-02-28 16:21:08 +01:00
|
|
|
|
2009-10-07 03:07:49 +02:00
|
|
|
unsigned char writable;
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
char serial_number[256];
|
2012-04-06 21:39:30 +02:00
|
|
|
char device_path[256];
|
2009-03-04 04:32:55 +01:00
|
|
|
};
|
2012-02-28 16:21:08 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
typedef int (*ifc_match_func)(usb_ifc_info *ifc);
|
|
|
|
|
2015-11-14 01:15:57 +01:00
|
|
|
usb_handle *usb_open(ifc_match_func callback);
|
|
|
|
int usb_close(usb_handle *h);
|
|
|
|
int usb_read(usb_handle *h, void *_data, int len);
|
|
|
|
int usb_write(usb_handle *h, const void *_data, int len);
|
|
|
|
int usb_wait_for_disconnect(usb_handle *h);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
#endif
|