]> sigrok.org Git - libsigrok.git/blame - src/hardware/yokogawa-dlm/protocol.h
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / yokogawa-dlm / protocol.h
CommitLineData
10763937
SA
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>
8ab929d6 26#include <stdlib.h>
10763937 27#include <string.h>
8ab929d6 28#include <math.h>
c1aae900 29#include <libsigrok/libsigrok.h>
10763937 30#include "libsigrok-internal.h"
8ab929d6
SA
31#include "protocol_wrappers.h"
32
33#define LOG_PREFIX "yokogawa-dlm"
f272d7dd 34
7048bb1f 35#define MAX_INSTRUMENT_VERSIONS 8
8ab929d6 36
1a46cc62 37#define RECEIVE_BUFFER_SIZE 4096
af3487ec 38
8ab929d6 39/* See Communication Interface User's Manual on p. 268 (:WAVeform:ALL:SEND?). */
1a46cc62 40#define DLM_MAX_FRAME_LENGTH 12500
8ab929d6 41/* See Communication Interface User's Manual on p. 269 (:WAVeform:SEND?). */
1a46cc62
UH
42#define DLM_DIVISION_FOR_WORD_FORMAT 3200
43#define DLM_DIVISION_FOR_BYTE_FORMAT 12.5
8ab929d6 44
a9308652 45#define DLM_DIG_CHAN_INDEX_OFFS 32
6fd78a9f 46
8ab929d6
SA
47enum trigger_slopes {
48 SLOPE_POSITIVE,
49 SLOPE_NEGATIVE
50};
51
692716f5 52extern const char *dlm_trigger_slopes[2];
f3c60fb6
SA
53extern const uint64_t dlm_timebases[36][2];
54extern const uint64_t dlm_vdivs[17][2];
55
8ab929d6
SA
56struct 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
8ab929d6
SA
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
8ab929d6
SA
72 const uint8_t num_xdivs;
73 const uint8_t num_ydivs;
8ab929d6
SA
74};
75
76struct analog_channel_state {
77 int coupling;
78
79 int vdiv;
80 float vertical_offset, waveform_range, waveform_offset;
81
82 gboolean state;
83};
84
85struct 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;
af3487ec 96 uint32_t samples_per_frame;
8ab929d6
SA
97};
98
8ab929d6 99struct dev_context {
329733d9 100 const void *model_config;
8ab929d6
SA
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;
af3487ec
SA
111
112 char receive_buffer[RECEIVE_BUFFER_SIZE];
113 gboolean data_pending;
8ab929d6
SA
114};
115
c65a021c
SA
116SR_PRIV int dlm_channel_state_set(const struct sr_dev_inst *sdi,
117 const int ch_index, gboolean state);
8ab929d6 118SR_PRIV int dlm_data_request(const struct sr_dev_inst *sdi);
8ab929d6
SA
119SR_PRIV int dlm_model_get(char *model_id, char **model_name, int *model_index);
120SR_PRIV int dlm_device_init(struct sr_dev_inst *sdi, int model_index);
121SR_PRIV int dlm_data_receive(int fd, int revents, void *cb_data);
8ab929d6
SA
122SR_PRIV void dlm_scope_state_destroy(struct scope_state *state);
123SR_PRIV int dlm_scope_state_query(struct sr_dev_inst *sdi);
124SR_PRIV int dlm_sample_rate_query(const struct sr_dev_inst *sdi);
af3487ec
SA
125SR_PRIV int dlm_channel_data_request(const struct sr_dev_inst *sdi);
126
10763937 127#endif