]> sigrok.org Git - libsigrok.git/blame - libsigrok.h
Doxygen: Fix grouping of session_file.c functions.
[libsigrok.git] / libsigrok.h
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-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
0f8522bf
UH
20#ifndef LIBSIGROK_SIGROK_H
21#define LIBSIGROK_SIGROK_H
a1bb33af
UH
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 33/*
e31b636d
UH
34 * All possible return codes of libsigrok functions must be listed here.
35 * Functions should never return hardcoded numbers as status, but rather
3c0839d5 36 * use these enum values. All error codes are negative numbers.
e31b636d
UH
37 *
38 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
39 * libsigrok functions returns a "malloc error" it must be exactly the same
40 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
41 * There must be no functions which indicate two different errors via the
42 * same return code.
43 *
44 * Also, for compatibility reasons, no defined return codes are ever removed
3c0839d5 45 * or reused for different errors later. You can only add new entries and
e31b636d
UH
46 * return codes, but never remove or redefine existing ones.
47 */
3c0839d5
UH
48
49/** Status/error codes returned by libsigrok functions. */
50enum {
51 SR_OK = 0, /**< No error. */
52 SR_ERR = -1, /**< Generic/unspecified error. */
53 SR_ERR_MALLOC = -2, /**< Malloc/calloc/realloc error. */
54 SR_ERR_ARG = -3, /**< Function argument error. */
55 SR_ERR_BUG = -4, /**< Errors hinting at internal bugs. */
56 SR_ERR_SAMPLERATE = -5, /**< Incorrect samplerate. */
57};
a1bb33af 58
b2ff9506
BV
59#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
60#define SR_MAX_PROBENAME_LEN 32
2a3f9541 61
a1bb33af 62/* Handy little macros */
c9140419 63#define SR_HZ(n) (n)
59df0c77
UH
64#define SR_KHZ(n) ((n) * 1000)
65#define SR_MHZ(n) ((n) * 1000000)
66#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 67
59df0c77 68#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 69
3c0839d5
UH
70/** libsigrok loglevels. */
71enum {
72 SR_LOG_NONE = 0, /**< Output no messages at all. */
73 SR_LOG_ERR = 1, /**< Output error messages. */
74 SR_LOG_WARN = 2, /**< Output warnings. */
75 SR_LOG_INFO = 3, /**< Output informational messages. */
76 SR_LOG_DBG = 4, /**< Output debug messages. */
77 SR_LOG_SPEW = 5, /**< Output very noisy debug messages. */
78};
1352eedd 79
1a081ca6
UH
80/*
81 * Use SR_API to mark public API symbols, and SR_PRIV for private symbols.
82 *
83 * Variables and functions marked 'static' are private already and don't
84 * need SR_PRIV. However, functions which are not static (because they need
85 * to be used in other libsigrok-internal files) but are also not meant to
86 * be part of the public libsigrok API, must use SR_PRIV.
87 *
88 * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
89 *
69e70c23
UH
90 * This feature is not available on MinGW/Windows, as it is a feature of
91 * ELF files and MinGW/Windows uses PE files.
92 *
1a081ca6
UH
93 * Details: http://gcc.gnu.org/wiki/Visibility
94 */
95
96/* Marks public libsigrok API symbols. */
69e70c23 97#ifndef _WIN32
1a081ca6 98#define SR_API __attribute__((visibility("default")))
69e70c23
UH
99#else
100#define SR_API
101#endif
1a081ca6
UH
102
103/* Marks private, non-public libsigrok symbols (not part of the API). */
69e70c23 104#ifndef _WIN32
1a081ca6 105#define SR_PRIV __attribute__((visibility("hidden")))
69e70c23
UH
106#else
107#define SR_PRIV
108#endif
1a081ca6 109
1f9813eb 110typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
882e2075 111
3c0839d5 112/** Data types used by hardware drivers for dev_config_set(). */
a1bb33af 113enum {
5a2326a7
UH
114 SR_T_UINT64,
115 SR_T_CHAR,
4d436e71 116 SR_T_BOOL,
0fe11789 117 SR_T_FLOAT,
c1e48618 118 SR_T_RATIONAL_PERIOD,
bd8db307 119 SR_T_RATIONAL_VOLT,
45edd0b2 120 SR_T_KEYVALUE,
0fe11789
BV
121};
122
3c0839d5 123/** Rational number data type, containing numerator and denominator values. */
0fe11789 124struct sr_rational {
3c0839d5 125 /** Numerator of the rational number. */
0fe11789 126 uint64_t p;
3c0839d5 127 /** Denominator of the rational number. */
0fe11789 128 uint64_t q;
a1bb33af
UH
129};
130
3c0839d5 131/** Value for sr_datafeed_packet.type. */
a1bb33af 132enum {
5a2326a7
UH
133 SR_DF_HEADER,
134 SR_DF_END,
135 SR_DF_TRIGGER,
136 SR_DF_LOGIC,
ee7489d2
BV
137 SR_DF_META_LOGIC,
138 SR_DF_ANALOG,
139 SR_DF_META_ANALOG,
6ea7669c
BV
140 SR_DF_FRAME_BEGIN,
141 SR_DF_FRAME_END,
a1bb33af
UH
142};
143
3c0839d5 144/** Values for sr_datafeed_analog.mq. */
9956f285
UH
145enum {
146 SR_MQ_VOLTAGE,
147 SR_MQ_CURRENT,
148 SR_MQ_RESISTANCE,
149 SR_MQ_CAPACITANCE,
150 SR_MQ_TEMPERATURE,
151 SR_MQ_FREQUENCY,
152 SR_MQ_DUTY_CYCLE,
64591be2 153 SR_MQ_CONTINUITY,
aa839a5c 154 SR_MQ_PULSE_WIDTH,
96b3b3d5 155 SR_MQ_CONDUCTANCE,
3c0839d5 156 /** Electrical power, usually in W, or dBm. */
b82a17d3 157 SR_MQ_POWER,
3c0839d5 158 /** Gain (e.g. a transistor's gain, or hFE). */
b82a17d3 159 SR_MQ_GAIN,
9956f285
UH
160};
161
3c0839d5 162/** Values for sr_datafeed_analog.unit. */
aff5a729 163enum {
9956f285
UH
164 SR_UNIT_VOLT,
165 SR_UNIT_AMPERE,
166 SR_UNIT_OHM,
167 SR_UNIT_FARAD,
9956f285 168 SR_UNIT_KELVIN,
edb000eb
BV
169 SR_UNIT_CELSIUS,
170 SR_UNIT_FAHRENHEIT,
9956f285
UH
171 SR_UNIT_HERTZ,
172 SR_UNIT_PERCENTAGE,
edb000eb 173 SR_UNIT_BOOLEAN,
aa839a5c 174 SR_UNIT_SECOND,
3c0839d5 175 /** Unit of conductance, the inverse of resistance. */
96b3b3d5 176 SR_UNIT_SIEMENS,
3c0839d5
UH
177 /**
178 * An absolute measurement of power, in decibels, referenced to
179 * 1 milliwatt (dBu).
180 */
b82a17d3 181 SR_UNIT_DECIBEL_MW,
6b869234
BV
182 /** Voltage in decibel, referenced to 1 volt (dBV). */
183 SR_UNIT_DECIBEL_VOLT,
3c0839d5
UH
184 /**
185 * Measurements that intrinsically do not have units attached, such
6b869234 186 * as ratios, gains, etc. Specifically, a transistor's gain (hFE) is
3c0839d5
UH
187 * a unitless quantity, for example.
188 */
b82a17d3 189 SR_UNIT_UNITLESS,
aff5a729
BV
190};
191
3c0839d5 192/** Values for sr_datafeed_analog.flags. */
02e864d0 193enum {
3c0839d5 194 /** Voltage measurement is alternating current (AC). */
02e864d0 195 SR_MQFLAG_AC = 0x01,
3c0839d5 196 /** Voltage measurement is direct current (DC). */
02e864d0
BV
197 SR_MQFLAG_DC = 0x02,
198 /** This is a true RMS measurement. */
199 SR_MQFLAG_RMS = 0x04,
200 /** Value is voltage drop across a diode, or NAN. */
201 SR_MQFLAG_DIODE = 0x08,
202 /** Device is in "hold" mode, i.e. repeating the last measurement. */
203 SR_MQFLAG_HOLD = 0x10,
3c0839d5 204 /** Device is in "max" mode, only updating upon a new max value. */
02e864d0 205 SR_MQFLAG_MAX = 0x20,
3c0839d5 206 /** Device is in "min" mode, only updating upon a new min value. */
02e864d0
BV
207 SR_MQFLAG_MIN = 0x40,
208 /** Device is in autoranging mode. */
209 SR_MQFLAG_AUTORANGE = 0x80,
210 /** Device is in relative mode. */
211 SR_MQFLAG_RELATIVE = 0x100,
212};
213
b8072700
PS
214struct sr_context;
215
b9c735a2 216struct sr_datafeed_packet {
a1bb33af 217 uint16_t type;
a1bb33af
UH
218 void *payload;
219};
220
b9c735a2 221struct sr_datafeed_header {
a1bb33af
UH
222 int feed_version;
223 struct timeval starttime;
ee7489d2
BV
224};
225
226struct sr_datafeed_meta_logic {
227 int num_probes;
4c100f32 228 uint64_t samplerate;
a1bb33af
UH
229};
230
38ab3ee7
BV
231struct sr_datafeed_logic {
232 uint64_t length;
233 uint16_t unitsize;
9c939c51 234 void *data;
38ab3ee7
BV
235};
236
ee7489d2
BV
237struct sr_datafeed_meta_analog {
238 int num_probes;
239};
240
241struct sr_datafeed_analog {
242 int num_samples;
3c0839d5 243 /** Measured quantity (e.g. voltage, current, temperature). */
02e864d0
BV
244 int mq;
245 /** Unit in which the MQ is measured. */
246 int unit;
247 /** Bitmap with extra information about the MQ. */
248 uint64_t mqflags;
3c0839d5 249 /** The analog value. */
ee7489d2
BV
250 float *data;
251};
252
f50f3f40
UH
253struct sr_input {
254 struct sr_input_format *format;
3dafb92b 255 GHashTable *param;
5c3c1241 256 struct sr_dev_inst *sdi;
3dafb92b 257 void *internal;
34e4813f
BV
258};
259
f50f3f40 260struct sr_input_format {
cdb3573c 261 char *id;
34e4813f 262 char *description;
757b8c62 263 int (*format_match) (const char *filename);
f50f3f40
UH
264 int (*init) (struct sr_input *in);
265 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
266};
267
f50f3f40
UH
268struct sr_output {
269 struct sr_output_format *format;
5c3c1241 270 struct sr_dev_inst *sdi;
a1bb33af
UH
271 char *param;
272 void *internal;
273};
274
f50f3f40 275struct sr_output_format {
cdb3573c 276 char *id;
a1bb33af 277 char *description;
f0411b1d 278 int df_type;
f50f3f40 279 int (*init) (struct sr_output *o);
054e6709
UH
280 int (*data) (struct sr_output *o, const uint8_t *data_in,
281 uint64_t length_in, uint8_t **data_out,
282 uint64_t *length_out);
283 int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
a1bb33af 284 uint64_t *length_out);
f45b7590
BV
285 GString *(*recv) (struct sr_output *o, const struct sr_dev_inst *sdi,
286 struct sr_datafeed_packet *packet);
287 int (*cleanup) (struct sr_output *o);
a1bb33af
UH
288};
289
c4911129 290struct sr_datastore {
3c0839d5 291 /** Size in bytes of the number of units stored in this datastore. */
a1bb33af 292 int ds_unitsize;
33247d6a 293 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
294 GSList *chunklist;
295};
296
a1bb33af
UH
297/*
298 * This represents a generic device connected to the system.
c09f0b57
UH
299 * For device-specific information, ask the driver. The driver_index refers
300 * to the device index within that driver; it may be handling more than one
301 * device. All relevant driver calls take a dev_index parameter for this.
a1bb33af 302 */
bb7ef793 303struct sr_dev {
3c0839d5 304 /** Which driver handles this device. */
c09f0b57 305 struct sr_dev_driver *driver;
3c0839d5 306 /** A driver may handle multiple devices of the same type. */
c09f0b57 307 int driver_index;
3c0839d5 308 /** List of struct sr_probe pointers. */
a1bb33af 309 GSList *probes;
3c0839d5 310 /** Data acquired by this device, if any. */
c4911129 311 struct sr_datastore *datastore;
a1bb33af
UH
312};
313
921e753f 314enum {
47211d65 315 SR_PROBE_LOGIC,
87ca93c5 316 SR_PROBE_ANALOG,
921e753f
DR
317};
318
1afe8989 319struct sr_probe {
a1bb33af 320 int index;
6ea7e235 321 int type;
a1bb33af
UH
322 gboolean enabled;
323 char *name;
324 char *trigger;
325};
326
b159add3
BV
327struct sr_hwopt {
328 int hwopt;
329 const void *value;
330};
331
3c0839d5 332/** Hardware driver options. */
b159add3 333enum {
3c0839d5
UH
334 /** Used to terminate lists. Must be 0! */
335 SR_HWOPT_DUMMY = 0,
8bfdc8c4 336
9c5332d2
UH
337 /**
338 * Some drivers cannot detect the exact model they're talking to
339 * (may be phased out).
340 */
b159add3
BV
341 SR_HWOPT_MODEL,
342
9c5332d2
UH
343 /**
344 * Specification on how to connect to a device. In combination
777bbd5b 345 * with SR_HWOPT_SERIALCOMM, this is a serial port in the form
9c5332d2 346 * which makes sense to the operating system (e.g., /dev/ttyS0).
777bbd5b 347 * Otherwise this specifies a USB device, either in the form of
9c5332d2
UH
348 * [bus].[address] (decimal, e.g. 1.65) or [vendorid].[productid]
349 * (hexadecimal, e.g. 1d6b.0001).
350 */
b159add3
BV
351 SR_HWOPT_CONN,
352
9c5332d2
UH
353 /**
354 * Serial communication specification, in the form:
3c0839d5 355 * [baudrate]/[databits][parity][stopbits], e.g. 9600/8n1
9c5332d2 356 *
777bbd5b 357 * This is always an optional parameter, since a driver typically
9c5332d2
UH
358 * knows the speed at which the device wants to communicate.
359 */
b159add3
BV
360 SR_HWOPT_SERIALCOMM,
361};
362
3c0839d5 363/** Hardware device capabilities. */
a1bb33af 364enum {
3c0839d5
UH
365 /** Used to terminate lists. Must be 0! */
366 SR_HWCAP_DUMMY = 0,
e88dadd7
UH
367
368 /*--- Device classes ------------------------------------------------*/
369
370 /** The device can act as logic analyzer. */
5a2326a7 371 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 372
ee7489d2
BV
373 /** The device can act as an oscilloscope. */
374 SR_HWCAP_OSCILLOSCOPE,
e88dadd7 375
ca3d84cc
BV
376 /** The device can act as a multimeter. */
377 SR_HWCAP_MULTIMETER,
a141db8c 378
ca3d84cc 379 /** The device is a demo device. */
bb7ef793 380 SR_HWCAP_DEMO_DEV,
a141db8c 381
ca3d84cc 382
ca3d84cc 383 /*--- Device configuration ------------------------------------------*/
e88dadd7
UH
384
385 /** The device supports setting/changing its samplerate. */
386 SR_HWCAP_SAMPLERATE,
387
e88dadd7
UH
388 /** The device supports setting a pre/post-trigger capture ratio. */
389 SR_HWCAP_CAPTURE_RATIO,
390
391 /* TODO? */
392 /** The device supports setting a pattern (pattern generator mode). */
393 SR_HWCAP_PATTERN_MODE,
394
3a4d09c0
GM
395 /** The device supports Run Length Encoding. */
396 SR_HWCAP_RLE,
397
ee7489d2 398 /** The device supports setting trigger slope. */
0fe11789
BV
399 SR_HWCAP_TRIGGER_SLOPE,
400
401 /** Trigger source. */
402 SR_HWCAP_TRIGGER_SOURCE,
403
3c0839d5 404 /** Horizontal trigger position. */
0fe11789
BV
405 SR_HWCAP_HORIZ_TRIGGERPOS,
406
407 /** Buffer size. */
408 SR_HWCAP_BUFFERSIZE,
409
410 /** Time base. */
411 SR_HWCAP_TIMEBASE,
ee7489d2 412
3c4976c9
BV
413 /** Filter. */
414 SR_HWCAP_FILTER,
415
bd8db307
BV
416 /** Volts/div. */
417 SR_HWCAP_VDIV,
418
e1c8b2ab
BV
419 /** Coupling. */
420 SR_HWCAP_COUPLING,
421
ca3d84cc 422
e88dadd7
UH
423 /*--- Special stuff -------------------------------------------------*/
424
3c0839d5 425 /** Session filename. */
40dda2c3
BV
426 SR_HWCAP_SESSIONFILE,
427
e88dadd7
UH
428 /* TODO: Better description. */
429 /** The device supports specifying a capturefile to inject. */
430 SR_HWCAP_CAPTUREFILE,
925dbf9f 431
e88dadd7
UH
432 /* TODO: Better description. */
433 /** The device supports specifying the capturefile unit size. */
434 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 435
e88dadd7
UH
436 /* TODO: Better description. */
437 /** The device supports setting the number of probes. */
438 SR_HWCAP_CAPTURE_NUM_PROBES,
439
ca3d84cc 440
e88dadd7
UH
441 /*--- Acquisition modes ---------------------------------------------*/
442
443 /**
444 * The device supports setting a sample time limit, i.e. how long the
445 * sample acquisition should run (in ms).
446 */
447 SR_HWCAP_LIMIT_MSEC,
448
449 /**
450 * The device supports setting a sample number limit, i.e. how many
451 * samples should be acquired.
452 */
453 SR_HWCAP_LIMIT_SAMPLES,
454
6ea7669c
BV
455 /**
456 * The device supports setting a frame limit, i.e. how many
457 * frames should be acquired.
458 */
459 SR_HWCAP_LIMIT_FRAMES,
460
e88dadd7
UH
461 /**
462 * The device supports continuous sampling, i.e. neither a time limit
463 * nor a sample number limit has to be supplied, it will just acquire
464 * samples continuously, until explicitly stopped by a certain command.
465 */
5a2326a7 466 SR_HWCAP_CONTINUOUS,
e88dadd7 467
a1bb33af
UH
468};
469
a65de030 470struct sr_hwcap_option {
ffedd0bf 471 int hwcap;
a1bb33af
UH
472 int type;
473 char *description;
474 char *shortname;
475};
476
d68e2d1a 477struct sr_dev_inst {
9e41fdba 478 struct sr_dev_driver *driver;
a1bb33af
UH
479 int index;
480 int status;
1d9a8a5f 481 int inst_type;
a1bb33af
UH
482 char *vendor;
483 char *model;
484 char *version;
47211d65 485 GSList *probes;
8d672550 486 void *priv;
a1bb33af
UH
487};
488
3c0839d5 489/** Types of device instances (sr_dev_inst). */
a1bb33af 490enum {
4101f961
UH
491 /** Device instance type for USB devices. */
492 SR_INST_USB,
493 /** Device instance type for serial port devices. */
494 SR_INST_SERIAL,
a1bb33af
UH
495};
496
3c0839d5 497/** Device instance status. */
a1bb33af 498enum {
3c0839d5 499 /** The device instance was not found. */
5a2326a7 500 SR_ST_NOT_FOUND,
3c0839d5 501 /** The device instance was found, but is still booting. */
5a2326a7 502 SR_ST_INITIALIZING,
3c0839d5 503 /** The device instance is live, but not in use. */
5a2326a7 504 SR_ST_INACTIVE,
3c0839d5 505 /** The device instance is actively in use in a session. */
5a2326a7 506 SR_ST_ACTIVE,
a1bb33af
UH
507};
508
509/*
510 * TODO: This sucks, you just kinda have to "know" the returned type.
511 * TODO: Need a DI to return the number of trigger stages supported.
512 */
513
3c0839d5 514/** Device info IDs. */
a1bb33af 515enum {
3c0839d5 516 /** A list of options supported by the driver. */
be34a1c7 517 SR_DI_HWOPTS,
3c0839d5 518 /** A list of capabilities supported by the device. */
be34a1c7 519 SR_DI_HWCAPS,
3c0839d5 520 /** The number of probes connected to this device. */
5a2326a7 521 SR_DI_NUM_PROBES,
3c0839d5 522 /** The probe names on this device. */
464d12c7 523 SR_DI_PROBE_NAMES,
3c0839d5 524 /** Samplerates supported by this device (struct sr_samplerates). */
5a2326a7 525 SR_DI_SAMPLERATES,
3c0839d5 526 /** Types of logic trigger supported, out of "01crf" (char *). */
5a2326a7 527 SR_DI_TRIGGER_TYPES,
3c0839d5 528 /** The currently set samplerate in Hz (uint64_t). */
5a2326a7 529 SR_DI_CUR_SAMPLERATE,
3c0839d5 530 /** Supported patterns (in pattern generator mode). */
eb0a3731 531 SR_DI_PATTERNS,
3c0839d5 532 /** Supported buffer sizes. */
0fe11789 533 SR_DI_BUFFERSIZES,
3c0839d5 534 /** Supported time bases. */
0fe11789 535 SR_DI_TIMEBASES,
3c0839d5 536 /** Supported trigger sources. */
0fe11789 537 SR_DI_TRIGGER_SOURCES,
3c0839d5 538 /** Supported filter targets. */
3c4976c9 539 SR_DI_FILTERS,
3c0839d5 540 /** Valid volts/div values. */
bd8db307 541 SR_DI_VDIVS,
3c0839d5 542 /** Coupling options. */
e1c8b2ab 543 SR_DI_COUPLING,
a1bb33af
UH
544};
545
1b452b85
UH
546/*
547 * A device supports either a range of samplerates with steps of a given
548 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
549 * step or list, but not both.
550 */
60679b18 551struct sr_samplerates {
a1bb33af
UH
552 uint64_t low;
553 uint64_t high;
554 uint64_t step;
a533743d 555 const uint64_t *list;
a1bb33af
UH
556};
557
c09f0b57
UH
558struct sr_dev_driver {
559 /* Driver-specific */
a1bb33af 560 char *name;
9f8274a5 561 char *longname;
a1bb33af 562 int api_version;
40dda2c3 563 int (*init) (void);
57ab7d9f 564 int (*cleanup) (void);
80bf0426 565 GSList *(*scan) (GSList *options);
811deee4
BV
566 GSList *(*dev_list) (void);
567 int (*dev_clear) (void);
a1bb33af 568
1b452b85 569 /* Device-specific */
25a0f108
BV
570 int (*dev_open) (struct sr_dev_inst *sdi);
571 int (*dev_close) (struct sr_dev_inst *sdi);
9e90dcba 572 int (*info_get) (int info_id, const void **data,
f92f4eab 573 const struct sr_dev_inst *sdi);
6f4b1868
BV
574 int (*dev_config_set) (const struct sr_dev_inst *sdi, int hwcap,
575 const void *value);
3ffb6964
BV
576 int (*dev_acquisition_start) (const struct sr_dev_inst *sdi,
577 void *cb_data);
578 int (*dev_acquisition_stop) (const struct sr_dev_inst *sdi,
579 void *cb_data);
dd34b8d3
BV
580
581 /* Dynamic */
c259726a 582 void *priv;
a1bb33af
UH
583};
584
2872d21e 585struct sr_session {
3c0839d5 586 /** List of struct sr_dev pointers. */
bb7ef793 587 GSList *devs;
3c0839d5 588 /** List of sr_receive_data_callback_t items. */
a1bb33af
UH
589 GSList *datafeed_callbacks;
590 GTimeVal starttime;
b7e94111
LPC
591
592 unsigned int num_sources;
593
3c0839d5
UH
594 /*
595 * Both "sources" and "pollfds" are of the same size and contain pairs
596 * of descriptor and callback function. We can not embed the GPollFD
597 * into the source struct since we want to be able to pass the array
598 * of all poll descriptors to g_poll().
b7e94111
LPC
599 */
600 struct source *sources;
601 GPollFD *pollfds;
602 int source_timeout;
a1bb33af
UH
603};
604
45c59c8b
BV
605#include "proto.h"
606#include "version.h"
c2bd92ec 607
a00b530c
UH
608#ifdef __cplusplus
609}
610#endif
611
a1bb33af 612#endif