USB sample interface code using libusb.
More...
#include "include/libusb/libusb/libusb.h"
#include "bbbandroidHAL.h"
#include <string.h>
|
static libusb_device ** | devs |
|
static int | ret |
|
static libusb_context * | ctx = NULL |
|
static ssize_t | count |
|
USB sample interface code using libusb.
- Author
- Ankur Yadav (ankur.nosp@m.ayad.nosp@m.av@gm.nosp@m.ail..nosp@m.com)
This function is used to close USB devices.
int usbGetDevices |
( |
int |
ids[][8], |
|
|
unsigned char |
strings[][3][256] |
|
) |
| |
This function takes one 2D array to store IDs (bus, device, manufacturer and vendor) for each USB device and one 3D array to store path, manufacturer descriptor and vendor descriptor. It returns 0 if successful and -1 if it fails. It is only to demonstrate and develop lsusb kind of app. Similar functions can be made using libusb for other functionalities of USB.
- Parameters
-
ids | 2D integer array argument. |
strings | 3D unsigned character argument. |
- Returns
- 0 if successful and -1 if it fails.
It creates USB session and gets number of USB devices attached and then returns number of USB devices attached.
- Returns
- If successful then number of USB devices attached is returned and if it fails then -1 is returned.
To store number of devices in the list
libusb_context* ctx = NULL |
|
static |
pointer to pinter of device to get list of devices
To store return values for some functions internally