]> sigrok.org Git - libsigrok.git/blob - hardware/serial-dmm/protocol.h
Centralise duplicated logging helper defines.
[libsigrok.git] / hardware / serial-dmm / protocol.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef LIBSIGROK_HARDWARE_SERIAL_DMM_PROTOCOL_H
21 #define LIBSIGROK_HARDWARE_SERIAL_DMM_PROTOCOL_H
22
23 #define LOG_PREFIX "serial-dmm"
24
25 /* Note: When adding entries here, don't forget to update DMM_COUNT. */
26 enum {
27         BBCGM_M2110,
28         DIGITEK_DT4000ZC,
29         TEKPOWER_TP4000ZC,
30         METEX_ME31,
31         PEAKTECH_3410,
32         MASTECH_MAS345,
33         VA_VA18B,
34         METEX_M3640D,
35         METEX_M4650CR,
36         PEAKTECH_4370,
37         PCE_PCE_DM32,
38         RADIOSHACK_22_168,
39         RADIOSHACK_22_805,
40         RADIOSHACK_22_812,
41         TECPEL_DMM_8061_SER,
42         VOLTCRAFT_M3650D,
43         VOLTCRAFT_M4650CR,
44         VOLTCRAFT_VC820_SER,
45         VOLTCRAFT_VC830_SER,
46         VOLTCRAFT_VC840_SER,
47         UNI_T_UT60A_SER,
48         UNI_T_UT60E_SER,
49         UNI_T_UT61D_SER,
50         UNI_T_UT61E_SER,
51         ISO_TECH_IDM103N,
52 };
53
54 #define DMM_COUNT 25
55
56 struct dmm_info {
57         /** Manufacturer/brand. */
58         char *vendor;
59         /** Model. */
60         char *device;
61         /** serialconn string. */
62         char *conn;
63         /** Baud rate. */
64         uint32_t baudrate;
65         /** Packet size in bytes. */
66         int packet_size;
67         /** Packet request function. */
68         int (*packet_request)(struct sr_serial_dev_inst *);
69         /** Packet validation function. */
70         gboolean (*packet_valid)(const uint8_t *);
71         /** Packet parsing function. */
72         int (*packet_parse)(const uint8_t *, float *,
73                             struct sr_datafeed_analog *, void *);
74         /** */
75         void (*dmm_details)(struct sr_datafeed_analog *, void *);
76         /** libsigrok driver info struct. */
77         struct sr_dev_driver *di;
78         /** Data reception function. */
79         int (*receive_data)(int, int, void *);
80 };
81
82 extern SR_PRIV struct dmm_info dmms[DMM_COUNT];
83
84 #define DMM_BUFSIZE 256
85
86 /** Private, per-device-instance driver context. */
87 struct dev_context {
88         /** The current sampling limit (in number of samples). */
89         uint64_t limit_samples;
90
91         /** The time limit (in milliseconds). */
92         uint64_t limit_msec;
93
94         /** Opaque pointer passed in by the frontend. */
95         void *cb_data;
96
97         /** The current number of already received samples. */
98         uint64_t num_samples;
99
100         int64_t starttime;
101
102         uint8_t buf[DMM_BUFSIZE];
103         int bufoffset;
104         int buflen;
105 };
106
107 SR_PRIV int receive_data_BBCGM_M2110(int fd, int revents, void *cb_data);
108 SR_PRIV int receive_data_DIGITEK_DT4000ZC(int fd, int revents, void *cb_data);
109 SR_PRIV int receive_data_TEKPOWER_TP4000ZC(int fd, int revents, void *cb_data);
110 SR_PRIV int receive_data_METEX_ME31(int fd, int revents, void *cb_data);
111 SR_PRIV int receive_data_PEAKTECH_3410(int fd, int revents, void *cb_data);
112 SR_PRIV int receive_data_MASTECH_MAS345(int fd, int revents, void *cb_data);
113 SR_PRIV int receive_data_VA_VA18B(int fd, int revents, void *cb_data);
114 SR_PRIV int receive_data_METEX_M3640D(int fd, int revents, void *cb_data);
115 SR_PRIV int receive_data_METEX_M4650CR(int fd, int revents, void *cb_data);
116 SR_PRIV int receive_data_PEAKTECH_4370(int fd, int revents, void *cb_data);
117 SR_PRIV int receive_data_PCE_PCE_DM32(int fd, int revents, void *cb_data);
118 SR_PRIV int receive_data_RADIOSHACK_22_168(int fd, int revents, void *cb_data);
119 SR_PRIV int receive_data_RADIOSHACK_22_805(int fd, int revents, void *cb_data);
120 SR_PRIV int receive_data_RADIOSHACK_22_812(int fd, int revents, void *cb_data);
121 SR_PRIV int receive_data_TECPEL_DMM_8061_SER(int fd, int revents, void *cb_data);
122 SR_PRIV int receive_data_VOLTCRAFT_M3650D(int fd, int revents, void *cb_data);
123 SR_PRIV int receive_data_VOLTCRAFT_M4650CR(int fd, int revents, void *cb_data);
124 SR_PRIV int receive_data_VOLTCRAFT_VC820_SER(int fd, int revents, void *cb_data);
125 SR_PRIV int receive_data_VOLTCRAFT_VC830_SER(int fd, int revents, void *cb_data);
126 SR_PRIV int receive_data_VOLTCRAFT_VC840_SER(int fd, int revents, void *cb_data);
127 SR_PRIV int receive_data_UNI_T_UT60A_SER(int fd, int revents, void *cb_data);
128 SR_PRIV int receive_data_UNI_T_UT60E_SER(int fd, int revents, void *cb_data);
129 SR_PRIV int receive_data_UNI_T_UT61D_SER(int fd, int revents, void *cb_data);
130 SR_PRIV int receive_data_UNI_T_UT61E_SER(int fd, int revents, void *cb_data);
131 SR_PRIV int receive_data_ISO_TECH_IDM103N(int fd, int revents, void *cb_data);
132
133 SR_PRIV void dmm_details_tp4000zc(struct sr_datafeed_analog *analog, void *info);
134 SR_PRIV void dmm_details_dt4000zc(struct sr_datafeed_analog *analog, void *info);
135 SR_PRIV void dmm_details_va18b(struct sr_datafeed_analog *analog, void *info);
136 SR_PRIV void dmm_details_pce_dm32(struct sr_datafeed_analog *analog, void *info);
137
138 #endif