]> sigrok.org Git - libsigrok.git/blame - src/hardware/agilent-dmm/protocol.h
scpi-pps: Add a missing "break" in config_get().
[libsigrok.git] / src / hardware / agilent-dmm / protocol.h
CommitLineData
e93cdf42 1/*
50985c20 2 * This file is part of the libsigrok project.
e93cdf42
BV
3 *
4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.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
6cf1a87b
UH
20#ifndef LIBSIGROK_HARDWARE_AGILENT_DMM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_AGILENT_DMM_PROTOCOL_H
e93cdf42 22
3544f848 23#define LOG_PREFIX "agilent-dmm"
38d326e8 24
d822726d 25#define MAX_CHANNELS 3
d9251a2c 26#define AGDMM_BUFSIZE 256
e93cdf42 27
95779b43
BV
28/* Always USB-serial, 1ms is plenty. */
29#define SERIAL_WRITE_TIMEOUT_MS 1
30
63bb11ba
AJ
31#define DEFAULT_DATA_SOURCE DATA_SOURCE_LIVE
32
33enum {
34 DATA_SOURCE_LIVE,
35 DATA_SOURCE_LOG_HAND,
36 DATA_SOURCE_LOG_TRIG,
37 DATA_SOURCE_LOG_AUTO,
38 DATA_SOURCE_LOG_EXPO,
39};
40
e93cdf42
BV
41/* Supported models */
42enum {
f857bd92
BV
43 AGILENT_U1231 = 1,
44 AGILENT_U1232,
45 AGILENT_U1233,
46
4edba404
BV
47 AGILENT_U1241,
48 AGILENT_U1242,
49
0ceb7038
AJ
50 KEYSIGHT_U1241C,
51 KEYSIGHT_U1242C,
52
f857bd92
BV
53 AGILENT_U1251,
54 AGILENT_U1252,
55 AGILENT_U1253,
43185ed3
AJ
56
57 KEYSIGHT_U1281,
58 KEYSIGHT_U1282,
e93cdf42
BV
59};
60
61/* Supported device profiles */
62struct agdmm_profile {
63 int model;
64 const char *modelname;
d822726d 65 int nb_channels;
63bb11ba
AJ
66 const struct agdmm_job *jobs_live;
67 const struct agdmm_job *jobs_log;
e93cdf42
BV
68 const struct agdmm_recv *recvs;
69};
70
e93cdf42
BV
71struct dev_context {
72 const struct agdmm_profile *profile;
5b6829ea 73 struct sr_sw_limits limits;
63bb11ba 74 int data_source;
e93cdf42 75
63bb11ba 76 const struct agdmm_job *jobs;
b907d62f
AJ
77 int current_job;
78 gboolean job_running;
79 gboolean job_again;
80 int64_t jobs_start[8];
e93cdf42
BV
81 unsigned char buf[AGDMM_BUFSIZE];
82 int buflen;
b907d62f 83 uint64_t cur_samplerate;
d822726d
AJ
84 struct sr_channel *cur_channel;
85 struct sr_channel *cur_conf;
63bb11ba 86 int cur_sample;
d822726d
AJ
87 int cur_mq[MAX_CHANNELS];
88 int cur_unit[MAX_CHANNELS];
89 int cur_mqflags[MAX_CHANNELS];
90 int cur_digits[MAX_CHANNELS];
91 int cur_encoding[MAX_CHANNELS];
92 int cur_exponent[MAX_CHANNELS];
e6b021f3
BV
93 int mode_tempaux;
94 int mode_continuity;
43185ed3 95 int mode_squarewave;
8f68f36b 96 int mode_dbm_dbv;
e93cdf42
BV
97};
98
b907d62f
AJ
99enum job_type {
100 JOB_AGAIN = 1,
63bb11ba 101 JOB_STOP,
b907d62f
AJ
102 JOB_CONF,
103 JOB_STAT,
104 JOB_FETC,
105 JOB_LOG,
106};
107
e93cdf42 108struct agdmm_job {
b907d62f 109 enum job_type type;
e93cdf42
BV
110 int interval;
111 int (*send) (const struct sr_dev_inst *sdi);
112};
113
114struct agdmm_recv {
115 const char *recv_regex;
116 int (*recv) (const struct sr_dev_inst *sdi, GMatchInfo *match);
117};
118
119SR_PRIV int agdmm_receive_data(int fd, int revents, void *cb_data);
120
ce4d26dd 121#endif