]> sigrok.org Git - libsigrok.git/blob - src/hardware/yokogawa-dlm/protocol.h
scpi-pps: don't break SCPI devices when scanning for HP-IB devices
[libsigrok.git] / src / hardware / yokogawa-dlm / protocol.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
5  * Based on the Hameg HMO driver by poljar (Damir Jelić) <poljarinho@gmail.com>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_H
22 #define LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_H
23
24 #include <glib.h>
25 #include <stdint.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <math.h>
29 #include <libsigrok/libsigrok.h>
30 #include "libsigrok-internal.h"
31 #include "protocol_wrappers.h"
32
33 #define LOG_PREFIX "yokogawa-dlm"
34
35 #define MAX_INSTRUMENT_VERSIONS 8
36
37 #define RECEIVE_BUFFER_SIZE 4096
38
39 /* See Communication Interface User's Manual on p. 268 (:WAVeform:ALL:SEND?). */
40 #define DLM_MAX_FRAME_LENGTH 12500
41 /* See Communication Interface User's Manual on p. 269 (:WAVeform:SEND?). */
42 #define DLM_DIVISION_FOR_WORD_FORMAT 3200
43 #define DLM_DIVISION_FOR_BYTE_FORMAT 12.5
44
45 #define DLM_DIG_CHAN_INDEX_OFFS 32
46
47 enum trigger_slopes {
48         SLOPE_POSITIVE,
49         SLOPE_NEGATIVE
50 };
51
52 extern const char *dlm_trigger_slopes[2];
53 extern const uint64_t dlm_timebases[36][2];
54 extern const uint64_t dlm_vdivs[17][2];
55
56 struct scope_config {
57         const char *model_id[MAX_INSTRUMENT_VERSIONS];
58         const char *model_name[MAX_INSTRUMENT_VERSIONS];
59         const uint8_t analog_channels;
60         const uint8_t digital_channels;
61         const uint8_t pods;
62
63         const char *(*analog_names)[];
64         const char *(*digital_names)[];
65
66         const char *(*coupling_options)[];
67         const uint8_t num_coupling_options;
68
69         const char *(*trigger_sources)[];
70         const uint8_t num_trigger_sources;
71
72         const uint8_t num_xdivs;
73         const uint8_t num_ydivs;
74 };
75
76 struct analog_channel_state {
77         int coupling;
78
79         int vdiv;
80         float vertical_offset, waveform_range, waveform_offset;
81
82         gboolean state;
83 };
84
85 struct scope_state {
86         struct analog_channel_state *analog_states;
87         gboolean *digital_states;
88         gboolean *pod_states;
89
90         int timebase;
91         float horiz_triggerpos;
92
93         int trigger_source;
94         int trigger_slope;
95         uint64_t sample_rate;
96         uint32_t samples_per_frame;
97 };
98
99 struct dev_context {
100         const void *model_config;
101         void *model_state;
102
103         struct sr_channel_group **analog_groups;
104         struct sr_channel_group **digital_groups;
105
106         GSList *enabled_channels;
107         GSList *current_channel;
108         uint64_t num_frames;
109
110         uint64_t frame_limit;
111
112         char receive_buffer[RECEIVE_BUFFER_SIZE];
113         gboolean data_pending;
114 };
115
116 SR_PRIV int dlm_channel_state_set(const struct sr_dev_inst *sdi,
117                 const int ch_index, gboolean state);
118 SR_PRIV int dlm_data_request(const struct sr_dev_inst *sdi);
119 SR_PRIV int dlm_model_get(char *model_id, char **model_name, int *model_index);
120 SR_PRIV int dlm_device_init(struct sr_dev_inst *sdi, int model_index);
121 SR_PRIV int dlm_data_receive(int fd, int revents, void *cb_data);
122 SR_PRIV void dlm_scope_state_destroy(struct scope_state *state);
123 SR_PRIV int dlm_scope_state_query(struct sr_dev_inst *sdi);
124 SR_PRIV int dlm_sample_rate_query(const struct sr_dev_inst *sdi);
125 SR_PRIV int dlm_channel_data_request(const struct sr_dev_inst *sdi);
126
127 #endif