X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Funi-t-ut32x%2Fprotocol.h;h=59f81eaf4cbf0d908e4ac9657d0c4e34d26d3d91;hb=411b2f68227398fa7bdde653a37d3e739277fc08;hp=8513117cba92edf0e1402951620376dc58430c65;hpb=155b680da482cea2381becb73c51cfb838bff31e;p=libsigrok.git diff --git a/src/hardware/uni-t-ut32x/protocol.h b/src/hardware/uni-t-ut32x/protocol.h index 8513117c..59f81eaf 100644 --- a/src/hardware/uni-t-ut32x/protocol.h +++ b/src/hardware/uni-t-ut32x/protocol.h @@ -22,23 +22,21 @@ #include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "uni-t-ut32x" #define DEFAULT_DATA_SOURCE DATA_SOURCE_LIVE #define USB_CONN "1a86.e008" -#define VENDOR "UNI-T" -#define MODEL "UT32x" #define USB_INTERFACE 0 #define USB_CONFIGURATION 1 -#define EP_IN 0x80 | 2 +#define EP_IN (0x80 | 2) #define EP_OUT 2 enum { - DATA_SOURCE_LIVE, + DATA_SOURCE_LIVE, DATA_SOURCE_MEMORY, }; @@ -48,24 +46,19 @@ enum { CMD_GET_STORED = 7, }; -/** Private, per-device-instance driver context. */ struct dev_context { - /* Acquisition settings */ uint64_t limit_samples; gboolean data_source; - /* Operational state */ uint64_t num_samples; unsigned char buf[8]; struct libusb_transfer *xfer; - void *cb_data; - /* Temporary state across callbacks */ unsigned char packet[32]; int packet_len; }; SR_PRIV int uni_t_ut32x_handle_events(int fd, int revents, void *cb_data); -SR_PRIV void uni_t_ut32x_receive_transfer(struct libusb_transfer *transfer); +SR_PRIV void LIBUSB_CALL uni_t_ut32x_receive_transfer(struct libusb_transfer *transfer); #endif