Skip to content

Instantly share code, notes, and snippets.

@bndeff
bndeff / usbtest.c
Last active July 7, 2021 16:10
libusb demo native app for android
#include <stdio.h>
#include <assert.h>
#include <libusb-1.0/libusb.h>
int main(int argc, char **argv) {
libusb_context *context;
libusb_device_handle *handle;
libusb_device *device;
struct libusb_device_descriptor desc;
unsigned char buffer[256];