X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fserial-dmm%2Fprotocol.h;h=092f506b207b8f525cac7971e0c5a1d9e498d0f0;hb=HEAD;hp=f0658c4708c68f0527f4e01eccdc99a31463fe6a;hpb=a376ffea49411cca09b358f3677938612c79afaf;p=libsigrok.git diff --git a/hardware/serial-dmm/protocol.h b/hardware/serial-dmm/protocol.h deleted file mode 100644 index f0658c47..00000000 --- a/hardware/serial-dmm/protocol.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * This file is part of the sigrok project. - * - * Copyright (C) 2012 Alexandru Gagniuc - * - * 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_SERIAL_DMM_PROTOCOL_H -#define LIBSIGROK_HARDWARE_SERIAL_DMM_PROTOCOL_H - -/* Message logging helpers with driver-specific prefix string. */ -#define DRIVER_LOG_DOMAIN "serial-dmm: " -#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args) -#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args) -#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args) -#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args) -#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args) -#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args) - -/* Note: When adding entries here, don't forget to update DMM_COUNT. */ -enum { - DIGITEK_DT4000ZC, - TEKPOWER_TP4000ZC, - METEX_ME31, - PEAKTECH_3410, - MASTECH_MAS345, - VA_VA18B, - METEX_M3640D, - PEAKTECH_4370, -}; - -#define DMM_COUNT 8 - -struct dmm_info { - char *vendor; - char *device; - char *conn; - uint32_t baudrate; - int packet_size; - int (*packet_request)(struct sr_serial_dev_inst *); - gboolean (*packet_valid)(const uint8_t *); - int (*packet_parse)(const uint8_t *, float *, - struct sr_datafeed_analog *, void *); - void (*dmm_details)(struct sr_datafeed_analog *, void *); -}; - -SR_PRIV struct dmm_info dmms[DMM_COUNT]; - -#define DMM_BUFSIZE 256 - -/** Private, per-device-instance driver context. */ -struct dev_context { - /** The current sampling limit (in number of samples). */ - uint64_t limit_samples; - - /** Opaque pointer passed in by the frontend. */ - void *cb_data; - - /** The current number of already received samples. */ - uint64_t num_samples; - - struct sr_serial_dev_inst *serial; - - uint8_t buf[DMM_BUFSIZE]; - int bufoffset; - int buflen; -}; - -SR_PRIV int digitek_dt4000zc_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int tekpower_tp4000zc_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int metex_me31_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int peaktech_3410_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int mastech_mas345_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int va_va18b_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int metex_m3640d_receive_data(int fd, int revents, void *cb_data); -SR_PRIV int peaktech_4370_receive_data(int fd, int revents, void *cb_data); - -SR_PRIV void dmm_details_tp4000zc(struct sr_datafeed_analog *analog, void *info); -SR_PRIV void dmm_details_dt4000zc(struct sr_datafeed_analog *analog, void *info); -SR_PRIV void dmm_details_va18b(struct sr_datafeed_analog *analog, void *info); - -#endif