X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Funi-t-ut32x%2Fprotocol.h;fp=hardware%2Funi-t-ut32x%2Fprotocol.h;h=0000000000000000000000000000000000000000;hb=155b680da482cea2381becb73c51cfb838bff31e;hp=8513117cba92edf0e1402951620376dc58430c65;hpb=43cd4637285833706f8a404ca027bcf0ee75b9ae;p=libsigrok.git diff --git a/hardware/uni-t-ut32x/protocol.h b/hardware/uni-t-ut32x/protocol.h deleted file mode 100644 index 8513117c..00000000 --- a/hardware/uni-t-ut32x/protocol.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - * This file is part of the libsigrok project. - * - * Copyright (C) 2013 Bert Vermeulen - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef LIBSIGROK_HARDWARE_UNI_T_UT32X_PROTOCOL_H -#define LIBSIGROK_HARDWARE_UNI_T_UT32X_PROTOCOL_H - -#include -#include -#include "libsigrok.h" -#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_OUT 2 - -enum { - DATA_SOURCE_LIVE, - DATA_SOURCE_MEMORY, -}; - -enum { - CMD_GET_LIVE = 1, - CMD_STOP = 2, - 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); - -#endif