X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Funi-t-ut32x%2Fprotocol.h;h=59f81eaf4cbf0d908e4ac9657d0c4e34d26d3d91;hb=f6c685e4d340b52962c2ae983974936071578156;hp=e66b792072edb11427d8e99bdd02701393472cec;hpb=1a46cc62e2b528bcaeb1f8dc0c952a81b3bcba5c;p=libsigrok.git diff --git a/src/hardware/uni-t-ut32x/protocol.h b/src/hardware/uni-t-ut32x/protocol.h index e66b7920..59f81eaf 100644 --- a/src/hardware/uni-t-ut32x/protocol.h +++ b/src/hardware/uni-t-ut32x/protocol.h @@ -22,15 +22,13 @@ #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 @@ -38,7 +36,7 @@ #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