X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fhantek-6xxx%2Fprotocol.h;h=af66c70ef1b4a82092bd692f687d4d78af24e748;hb=aff2094193c7ed0c040ff69d6e6de9c7f2b9d53e;hp=c32792e3c898712d0486485e0cba5221e27080d0;hpb=817b7441a1f31788a53f39af7c2f1e08f9de25b2;p=libsigrok.git diff --git a/src/hardware/hantek-6xxx/protocol.h b/src/hardware/hantek-6xxx/protocol.h index c32792e3..af66c70e 100644 --- a/src/hardware/hantek-6xxx/protocol.h +++ b/src/hardware/hantek-6xxx/protocol.h @@ -31,7 +31,7 @@ #define MAX_RENUM_DELAY_MS 3000 #define DEFAULT_VOLTAGE 2 -#define DEFAULT_COUPLING COUPLING_DC +#define DEFAULT_COUPLING COUPLING_DC #define DEFAULT_SAMPLERATE SR_MHZ(8) #define NUM_CHANNELS 2 @@ -43,7 +43,7 @@ SR_KHZ(100), #define SAMPLERATE_REGS \ - 48, 30, 24, 16, 8, 4, 1, 50, 20, 10, + 48, 30, 24, 16, 8, 4, 1, 50, 20, 10, #define VDIV_VALUES \ { 100, 1000 }, \ @@ -60,7 +60,11 @@ #define FLUSH_PACKET_SIZE 1024 #define MIN_PACKET_SIZE 512 +#ifdef _WIN32 +#define MAX_PACKET_SIZE (2 * 1024 * 1024) +#else #define MAX_PACKET_SIZE (12 * 1024 * 1024) +#endif #define HANTEK_EP_IN 0x86 #define USB_INTERFACE 0 @@ -94,6 +98,7 @@ struct hantek_6xxx_profile { /* VID/PID after firmware upload */ uint16_t fw_vid; uint16_t fw_pid; + uint16_t fw_prod_ver; const char *vendor; const char *model; const char *firmware; @@ -117,11 +122,6 @@ struct dev_context { uint64_t aq_started; uint64_t read_start_ts; - uint32_t read_data_amount; - - struct libusb_transfer **sample_buf; - uint32_t sample_buf_write; - uint32_t sample_buf_size; gboolean ch_enabled[NUM_CHANNELS]; int voltage[NUM_CHANNELS];