]> sigrok.org Git - libsigrok.git/blame - src/hardware/hameg-hmo/protocol.h
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / hardware / hameg-hmo / protocol.h
CommitLineData
06a3e78a
DJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@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_HAMEG_HMO_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_HAMEG_HMO_PROTOCOL_H
22
06a3e78a 23#include <glib.h>
13f2b9d7
DJ
24#include <stdint.h>
25#include <string.h>
c1aae900 26#include <libsigrok/libsigrok.h>
06a3e78a
DJ
27#include "libsigrok-internal.h"
28
3544f848 29#define LOG_PREFIX "hameg-hmo"
06a3e78a 30
13f2b9d7
DJ
31#define MAX_INSTRUMENT_VERSIONS 10
32#define MAX_COMMAND_SIZE 31
33
13f2b9d7
DJ
34struct scope_config {
35 const char *name[MAX_INSTRUMENT_VERSIONS];
36 const uint8_t analog_channels;
37 const uint8_t digital_channels;
38 const uint8_t digital_pods;
39
40 const char *(*analog_names)[];
41 const char *(*digital_names)[];
42
f254bc4b
BV
43 const uint32_t (*devopts)[];
44 const uint8_t num_devopts;
13f2b9d7 45
f254bc4b
BV
46 const uint32_t (*analog_devopts)[];
47 const uint8_t num_analog_devopts;
13f2b9d7
DJ
48
49 const char *(*coupling_options)[];
50 const uint8_t num_coupling_options;
51
52 const char *(*trigger_sources)[];
53 const uint8_t num_trigger_sources;
54
55 const char *(*trigger_slopes)[];
56
57 const uint64_t (*timebases)[][2];
58 const uint8_t num_timebases;
59
60 const uint64_t (*vdivs)[][2];
61 const uint8_t num_vdivs;
62
63 const uint8_t num_xdivs;
64 const uint8_t num_ydivs;
65
66 const char *(*scpi_dialect)[];
67};
68
69struct analog_channel_state {
70 int coupling;
71
8de2dc3b 72 int vdiv;
13f2b9d7
DJ
73 float vertical_offset;
74
75 gboolean state;
76};
77
78struct scope_state {
79 struct analog_channel_state *analog_channels;
80 gboolean *digital_channels;
81 gboolean *digital_pods;
82
8de2dc3b 83 int timebase;
13f2b9d7
DJ
84 float horiz_triggerpos;
85
86 int trigger_source;
87 int trigger_slope;
14a2f74d 88 uint64_t sample_rate;
13f2b9d7
DJ
89};
90
06a3e78a
DJ
91/** Private, per-device-instance driver context. */
92struct dev_context {
329733d9 93 const void *model_config;
13f2b9d7 94 void *model_state;
06a3e78a 95
562b7ae5
SA
96 struct sr_channel_group **analog_groups;
97 struct sr_channel_group **digital_groups;
06a3e78a 98
ba7dd8bb
UH
99 GSList *enabled_channels;
100 GSList *current_channel;
13f2b9d7 101 uint64_t num_frames;
06a3e78a 102
13f2b9d7 103 uint64_t frame_limit;
06a3e78a
DJ
104};
105
13f2b9d7
DJ
106SR_PRIV int hmo_init_device(struct sr_dev_inst *sdi);
107SR_PRIV int hmo_request_data(const struct sr_dev_inst *sdi);
719eff68 108SR_PRIV int hmo_receive_data(int fd, int revents, void *cb_data);
13f2b9d7 109
719eff68
UH
110SR_PRIV struct scope_state *hmo_scope_state_new(struct scope_config *config);
111SR_PRIV void hmo_scope_state_free(struct scope_state *state);
112SR_PRIV int hmo_scope_state_get(struct sr_dev_inst *sdi);
14a2f74d 113SR_PRIV int hmo_update_sample_rate(const struct sr_dev_inst *sdi);
06a3e78a
DJ
114
115#endif