]> sigrok.org Git - libsigrok.git/blame - sigrok.h.in
sr: remove unused time/duration fields from datafeed packets
[libsigrok.git] / sigrok.h.in
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
01469707 4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
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 SIGROK_SIGROK_H
21#define SIGROK_SIGROK_H
22
23#include <stdio.h>
24#include <sys/time.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <glib.h>
a1bb33af 28
a00b530c
UH
29#ifdef __cplusplus
30extern "C" {
31#endif
32
e31b636d
UH
33/*
34 * Status/error codes returned by libsigrok functions.
35 *
36 * All possible return codes of libsigrok functions must be listed here.
37 * Functions should never return hardcoded numbers as status, but rather
38 * use these #defines instead. All error codes are negative numbers.
39 *
40 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
41 * libsigrok functions returns a "malloc error" it must be exactly the same
42 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
43 * There must be no functions which indicate two different errors via the
44 * same return code.
45 *
46 * Also, for compatibility reasons, no defined return codes are ever removed
47 * or reused for different #defines later. You can only add new #defines and
48 * return codes, but never remove or redefine existing ones.
49 */
e46b8fb1
UH
50#define SR_OK 0 /* No error */
51#define SR_ERR -1 /* Generic/unspecified error */
52#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
f7d2982d 53#define SR_ERR_ARG -3 /* Function argument error */
e0508e67
UH
54#define SR_ERR_BUG -4 /* Errors hinting at internal bugs */
55#define SR_ERR_SAMPLERATE -5 /* Incorrect samplerate */
a1bb33af 56
9688b443
UH
57#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
58#define SR_MAX_PROBENAME_LEN 32
2a3f9541 59
a1bb33af 60/* Handy little macros */
c9140419 61#define SR_HZ(n) (n)
59df0c77
UH
62#define SR_KHZ(n) ((n) * 1000)
63#define SR_MHZ(n) ((n) * 1000000)
64#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 65
59df0c77 66#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 67
1352eedd 68/* libsigrok loglevels. */
8e49cebd
BV
69#define SR_LOG_NONE 0
70#define SR_LOG_ERR 1
71#define SR_LOG_WARN 2
72#define SR_LOG_INFO 3
73#define SR_LOG_DBG 4
74#define SR_LOG_SPEW 5
1352eedd 75
a887e3da 76typedef int (*sr_receive_data_callback) (int fd, int revents, void *user_data);
882e2075 77
882e2075 78/* Data types used by hardware plugins for set_configuration() */
a1bb33af 79enum {
5a2326a7
UH
80 SR_T_UINT64,
81 SR_T_CHAR,
4d436e71 82 SR_T_BOOL,
a1bb33af
UH
83};
84
b9c735a2 85/* sr_datafeed_packet.type values */
a1bb33af 86enum {
5a2326a7
UH
87 SR_DF_HEADER,
88 SR_DF_END,
89 SR_DF_TRIGGER,
90 SR_DF_LOGIC,
91 SR_DF_ANALOG,
92 SR_DF_PD,
a1bb33af
UH
93};
94
b9c735a2 95struct sr_datafeed_packet {
a1bb33af 96 uint16_t type;
a1bb33af
UH
97 void *payload;
98};
99
b9c735a2 100struct sr_datafeed_header {
a1bb33af
UH
101 int feed_version;
102 struct timeval starttime;
4c100f32 103 uint64_t samplerate;
921e753f
DR
104 int num_analog_probes;
105 int num_logic_probes;
a1bb33af
UH
106};
107
38ab3ee7
BV
108struct sr_datafeed_logic {
109 uint64_t length;
110 uint16_t unitsize;
9c939c51 111 void *data;
38ab3ee7
BV
112};
113
f50f3f40
UH
114struct sr_input {
115 struct sr_input_format *format;
13a12913 116 char *param;
5c2d46d1 117 struct sr_device *vdevice;
34e4813f
BV
118};
119
f50f3f40 120struct sr_input_format {
cdb3573c 121 char *id;
34e4813f 122 char *description;
757b8c62 123 int (*format_match) (const char *filename);
f50f3f40
UH
124 int (*init) (struct sr_input *in);
125 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
126};
127
f50f3f40
UH
128struct sr_output {
129 struct sr_output_format *format;
5c2d46d1 130 struct sr_device *device;
a1bb33af
UH
131 char *param;
132 void *internal;
133};
134
f50f3f40 135struct sr_output_format {
cdb3573c 136 char *id;
a1bb33af 137 char *description;
f0411b1d 138 int df_type;
f50f3f40 139 int (*init) (struct sr_output *o);
54ac5277
UH
140 int (*data) (struct sr_output *o, const char *data_in,
141 uint64_t length_in, char **data_out, uint64_t *length_out);
f50f3f40 142 int (*event) (struct sr_output *o, int event_type, char **data_out,
a1bb33af
UH
143 uint64_t *length_out);
144};
145
c4911129 146struct sr_datastore {
a1bb33af
UH
147 /* Size in bytes of the number of units stored in this datastore */
148 int ds_unitsize;
33247d6a 149 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
150 GSList *chunklist;
151};
152
a1bb33af
UH
153/*
154 * This represents a generic device connected to the system.
155 * For device-specific information, ask the plugin. The plugin_index refers
156 * to the device index within that plugin; it may be handling more than one
157 * device. All relevant plugin calls take a device_index parameter for this.
158 */
5c2d46d1 159struct sr_device {
a1bb33af 160 /* Which plugin handles this device */
5c2d46d1 161 struct sr_device_plugin *plugin;
a1bb33af
UH
162 /* A plugin may handle multiple devices of the same type */
163 int plugin_index;
1afe8989 164 /* List of struct sr_probe* */
a1bb33af
UH
165 GSList *probes;
166 /* Data acquired by this device, if any */
c4911129 167 struct sr_datastore *datastore;
a1bb33af
UH
168};
169
921e753f 170enum {
5a2326a7
UH
171 SR_PROBE_TYPE_LOGIC,
172 SR_PROBE_TYPE_ANALOG,
921e753f
DR
173};
174
1afe8989 175struct sr_probe {
a1bb33af 176 int index;
6ea7e235 177 int type;
a1bb33af
UH
178 gboolean enabled;
179 char *name;
180 char *trigger;
181};
182
a1bb33af
UH
183/* Hardware plugin capabilities */
184enum {
fb93625d 185 SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
e88dadd7
UH
186
187 /*--- Device classes ------------------------------------------------*/
188
189 /** The device can act as logic analyzer. */
5a2326a7 190 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 191
e88dadd7
UH
192 /* TODO: SR_HWCAP_SCOPE, SW_HWCAP_PATTERN_GENERATOR, etc.? */
193
a141db8c
AS
194 /*--- Device types --------------------------------------------------*/
195
196 /** The device is demo device. */
197 SR_HWCAP_DEMO_DEVICE,
198
e88dadd7
UH
199 /*--- Device options ------------------------------------------------*/
200
201 /** The device supports setting/changing its samplerate. */
202 SR_HWCAP_SAMPLERATE,
203
204 /* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
205 /** The device supports setting a probe mask. */
206 SR_HWCAP_PROBECONFIG,
207
208 /** The device supports setting a pre/post-trigger capture ratio. */
209 SR_HWCAP_CAPTURE_RATIO,
210
211 /* TODO? */
212 /** The device supports setting a pattern (pattern generator mode). */
213 SR_HWCAP_PATTERN_MODE,
214
3a4d09c0
GM
215 /** The device supports Run Length Encoding. */
216 SR_HWCAP_RLE,
217
e88dadd7
UH
218 /*--- Special stuff -------------------------------------------------*/
219
220 /* TODO: Better description. */
221 /** The device supports specifying a capturefile to inject. */
222 SR_HWCAP_CAPTUREFILE,
925dbf9f 223
e88dadd7
UH
224 /* TODO: Better description. */
225 /** The device supports specifying the capturefile unit size. */
226 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 227
e88dadd7
UH
228 /* TODO: Better description. */
229 /** The device supports setting the number of probes. */
230 SR_HWCAP_CAPTURE_NUM_PROBES,
231
232 /*--- Acquisition modes ---------------------------------------------*/
233
234 /**
235 * The device supports setting a sample time limit, i.e. how long the
236 * sample acquisition should run (in ms).
237 */
238 SR_HWCAP_LIMIT_MSEC,
239
240 /**
241 * The device supports setting a sample number limit, i.e. how many
242 * samples should be acquired.
243 */
244 SR_HWCAP_LIMIT_SAMPLES,
245
246 /**
247 * The device supports continuous sampling, i.e. neither a time limit
248 * nor a sample number limit has to be supplied, it will just acquire
249 * samples continuously, until explicitly stopped by a certain command.
250 */
5a2326a7 251 SR_HWCAP_CONTINUOUS,
e88dadd7
UH
252
253 /* TODO: SR_HWCAP_JUST_SAMPLE or similar. */
a1bb33af
UH
254};
255
a65de030 256struct sr_hwcap_option {
a1bb33af
UH
257 int capability;
258 int type;
259 char *description;
260 char *shortname;
261};
262
a00ba012 263struct sr_device_instance {
a1bb33af
UH
264 int index;
265 int status;
266 int instance_type;
267 char *vendor;
268 char *model;
269 char *version;
8d672550 270 void *priv;
a1bb33af
UH
271};
272
a00ba012 273/* sr_device_instance types */
a1bb33af 274enum {
5a2326a7
UH
275 SR_USB_INSTANCE,
276 SR_SERIAL_INSTANCE,
a1bb33af
UH
277};
278
a1bb33af
UH
279/* Device instance status */
280enum {
5a2326a7 281 SR_ST_NOT_FOUND,
a1bb33af 282 /* Found, but still booting */
5a2326a7 283 SR_ST_INITIALIZING,
a1bb33af 284 /* Live, but not in use */
5a2326a7 285 SR_ST_INACTIVE,
a1bb33af 286 /* Actively in use in a session */
5a2326a7 287 SR_ST_ACTIVE,
a1bb33af
UH
288};
289
290/*
291 * TODO: This sucks, you just kinda have to "know" the returned type.
292 * TODO: Need a DI to return the number of trigger stages supported.
293 */
294
295/* Device info IDs */
296enum {
a00ba012 297 /* struct sr_device_instance for this specific device */
5a2326a7 298 SR_DI_INSTANCE,
a1bb33af 299 /* The number of probes connected to this device */
5a2326a7 300 SR_DI_NUM_PROBES,
464d12c7
KS
301 /* The probe names on this device */
302 SR_DI_PROBE_NAMES,
60679b18 303 /* Samplerates supported by this device, (struct sr_samplerates) */
5a2326a7 304 SR_DI_SAMPLERATES,
a1bb33af 305 /* Types of trigger supported, out of "01crf" (char *) */
5a2326a7 306 SR_DI_TRIGGER_TYPES,
4c100f32 307 /* The currently set samplerate in Hz (uint64_t) */
5a2326a7 308 SR_DI_CUR_SAMPLERATE,
925dbf9f 309 /* Supported pattern generator modes */
5a2326a7 310 SR_DI_PATTERNMODES,
a1bb33af
UH
311};
312
1b452b85
UH
313/*
314 * A device supports either a range of samplerates with steps of a given
315 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
316 * step or list, but not both.
317 */
60679b18 318struct sr_samplerates {
a1bb33af
UH
319 uint64_t low;
320 uint64_t high;
321 uint64_t step;
322 uint64_t *list;
323};
324
5c2d46d1 325struct sr_device_plugin {
1b452b85 326 /* Plugin-specific */
a1bb33af 327 char *name;
9f8274a5 328 char *longname;
a1bb33af 329 int api_version;
54ac5277 330 int (*init) (const char *deviceinfo);
a1bb33af
UH
331 void (*cleanup) (void);
332
1b452b85 333 /* Device-specific */
86f5e3d8 334 int (*opendev) (int device_index);
697785d1 335 int (*closedev) (int device_index);
a1bb33af
UH
336 void *(*get_device_info) (int device_index, int device_info_id);
337 int (*get_status) (int device_index);
338 int *(*get_capabilities) (void);
339 int (*set_configuration) (int device_index, int capability, void *value);
340 int (*start_acquisition) (int device_index, gpointer session_device_id);
341 void (*stop_acquisition) (int device_index, gpointer session_device_id);
342};
343
2872d21e 344struct sr_session {
5c2d46d1 345 /* List of struct sr_device* */
a1bb33af 346 GSList *devices;
a887e3da 347 /* list of sr_receive_data_callback */
a1bb33af
UH
348 GSList *datafeed_callbacks;
349 GTimeVal starttime;
544a4582 350 gboolean running;
a1bb33af
UH
351};
352
882e2075 353#include "sigrok-proto.h"
c2bd92ec 354
a00b530c
UH
355#ifdef __cplusplus
356}
357#endif
358
a1bb33af 359#endif