summaryrefslogtreecommitdiff
path: root/switch.h
blob: ab09f11fa4a496d7952b0b31a521eb778f2e1f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __USBMODE_SWITCH_H
#define __USBMODE_SWITCH_H

#include <libubox/blobmsg.h>
#include <libusb.h>

struct usbdev_data {
	struct libusb_device_descriptor desc;
	struct libusb_config_descriptor *config;
	libusb_device_handle *devh;
	struct blob_attr *info;
	int interface;
	int msg_endpoint;
	int response_endpoint;

	char idstr[10];
	char mfg[128], prod[128], serial[128];
};

extern struct blob_attr **messages;
extern int n_messages;

void handle_switch(struct usbdev_data *data);

#endif