]> sigrok.org Git - libsigrok.git/blame - include/libsigrok/libsigrok.h
dev_acquisition_{start,stop}(): Drop duplicate 'cb_data' parameter.
[libsigrok.git] / include / libsigrok / libsigrok.h
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
13d8e03c 4 * Copyright (C) 2013 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
a5827886
UH
20#ifndef LIBSIGROK_LIBSIGROK_H
21#define LIBSIGROK_LIBSIGROK_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
393fb9cb
UH
33/**
34 * @file
35 *
36 * The public libsigrok header file to be used by frontends.
1f345a21
UH
37 *
38 * This is the only file that libsigrok users (frontends) are supposed to
ca0938c5 39 * use and \#include. There are other header files which get installed with
1f345a21
UH
40 * libsigrok, but those are not meant to be used directly by frontends.
41 *
42 * The correct way to get/use the libsigrok API functions is:
43 *
47117241
UH
44 * @code{.c}
45 * #include <libsigrok/libsigrok.h>
46 * @endcode
393fb9cb
UH
47 */
48
e31b636d 49/*
e31b636d
UH
50 * All possible return codes of libsigrok functions must be listed here.
51 * Functions should never return hardcoded numbers as status, but rather
3c0839d5 52 * use these enum values. All error codes are negative numbers.
e31b636d
UH
53 *
54 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
55 * libsigrok functions returns a "malloc error" it must be exactly the same
56 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
57 * There must be no functions which indicate two different errors via the
58 * same return code.
59 *
60 * Also, for compatibility reasons, no defined return codes are ever removed
3c0839d5 61 * or reused for different errors later. You can only add new entries and
e31b636d
UH
62 * return codes, but never remove or redefine existing ones.
63 */
3c0839d5
UH
64
65/** Status/error codes returned by libsigrok functions. */
76857945 66enum sr_error_code {
a68bf88e
UH
67 SR_OK = 0, /**< No error. */
68 SR_ERR = -1, /**< Generic/unspecified error. */
69 SR_ERR_MALLOC = -2, /**< Malloc/calloc/realloc error. */
70 SR_ERR_ARG = -3, /**< Function argument error. */
71 SR_ERR_BUG = -4, /**< Errors hinting at internal bugs. */
72 SR_ERR_SAMPLERATE = -5, /**< Incorrect samplerate. */
73 SR_ERR_NA = -6, /**< Not applicable. */
74 SR_ERR_DEV_CLOSED = -7, /**< Device is closed, but must be open. */
75 SR_ERR_TIMEOUT = -8, /**< A timeout occurred. */
76 SR_ERR_CHANNEL_GROUP = -9, /**< A channel group must be specified. */
b7f44605 77 SR_ERR_DATA =-10, /**< Data is invalid. */
3c558259 78 SR_ERR_IO =-11, /**< Input/output error. */
409a811b 79
ca7dbb56 80 /* Update sr_strerror()/sr_strerror_name() (error.c) upon changes! */
3c0839d5 81};
a1bb33af 82
3f239f08 83#define SR_MAX_CHANNELNAME_LEN 32
2a3f9541 84
a1bb33af 85/* Handy little macros */
c9140419 86#define SR_HZ(n) (n)
0b4b41ee
UH
87#define SR_KHZ(n) ((n) * (uint64_t)(1000ULL))
88#define SR_MHZ(n) ((n) * (uint64_t)(1000000ULL))
89#define SR_GHZ(n) ((n) * (uint64_t)(1000000000ULL))
a1bb33af 90
0b4b41ee 91#define SR_HZ_TO_NS(n) ((uint64_t)(1000000000ULL) / (n))
3677f3ec 92
3c0839d5 93/** libsigrok loglevels. */
e958f921 94enum sr_loglevel {
3c0839d5
UH
95 SR_LOG_NONE = 0, /**< Output no messages at all. */
96 SR_LOG_ERR = 1, /**< Output error messages. */
97 SR_LOG_WARN = 2, /**< Output warnings. */
98 SR_LOG_INFO = 3, /**< Output informational messages. */
99 SR_LOG_DBG = 4, /**< Output debug messages. */
100 SR_LOG_SPEW = 5, /**< Output very noisy debug messages. */
101};
1352eedd 102
1a081ca6
UH
103/*
104 * Use SR_API to mark public API symbols, and SR_PRIV for private symbols.
105 *
106 * Variables and functions marked 'static' are private already and don't
107 * need SR_PRIV. However, functions which are not static (because they need
108 * to be used in other libsigrok-internal files) but are also not meant to
109 * be part of the public libsigrok API, must use SR_PRIV.
110 *
111 * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
112 *
69e70c23
UH
113 * This feature is not available on MinGW/Windows, as it is a feature of
114 * ELF files and MinGW/Windows uses PE files.
115 *
1a081ca6
UH
116 * Details: http://gcc.gnu.org/wiki/Visibility
117 */
118
119/* Marks public libsigrok API symbols. */
69e70c23 120#ifndef _WIN32
1a081ca6 121#define SR_API __attribute__((visibility("default")))
69e70c23
UH
122#else
123#define SR_API
124#endif
1a081ca6
UH
125
126/* Marks private, non-public libsigrok symbols (not part of the API). */
69e70c23 127#ifndef _WIN32
1a081ca6 128#define SR_PRIV __attribute__((visibility("hidden")))
69e70c23
UH
129#else
130#define SR_PRIV
131#endif
1a081ca6 132
04cb9157 133/** Type definition for callback function for data reception. */
144f6660 134typedef int (*sr_receive_data_callback)(int fd, int revents, void *cb_data);
882e2075 135
08a9260b 136/** Data types used by sr_config_info(). */
e958f921 137enum sr_datatype {
24d04d1e 138 SR_T_UINT64 = 10000,
ace218f9 139 SR_T_STRING,
4d436e71 140 SR_T_BOOL,
0fe11789 141 SR_T_FLOAT,
c1e48618 142 SR_T_RATIONAL_PERIOD,
bd8db307 143 SR_T_RATIONAL_VOLT,
45edd0b2 144 SR_T_KEYVALUE,
8417ebad 145 SR_T_UINT64_RANGE,
db11d7d2 146 SR_T_DOUBLE_RANGE,
bf90d4c6 147 SR_T_INT32,
75772c72 148 SR_T_MQ,
ca7dbb56
UH
149
150 /* Update sr_variant_type_get() (hwdriver.c) upon changes! */
0fe11789
BV
151};
152
3c0839d5 153/** Value for sr_datafeed_packet.type. */
e958f921 154enum sr_packettype {
98582bf5
BV
155 /** Payload is sr_datafeed_header. */
156 SR_DF_HEADER = 10000,
157 /** End of stream (no further data). */
158 SR_DF_END,
159 /** Payload is struct sr_datafeed_meta */
160 SR_DF_META,
161 /** The trigger matched at this point in the data feed. No payload. */
162 SR_DF_TRIGGER,
163 /** Payload is struct sr_datafeed_logic. */
164 SR_DF_LOGIC,
dd13d47a 165 /** DEPRECATED! Use SR_DF_ANALOG instead. */
5faebab2 166 SR_DF_ANALOG_OLD,
98582bf5
BV
167 /** Beginning of frame. No payload. */
168 SR_DF_FRAME_BEGIN,
169 /** End of frame. No payload. */
170 SR_DF_FRAME_END,
edb691fc
UH
171 /** Payload is struct sr_datafeed_analog. */
172 SR_DF_ANALOG,
ca7dbb56
UH
173
174 /* Update datafeed_dump() (session.c) upon changes! */
a1bb33af
UH
175};
176
edb691fc 177/** Measured quantity, sr_analog_meaning.mq. */
e958f921 178enum sr_mq {
24d04d1e 179 SR_MQ_VOLTAGE = 10000,
9956f285
UH
180 SR_MQ_CURRENT,
181 SR_MQ_RESISTANCE,
182 SR_MQ_CAPACITANCE,
183 SR_MQ_TEMPERATURE,
184 SR_MQ_FREQUENCY,
98582bf5
BV
185 /** Duty cycle, e.g. on/off ratio. */
186 SR_MQ_DUTY_CYCLE,
187 /** Continuity test. */
188 SR_MQ_CONTINUITY,
aa839a5c 189 SR_MQ_PULSE_WIDTH,
96b3b3d5 190 SR_MQ_CONDUCTANCE,
98582bf5
BV
191 /** Electrical power, usually in W, or dBm. */
192 SR_MQ_POWER,
193 /** Gain (a transistor's gain, or hFE, for example). */
194 SR_MQ_GAIN,
fc19c288
BV
195 /** Logarithmic representation of sound pressure relative to a
196 * reference value. */
197 SR_MQ_SOUND_PRESSURE_LEVEL,
98582bf5
BV
198 /** Carbon monoxide level */
199 SR_MQ_CARBON_MONOXIDE,
200 /** Humidity */
201 SR_MQ_RELATIVE_HUMIDITY,
202 /** Time */
203 SR_MQ_TIME,
31801362
BV
204 /** Wind speed */
205 SR_MQ_WIND_SPEED,
206 /** Pressure */
207 SR_MQ_PRESSURE,
87d81245
JH
208 /** Parallel inductance (LCR meter model). */
209 SR_MQ_PARALLEL_INDUCTANCE,
210 /** Parallel capacitance (LCR meter model). */
211 SR_MQ_PARALLEL_CAPACITANCE,
212 /** Parallel resistance (LCR meter model). */
213 SR_MQ_PARALLEL_RESISTANCE,
c7c8994c
JH
214 /** Series inductance (LCR meter model). */
215 SR_MQ_SERIES_INDUCTANCE,
216 /** Series capacitance (LCR meter model). */
217 SR_MQ_SERIES_CAPACITANCE,
218 /** Series resistance (LCR meter model). */
219 SR_MQ_SERIES_RESISTANCE,
87d81245
JH
220 /** Dissipation factor. */
221 SR_MQ_DISSIPATION_FACTOR,
222 /** Quality factor. */
223 SR_MQ_QUALITY_FACTOR,
224 /** Phase angle. */
225 SR_MQ_PHASE_ANGLE,
23601f2c
JH
226 /** Difference from reference value. */
227 SR_MQ_DIFFERENCE,
b9c10ae1
ML
228 /** Count. */
229 SR_MQ_COUNT,
ded3e508
UH
230 /** Power factor. */
231 SR_MQ_POWER_FACTOR,
232 /** Apparent power */
233 SR_MQ_APPARENT_POWER,
28af4c71
UH
234 /** Mass */
235 SR_MQ_MASS,
ca7dbb56
UH
236
237 /* Update sr_key_info_mq[] (hwdriver.c) upon changes! */
9956f285
UH
238};
239
edb691fc 240/** Unit of measured quantity, sr_analog_meaning.unit. */
e958f921 241enum sr_unit {
98582bf5
BV
242 /** Volt */
243 SR_UNIT_VOLT = 10000,
244 /** Ampere (current). */
245 SR_UNIT_AMPERE,
246 /** Ohm (resistance). */
247 SR_UNIT_OHM,
248 /** Farad (capacity). */
249 SR_UNIT_FARAD,
250 /** Kelvin (temperature). */
251 SR_UNIT_KELVIN,
252 /** Degrees Celsius (temperature). */
253 SR_UNIT_CELSIUS,
254 /** Degrees Fahrenheit (temperature). */
255 SR_UNIT_FAHRENHEIT,
256 /** Hertz (frequency, 1/s, [Hz]). */
257 SR_UNIT_HERTZ,
258 /** Percent value. */
259 SR_UNIT_PERCENTAGE,
260 /** Boolean value. */
261 SR_UNIT_BOOLEAN,
262 /** Time in seconds. */
263 SR_UNIT_SECOND,
264 /** Unit of conductance, the inverse of resistance. */
265 SR_UNIT_SIEMENS,
3c0839d5
UH
266 /**
267 * An absolute measurement of power, in decibels, referenced to
268 * 1 milliwatt (dBu).
269 */
b82a17d3 270 SR_UNIT_DECIBEL_MW,
6b869234
BV
271 /** Voltage in decibel, referenced to 1 volt (dBV). */
272 SR_UNIT_DECIBEL_VOLT,
3c0839d5
UH
273 /**
274 * Measurements that intrinsically do not have units attached, such
6b869234 275 * as ratios, gains, etc. Specifically, a transistor's gain (hFE) is
3c0839d5
UH
276 * a unitless quantity, for example.
277 */
b82a17d3 278 SR_UNIT_UNITLESS,
d0a92abd 279 /** Sound pressure level, in decibels, relative to 20 micropascals. */
fc19c288 280 SR_UNIT_DECIBEL_SPL,
801c7800
AG
281 /**
282 * Normalized (0 to 1) concentration of a substance or compound with 0
283 * representing a concentration of 0%, and 1 being 100%. This is
284 * represented as the fraction of number of particles of the substance.
285 */
4f3bd685 286 SR_UNIT_CONCENTRATION,
98582bf5
BV
287 /** Revolutions per minute. */
288 SR_UNIT_REVOLUTIONS_PER_MINUTE,
289 /** Apparent power [VA]. */
290 SR_UNIT_VOLT_AMPERE,
291 /** Real power [W]. */
292 SR_UNIT_WATT,
293 /** Consumption [Wh]. */
294 SR_UNIT_WATT_HOUR,
31801362
BV
295 /** Wind speed in meters per second. */
296 SR_UNIT_METER_SECOND,
297 /** Pressure in hectopascal */
298 SR_UNIT_HECTOPASCAL,
f3f19d11 299 /** Relative humidity assuming air temperature of 293 Kelvin (%rF). */
31801362 300 SR_UNIT_HUMIDITY_293K,
01789adc
JH
301 /** Plane angle in 1/360th of a full circle. */
302 SR_UNIT_DEGREE,
303 /** Henry (inductance). */
304 SR_UNIT_HENRY,
28af4c71
UH
305 /** Mass in gram [g]. */
306 SR_UNIT_GRAM,
307 /** Mass in carat [ct]. */
308 SR_UNIT_CARAT,
309 /** Mass in ounce [oz]. */
310 SR_UNIT_OUNCE,
311 /** Mass in troy ounce [oz t]. */
312 SR_UNIT_TROY_OUNCE,
313 /** Mass in pound [lb]. */
314 SR_UNIT_POUND,
315 /** Mass in pennyweight [dwt]. */
316 SR_UNIT_PENNYWEIGHT,
317 /** Mass in grain [gr]. */
318 SR_UNIT_GRAIN,
319 /** Mass in tael (variants: Hong Kong, Singapore/Malaysia, Taiwan) */
320 SR_UNIT_TAEL,
321 /** Mass in momme. */
322 SR_UNIT_MOMME,
323 /** Mass in tola. */
324 SR_UNIT_TOLA,
325 /** Pieces (number of items). */
326 SR_UNIT_PIECE,
ca7dbb56
UH
327
328 /*
329 * Update unit_strings[] (analog.c) and fancyprint() (output/analog.c)
330 * upon changes!
331 */
aff5a729
BV
332};
333
edb691fc 334/** Values for sr_analog_meaning.mqflags. */
e958f921 335enum sr_mqflag {
3c0839d5 336 /** Voltage measurement is alternating current (AC). */
02e864d0 337 SR_MQFLAG_AC = 0x01,
3c0839d5 338 /** Voltage measurement is direct current (DC). */
02e864d0
BV
339 SR_MQFLAG_DC = 0x02,
340 /** This is a true RMS measurement. */
341 SR_MQFLAG_RMS = 0x04,
342 /** Value is voltage drop across a diode, or NAN. */
343 SR_MQFLAG_DIODE = 0x08,
a02d77bc 344 /** Device is in "hold" mode (repeating the last measurement). */
02e864d0 345 SR_MQFLAG_HOLD = 0x10,
3c0839d5 346 /** Device is in "max" mode, only updating upon a new max value. */
02e864d0 347 SR_MQFLAG_MAX = 0x20,
3c0839d5 348 /** Device is in "min" mode, only updating upon a new min value. */
02e864d0
BV
349 SR_MQFLAG_MIN = 0x40,
350 /** Device is in autoranging mode. */
351 SR_MQFLAG_AUTORANGE = 0x80,
352 /** Device is in relative mode. */
353 SR_MQFLAG_RELATIVE = 0x100,
fc19c288 354 /** Sound pressure level is A-weighted in the frequency domain,
2244356d 355 * according to IEC 61672:2003. */
fc19c288
BV
356 SR_MQFLAG_SPL_FREQ_WEIGHT_A = 0x200,
357 /** Sound pressure level is C-weighted in the frequency domain,
2244356d 358 * according to IEC 61672:2003. */
fc19c288
BV
359 SR_MQFLAG_SPL_FREQ_WEIGHT_C = 0x400,
360 /** Sound pressure level is Z-weighted (i.e. not at all) in the
2244356d 361 * frequency domain, according to IEC 61672:2003. */
fc19c288
BV
362 SR_MQFLAG_SPL_FREQ_WEIGHT_Z = 0x800,
363 /** Sound pressure level is not weighted in the frequency domain,
364 * albeit without standards-defined low and high frequency limits. */
365 SR_MQFLAG_SPL_FREQ_WEIGHT_FLAT = 0x1000,
366 /** Sound pressure level measurement is S-weighted (1s) in the
367 * time domain. */
368 SR_MQFLAG_SPL_TIME_WEIGHT_S = 0x2000,
369 /** Sound pressure level measurement is F-weighted (125ms) in the
370 * time domain. */
371 SR_MQFLAG_SPL_TIME_WEIGHT_F = 0x4000,
372 /** Sound pressure level is time-averaged (LAT), also known as
373 * Equivalent Continuous A-weighted Sound Level (LEQ). */
374 SR_MQFLAG_SPL_LAT = 0x8000,
375 /** Sound pressure level represented as a percentage of measurements
376 * that were over a preset alarm level. */
377 SR_MQFLAG_SPL_PCT_OVER_ALARM = 0x10000,
367983a7
MH
378 /** Time is duration (as opposed to epoch, ...). */
379 SR_MQFLAG_DURATION = 0x20000,
f5027ca4
AJ
380 /** Device is in "avg" mode, averaging upon each new value. */
381 SR_MQFLAG_AVG = 0x40000,
23601f2c
JH
382 /** Reference value shown. */
383 SR_MQFLAG_REFERENCE = 0x80000,
28af4c71
UH
384 /** Unstable value (hasn't settled yet). */
385 SR_MQFLAG_UNSTABLE = 0x100000,
6d5cd3bd
AG
386 /** Measurement is four wire (e.g. Kelvin connection). */
387 SR_MQFLAG_FOUR_WIRE = 0x200000,
ca7dbb56
UH
388
389 /*
390 * Update mq_strings[] (analog.c) and fancyprint() (output/analog.c)
391 * upon changes!
392 */
02e864d0
BV
393};
394
7b5e6d29
BV
395enum sr_trigger_matches {
396 SR_TRIGGER_ZERO = 1,
397 SR_TRIGGER_ONE,
398 SR_TRIGGER_RISING,
399 SR_TRIGGER_FALLING,
400 SR_TRIGGER_EDGE,
401 SR_TRIGGER_OVER,
402 SR_TRIGGER_UNDER,
403};
404
405/** The representation of a trigger, consisting of one or more stages
406 * containing one or more matches on a channel.
407 */
408struct sr_trigger {
409 /** A name for this trigger. This may be NULL if none is needed. */
410 char *name;
411 /** List of pointers to struct sr_trigger_stage. */
412 GSList *stages;
413};
414
415/** A trigger stage. */
416struct sr_trigger_stage {
417 /** Starts at 0. */
418 int stage;
419 /** List of pointers to struct sr_trigger_match. */
420 GSList *matches;
421};
422
423/** A channel to match and what to match it on. */
424struct sr_trigger_match {
425 /** The channel to trigger on. */
426 struct sr_channel *channel;
427 /** The trigger match to use.
428 * For logic channels, only the following matches may be used:
429 * SR_TRIGGER_ZERO
430 * SR_TRIGGER_ONE
431 * SR_TRIGGER_RISING
432 * SR_TRIGGER_FALLING
433 * SR_TRIGGER_EDGE
434 *
435 * For analog channels, only these matches may be used:
436 * SR_TRIGGER_RISING
437 * SR_TRIGGER_FALLING
438 * SR_TRIGGER_OVER
439 * SR_TRIGGER_UNDER
440 *
441 */
442 int match;
443 /** If the trigger match is one of SR_TRIGGER_OVER or SR_TRIGGER_UNDER,
444 * this contains the value to compare against. */
445 float value;
446};
447
df823ac4
UH
448/**
449 * @struct sr_context
450 * Opaque structure representing a libsigrok context.
451 *
452 * None of the fields of this structure are meant to be accessed directly.
453 *
454 * @see sr_init(), sr_exit().
455 */
b8072700
PS
456struct sr_context;
457
0812c40e
ML
458/**
459 * @struct sr_session
460 * Opaque structure representing a libsigrok session.
461 *
462 * None of the fields of this structure are meant to be accessed directly.
463 *
464 * @see sr_session_new(), sr_session_destroy().
465 */
466struct sr_session;
467
d2e0f585
BV
468struct sr_rational {
469 /** Numerator of the rational number. */
18ea6b76 470 int64_t p;
d2e0f585
BV
471 /** Denominator of the rational number. */
472 uint64_t q;
473};
474
04cb9157 475/** Packet in a sigrok data feed. */
b9c735a2 476struct sr_datafeed_packet {
a1bb33af 477 uint16_t type;
bf53457d 478 const void *payload;
a1bb33af
UH
479};
480
04cb9157 481/** Header of a sigrok data feed. */
b9c735a2 482struct sr_datafeed_header {
a1bb33af
UH
483 int feed_version;
484 struct timeval starttime;
ee7489d2
BV
485};
486
04cb9157 487/** Datafeed payload for type SR_DF_META. */
9a5693a5
BV
488struct sr_datafeed_meta {
489 GSList *config;
490};
491
04cb9157 492/** Logic datafeed payload for type SR_DF_LOGIC. */
38ab3ee7
BV
493struct sr_datafeed_logic {
494 uint64_t length;
495 uint16_t unitsize;
9c939c51 496 void *data;
38ab3ee7
BV
497};
498
5faebab2
UH
499/** Analog datafeed payload for type SR_DF_ANALOG_OLD. */
500struct sr_datafeed_analog_old {
ba7dd8bb
UH
501 /** The channels for which data is included in this packet. */
502 GSList *channels;
98582bf5
BV
503 /** Number of samples in data */
504 int num_samples;
04cb9157
MH
505 /** Measured quantity (voltage, current, temperature, and so on).
506 * Use SR_MQ_VOLTAGE, ... */
02e864d0 507 int mq;
04cb9157 508 /** Unit in which the MQ is measured. Use SR_UNIT_VOLT, ... */
02e864d0 509 int unit;
04cb9157 510 /** Bitmap with extra information about the MQ. Use SR_MQFLAG_AC, ... */
02e864d0 511 uint64_t mqflags;
aeba33ba 512 /** The analog value(s). The data is interleaved according to
ba7dd8bb 513 * the channels list. */
ee7489d2
BV
514 float *data;
515};
516
edb691fc
UH
517/** Analog datafeed payload for type SR_DF_ANALOG. */
518struct sr_datafeed_analog {
d2e0f585
BV
519 void *data;
520 uint32_t num_samples;
521 struct sr_analog_encoding *encoding;
522 struct sr_analog_meaning *meaning;
523 struct sr_analog_spec *spec;
524};
525
526struct sr_analog_encoding {
527 uint8_t unitsize;
528 gboolean is_signed;
529 gboolean is_float;
530 gboolean is_bigendian;
531 uint8_t digits;
532 gboolean is_digits_decimal;
533 struct sr_rational scale;
534 struct sr_rational offset;
535};
536
537struct sr_analog_meaning {
538 enum sr_mq mq;
539 enum sr_unit unit;
540 enum sr_mqflag mqflags;
541 GSList *channels;
542};
543
544struct sr_analog_spec {
545 uint8_t spec_digits;
546};
547
a755b0e1
BV
548/** Generic option struct used by various subsystems. */
549struct sr_option {
550 /* Short name suitable for commandline usage, [a-z0-9-]. */
2c240774 551 const char *id;
a755b0e1 552 /* Short name suitable for GUI usage, can contain UTF-8. */
2c240774 553 const char *name;
a755b0e1 554 /* Description of the option, in a sentence. */
2c240774 555 const char *desc;
a755b0e1
BV
556 /* Default value for this option. */
557 GVariant *def;
558 /* List of possible values, if this is an option with few values. */
559 GSList *values;
560};
561
bee24666
DE
562/** Resource type.
563 * @since 0.4.0
564 */
565enum sr_resource_type {
566 SR_RESOURCE_FIRMWARE = 1,
567};
568
569/** Resource descriptor.
570 * @since 0.4.0
571 */
572struct sr_resource {
573 /** Size of resource in bytes; set by resource open callback. */
574 uint64_t size;
575 /** File handle or equivalent; set by resource open callback. */
576 void *handle;
577 /** Resource type (SR_RESOURCE_FIRMWARE, ...) */
578 int type;
579};
580
3cd4b381
SA
581/** Output module flags. */
582enum sr_output_flag {
583 /** If set, this output module writes the output itself. */
584 SR_OUTPUT_INTERNAL_IO_HANDLING = 0x01,
585};
586
d514d35d
BV
587struct sr_input;
588struct sr_input_module;
a755b0e1
BV
589struct sr_output;
590struct sr_output_module;
790320f6
UH
591struct sr_transform;
592struct sr_transform_module;
a1bb33af 593
fca75cbb 594/** Constants for channel type. */
e958f921 595enum sr_channeltype {
fca75cbb
UH
596 /** Channel type is logic channel. */
597 SR_CHANNEL_LOGIC = 10000,
598 /** Channel type is analog channel. */
599 SR_CHANNEL_ANALOG,
921e753f
DR
600};
601
91aea754
UH
602/** Information on single channel. */
603struct sr_channel {
837b0866
ML
604 /** The device this channel is attached to. */
605 struct sr_dev_inst *sdi;
7b5e6d29
BV
606 /** The index of this channel, starting at 0. Logic channels will
607 * be encoded according to this index in SR_DF_LOGIC packets. */
98582bf5 608 int index;
3f239f08 609 /** Channel type (SR_CHANNEL_LOGIC, ...) */
98582bf5 610 int type;
91aea754 611 /** Is this channel enabled? */
98582bf5 612 gboolean enabled;
91aea754 613 /** Name of channel. */
98582bf5 614 char *name;
379d2609
BV
615 /** Private data for driver use. */
616 void *priv;
a1bb33af
UH
617};
618
a68bf88e 619/** Structure for groups of channels that have common properties. */
660e398f
UH
620struct sr_channel_group {
621 /** Name of the channel group. */
5150ef33 622 char *name;
91aea754 623 /** List of sr_channel structs of the channels belonging to this group. */
a68bf88e 624 GSList *channels;
a0dc461d 625 /** Private data for driver use. */
5daed4bc 626 void *priv;
8f996b89
ML
627};
628
04cb9157 629/** Used for setting or getting value of a config item. */
9a5693a5 630struct sr_config {
98582bf5 631 /** Config key like SR_CONF_CONN, etc. */
584560f1 632 uint32_t key;
98582bf5
BV
633 /** Key-specific data. */
634 GVariant *data;
b159add3
BV
635};
636
2fb60e23
BV
637enum sr_keytype {
638 SR_KEY_CONFIG,
0176c92f
BV
639 SR_KEY_MQ,
640 SR_KEY_MQFLAGS,
2fb60e23
BV
641};
642
643/** Information about a key. */
644struct sr_key_info {
645 /** Config key like SR_CONF_CONN, MQ value like SR_MQ_VOLTAGE, etc. */
584560f1 646 uint32_t key;
2fb60e23 647 /** Data type like SR_T_STRING, etc if applicable. */
98582bf5 648 int datatype;
2fb60e23 649 /** Short, lowercase ID string, e.g. "serialcomm", "voltage". */
2c240774 650 const char *id;
2fb60e23 651 /** Full capitalized name, e.g. "Serial communication". */
2c240774 652 const char *name;
98582bf5 653 /** Verbose description (unused currently). */
2c240774 654 const char *description;
9a5693a5
BV
655};
656
c57aa1ac
ML
657/** Configuration capabilities. */
658enum sr_configcap {
659 /** Value can be read. */
660 SR_CONF_GET = (1 << 31),
661 /** Value can be written. */
662 SR_CONF_SET = (1 << 30),
663 /** Possible values can be enumerated. */
664 SR_CONF_LIST = (1 << 29),
665};
666
54ab1dcd 667/** Configuration keys */
e958f921 668enum sr_configkey {
e88dadd7
UH
669 /*--- Device classes ------------------------------------------------*/
670
671 /** The device can act as logic analyzer. */
1953564a 672 SR_CONF_LOGIC_ANALYZER = 10000,
925dbf9f 673
ee7489d2 674 /** The device can act as an oscilloscope. */
1953564a 675 SR_CONF_OSCILLOSCOPE,
e88dadd7 676
ca3d84cc 677 /** The device can act as a multimeter. */
1953564a 678 SR_CONF_MULTIMETER,
a141db8c 679
ca3d84cc 680 /** The device is a demo device. */
1953564a 681 SR_CONF_DEMO_DEV,
a141db8c 682
fc19c288 683 /** The device can act as a sound level meter. */
1953564a 684 SR_CONF_SOUNDLEVELMETER,
ca3d84cc 685
40270444 686 /** The device can measure temperature. */
1953564a 687 SR_CONF_THERMOMETER,
40270444
BV
688
689 /** The device can measure humidity. */
1953564a 690 SR_CONF_HYGROMETER,
40270444 691
45315d04
AJ
692 /** The device can measure energy consumption. */
693 SR_CONF_ENERGYMETER,
694
54ab1dcd 695 /** The device can act as a signal demodulator. */
32c426d2
BV
696 SR_CONF_DEMODULATOR,
697
54ab1dcd 698 /** The device can act as a programmable power supply. */
471607f0
BV
699 SR_CONF_POWER_SUPPLY,
700
54ab1dcd 701 /** The device can act as an LCR meter. */
b9a348f5 702 SR_CONF_LCRMETER,
0ffce50d 703
f54ebe0c 704 /** The device can act as an electronic load. */
e77e32a3
AJ
705 SR_CONF_ELECTRONIC_LOAD,
706
28af4c71
UH
707 /** The device can act as a scale. */
708 SR_CONF_SCALE,
709
ca7dbb56
UH
710 /* Update sr_key_info_config[] (hwdriver.c) upon changes! */
711
9a6517d1 712 /*--- Driver scan options -------------------------------------------*/
c89c1c9c
BV
713
714 /**
715 * Specification on how to connect to a device.
716 *
1953564a 717 * In combination with SR_CONF_SERIALCOMM, this is a serial port in
c89c1c9c
BV
718 * the form which makes sense to the OS (e.g., /dev/ttyS0).
719 * Otherwise this specifies a USB device, either in the form of
720 * @verbatim <bus>.<address> @endverbatim (decimal, e.g. 1.65) or
721 * @verbatim <vendorid>.<productid> @endverbatim
722 * (hexadecimal, e.g. 1d6b.0001).
723 */
1953564a 724 SR_CONF_CONN = 20000,
c89c1c9c
BV
725
726 /**
727 * Serial communication specification, in the form:
728 *
729 * @verbatim <baudrate>/<databits><parity><stopbits> @endverbatim
730 *
731 * Example: 9600/8n1
732 *
733 * The string may also be followed by one or more special settings,
734 * in the form "/key=value". Supported keys and their values are:
735 *
736 * rts 0,1 set the port's RTS pin to low or high
737 * dtr 0,1 set the port's DTR pin to low or high
738 * flow 0 no flow control
739 * 1 hardware-based (RTS/CTS) flow control
740 * 2 software-based (XON/XOFF) flow control
c1e45c65 741 *
c89c1c9c
BV
742 * This is always an optional parameter, since a driver typically
743 * knows the speed at which the device wants to communicate.
744 */
1953564a 745 SR_CONF_SERIALCOMM,
c89c1c9c 746
daa39012
AJ
747 /**
748 * Modbus slave address specification.
749 *
750 * This is always an optional parameter, since a driver typically
751 * knows the default slave address of the device.
752 */
753 SR_CONF_MODBUSADDR,
754
ca7dbb56
UH
755 /* Update sr_key_info_config[] (hwdriver.c) upon changes! */
756
54ab1dcd 757 /*--- Device (or channel group) configuration -----------------------*/
e88dadd7 758
7231a145 759 /** The device supports setting its samplerate, in Hz. */
1953564a 760 SR_CONF_SAMPLERATE = 30000,
e88dadd7 761
e88dadd7 762 /** The device supports setting a pre/post-trigger capture ratio. */
1953564a 763 SR_CONF_CAPTURE_RATIO,
e88dadd7 764
e88dadd7 765 /** The device supports setting a pattern (pattern generator mode). */
1953564a 766 SR_CONF_PATTERN_MODE,
e88dadd7 767
54ab1dcd 768 /** The device supports run-length encoding (RLE). */
1953564a 769 SR_CONF_RLE,
3a4d09c0 770
ee7489d2 771 /** The device supports setting trigger slope. */
1953564a 772 SR_CONF_TRIGGER_SLOPE,
0fe11789 773
9ed444e6
BG
774 /** The device supports averaging. */
775 SR_CONF_AVERAGING,
776
777 /**
778 * The device supports setting number of samples to be
779 * averaged over.
780 */
781 SR_CONF_AVG_SAMPLES,
782
0fe11789 783 /** Trigger source. */
1953564a 784 SR_CONF_TRIGGER_SOURCE,
0fe11789 785
3c0839d5 786 /** Horizontal trigger position. */
1953564a 787 SR_CONF_HORIZ_TRIGGERPOS,
0fe11789
BV
788
789 /** Buffer size. */
1953564a 790 SR_CONF_BUFFERSIZE,
0fe11789
BV
791
792 /** Time base. */
1953564a 793 SR_CONF_TIMEBASE,
ee7489d2 794
3c4976c9 795 /** Filter. */
1953564a 796 SR_CONF_FILTER,
3c4976c9 797
bd8db307 798 /** Volts/div. */
1953564a 799 SR_CONF_VDIV,
bd8db307 800
e1c8b2ab 801 /** Coupling. */
1953564a 802 SR_CONF_COUPLING,
e1c8b2ab 803
795c9de3
BV
804 /** Trigger matches. */
805 SR_CONF_TRIGGER_MATCH,
c50277a6 806
7231a145
BV
807 /** The device supports setting its sample interval, in ms. */
808 SR_CONF_SAMPLE_INTERVAL,
809
bf622e6d
ML
810 /** Number of horizontal divisions, as related to SR_CONF_TIMEBASE. */
811 SR_CONF_NUM_HDIV,
2efa699f
BV
812
813 /** Number of vertical divisions, as related to SR_CONF_VDIV. */
814 SR_CONF_NUM_VDIV,
815
fd8854c4
BV
816 /** Sound pressure level frequency weighting. */
817 SR_CONF_SPL_WEIGHT_FREQ,
818
819 /** Sound pressure level time weighting. */
820 SR_CONF_SPL_WEIGHT_TIME,
821
8417ebad
BV
822 /** Sound pressure level measurement range. */
823 SR_CONF_SPL_MEASUREMENT_RANGE,
824
9fd6bc20
BV
825 /** Max hold mode. */
826 SR_CONF_HOLD_MAX,
827
828 /** Min hold mode. */
829 SR_CONF_HOLD_MIN,
830
db11d7d2
MC
831 /** Logic low-high threshold range. */
832 SR_CONF_VOLTAGE_THRESHOLD,
833
bf90d4c6 834 /** The device supports using an external clock. */
d5c5ea2a
UH
835 SR_CONF_EXTERNAL_CLOCK,
836
837 /**
838 * The device supports swapping channels. Typical this is between
839 * buffered and unbuffered channels.
840 */
841 SR_CONF_SWAP,
842
bf90d4c6
BV
843 /** Center frequency.
844 * The input signal is downmixed by this frequency before the ADC
845 * anti-aliasing filter.
846 */
847 SR_CONF_CENTER_FREQUENCY,
848
fca75cbb 849 /** The device supports setting the number of logic channels. */
3f239f08 850 SR_CONF_NUM_LOGIC_CHANNELS,
bf90d4c6 851
fca75cbb 852 /** The device supports setting the number of analog channels. */
3f239f08 853 SR_CONF_NUM_ANALOG_CHANNELS,
32c426d2 854
a1eaa9e0 855 /**
7a0b98b5 856 * Current voltage.
a1eaa9e0 857 * @arg type: double
7a0b98b5 858 * @arg get: get measured voltage
a1eaa9e0 859 */
7a0b98b5 860 SR_CONF_VOLTAGE,
471607f0 861
a1eaa9e0 862 /**
7a0b98b5 863 * Maximum target voltage.
a1eaa9e0 864 * @arg type: double
7a0b98b5
AJ
865 * @arg get: get target voltage
866 * @arg set: change target voltage
a1eaa9e0 867 */
7a0b98b5 868 SR_CONF_VOLTAGE_TARGET,
471607f0 869
a1eaa9e0 870 /**
7a0b98b5 871 * Current current.
a1eaa9e0 872 * @arg type: double
7a0b98b5 873 * @arg get: get measured current
a1eaa9e0 874 */
7a0b98b5 875 SR_CONF_CURRENT,
471607f0 876
a1eaa9e0 877 /**
7a0b98b5 878 * Current limit.
a1eaa9e0 879 * @arg type: double
7a0b98b5
AJ
880 * @arg get: get current limit
881 * @arg set: change current limit
a1eaa9e0 882 */
7a0b98b5 883 SR_CONF_CURRENT_LIMIT,
471607f0 884
a1eaa9e0 885 /**
7a0b98b5 886 * Enabling/disabling channel.
a1eaa9e0
BV
887 * @arg type: boolean
888 * @arg get: @b true if currently enabled
889 * @arg set: enable/disable
890 */
7a0b98b5 891 SR_CONF_ENABLED,
471607f0 892
a1eaa9e0 893 /**
7a0b98b5 894 * Channel configuration.
a1eaa9e0
BV
895 * @arg type: string
896 * @arg get: get current setting
897 * @arg set: change current setting
898 * @arg list: array of possible values
899 */
7a0b98b5 900 SR_CONF_CHANNEL_CONFIG,
a1eaa9e0
BV
901
902 /**
903 * Over-voltage protection (OVP) feature
904 * @arg type: boolean
905 * @arg get: @b true if currently enabled
906 * @arg set: enable/disable
907 */
908 SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED,
909
910 /**
911 * Over-voltage protection (OVP) active
912 * @arg type: boolean
913 * @arg get: @b true if device has activated OVP, i.e. the output voltage
914 * exceeds the over-voltage protection threshold.
915 */
916 SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE,
917
918 /**
919 * Over-voltage protection (OVP) threshold
920 * @arg type: double (voltage)
921 * @arg get: get current threshold
922 * @arg set: set new threshold
923 */
924 SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD,
925
926 /**
927 * Over-current protection (OCP) feature
928 * @arg type: boolean
929 * @arg get: @b true if currently enabled
930 * @arg set: enable/disable
931 */
932 SR_CONF_OVER_CURRENT_PROTECTION_ENABLED,
471607f0 933
a1eaa9e0
BV
934 /**
935 * Over-current protection (OCP) active
936 * @arg type: boolean
7a0b98b5 937 * @arg get: @b true if device has activated OCP, i.e. the current current
a1eaa9e0
BV
938 * exceeds the over-current protection threshold.
939 */
940 SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE,
471607f0 941
a1eaa9e0
BV
942 /**
943 * Over-current protection (OCP) threshold
944 * @arg type: double (current)
945 * @arg get: get current threshold
946 * @arg set: set new threshold
947 */
948 SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD,
471607f0 949
860bc59b
DE
950 /** Choice of clock edge for external clock ("r" or "f"). */
951 SR_CONF_CLOCK_EDGE,
952
cff7d8d6
BV
953 /** Amplitude of a source without strictly-defined MQ. */
954 SR_CONF_AMPLITUDE,
955
a1eaa9e0 956 /**
7a0b98b5 957 * Channel regulation
a1eaa9e0
BV
958 * get: "CV", "CC" or "UR", denoting constant voltage, constant current
959 * or unregulated.
960 */
7a0b98b5 961 SR_CONF_REGULATION,
a1eaa9e0
BV
962
963 /** Over-temperature protection (OTP) */
964 SR_CONF_OVER_TEMPERATURE_PROTECTION,
965
0f5b241e
JH
966 /** Output frequency in Hz. */
967 SR_CONF_OUTPUT_FREQUENCY,
968
29ae6f08
UH
969 /** Output frequency target in Hz. */
970 SR_CONF_OUTPUT_FREQUENCY_TARGET,
971
a42a39ac
JH
972 /** Measured quantity. */
973 SR_CONF_MEASURED_QUANTITY,
974
a42a39ac
JH
975 /** Equivalent circuit model. */
976 SR_CONF_EQUIV_CIRCUIT_MODEL,
977
c4b78389
AJ
978 /** Over-temperature protection (OTP) active. */
979 SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE,
980
2fe1011f
UH
981 /** Under-voltage condition. */
982 SR_CONF_UNDER_VOLTAGE_CONDITION,
983
984 /** Under-voltage condition active. */
985 SR_CONF_UNDER_VOLTAGE_CONDITION_ACTIVE,
986
ca7dbb56
UH
987 /* Update sr_key_info_config[] (hwdriver.c) upon changes! */
988
e88dadd7
UH
989 /*--- Special stuff -------------------------------------------------*/
990
3c0839d5 991 /** Session filename. */
7d7fd93c 992 SR_CONF_SESSIONFILE = 40000,
40dda2c3 993
e88dadd7 994 /** The device supports specifying a capturefile to inject. */
1953564a 995 SR_CONF_CAPTUREFILE,
925dbf9f 996
e88dadd7 997 /** The device supports specifying the capturefile unit size. */
1953564a 998 SR_CONF_CAPTURE_UNITSIZE,
7d658874 999
32de50b7
BV
1000 /** Power off the device. */
1001 SR_CONF_POWER_OFF,
1002
d86e0b11
BV
1003 /**
1004 * Data source for acquisition. If not present, acquisition from
6caeef6e
BV
1005 * the device is always "live", i.e. acquisition starts when the
1006 * frontend asks and the results are sent out as soon as possible.
1007 *
1008 * If present, it indicates that either the device has no live
1009 * acquisition capability (for example a pure data logger), or
1010 * there is a choice. sr_config_list() returns those choices.
1011 *
1012 * In any case if a device has live acquisition capabilities, it
d86e0b11
BV
1013 * is always the default.
1014 */
6caeef6e
BV
1015 SR_CONF_DATA_SOURCE,
1016
d3c81725
BG
1017 /** The device supports setting a probe factor. */
1018 SR_CONF_PROBE_FACTOR,
1019
fadb19ac
AG
1020 /** Number of powerline cycles for ADC integration time. */
1021 SR_CONF_ADC_POWERLINE_CYCLES,
1022
ca7dbb56
UH
1023 /* Update sr_key_info_config[] (hwdriver.c) upon changes! */
1024
54ab1dcd 1025 /*--- Acquisition modes, sample limiting ----------------------------*/
e88dadd7
UH
1026
1027 /**
a02d77bc
UH
1028 * The device supports setting a sample time limit (how long
1029 * the sample acquisition should run, in ms).
e88dadd7 1030 */
1953564a 1031 SR_CONF_LIMIT_MSEC = 50000,
e88dadd7
UH
1032
1033 /**
a02d77bc
UH
1034 * The device supports setting a sample number limit (how many
1035 * samples should be acquired).
e88dadd7 1036 */
1953564a 1037 SR_CONF_LIMIT_SAMPLES,
e88dadd7 1038
6ea7669c 1039 /**
a02d77bc
UH
1040 * The device supports setting a frame limit (how many
1041 * frames should be acquired).
6ea7669c 1042 */
1953564a 1043 SR_CONF_LIMIT_FRAMES,
6ea7669c 1044
e88dadd7 1045 /**
a02d77bc 1046 * The device supports continuous sampling. Neither a time limit
e88dadd7
UH
1047 * nor a sample number limit has to be supplied, it will just acquire
1048 * samples continuously, until explicitly stopped by a certain command.
1049 */
1953564a 1050 SR_CONF_CONTINUOUS,
e6551ea6
BV
1051
1052 /** The device has internal storage, into which data is logged. This
1053 * starts or stops the internal logging. */
1054 SR_CONF_DATALOG,
831d7c70
ML
1055
1056 /** Device mode for multi-function devices. */
1057 SR_CONF_DEVICE_MODE,
1058
1059 /** Self test mode. */
1060 SR_CONF_TEST_MODE,
ca7dbb56
UH
1061
1062 /* Update sr_key_info_config[] (hwdriver.c) upon changes! */
a1bb33af
UH
1063};
1064
96727ef0
UH
1065/**
1066 * Opaque structure representing a libsigrok device instance.
1067 *
1068 * None of the fields of this structure are meant to be accessed directly.
04cb9157 1069 */
96727ef0 1070struct sr_dev_inst;
a1bb33af 1071
04cb9157 1072/** Types of device instance, struct sr_dev_inst.type */
76857945 1073enum sr_dev_inst_type {
4101f961 1074 /** Device instance type for USB devices. */
24d04d1e 1075 SR_INST_USB = 10000,
4101f961
UH
1076 /** Device instance type for serial port devices. */
1077 SR_INST_SERIAL,
23f43dff
ML
1078 /** Device instance type for SCPI devices. */
1079 SR_INST_SCPI,
e705ce3b
UH
1080 /** Device-instance type for user-created "devices". */
1081 SR_INST_USER,
f54ebe0c 1082 /** Device instance type for Modbus devices. */
daa39012 1083 SR_INST_MODBUS,
a1bb33af
UH
1084};
1085
04cb9157 1086/** Device instance status, struct sr_dev_inst.status */
76857945 1087enum sr_dev_inst_status {
3c0839d5 1088 /** The device instance was not found. */
24d04d1e 1089 SR_ST_NOT_FOUND = 10000,
3c0839d5 1090 /** The device instance was found, but is still booting. */
5a2326a7 1091 SR_ST_INITIALIZING,
3c0839d5 1092 /** The device instance is live, but not in use. */
5a2326a7 1093 SR_ST_INACTIVE,
3c0839d5 1094 /** The device instance is actively in use in a session. */
5a2326a7 1095 SR_ST_ACTIVE,
69b07d14
BV
1096 /** The device is winding down its session. */
1097 SR_ST_STOPPING,
a1bb33af
UH
1098};
1099
813aab69 1100/** Device driver data. See also http://sigrok.org/wiki/Hardware_driver_API . */
c09f0b57
UH
1101struct sr_dev_driver {
1102 /* Driver-specific */
813aab69 1103 /** Driver name. Lowercase a-z, 0-9 and dashes (-) only. */
e5ef649b 1104 const char *name;
813aab69 1105 /** Long name. Verbose driver name shown to user. */
e5ef649b 1106 const char *longname;
98582bf5
BV
1107 /** API version (currently 1). */
1108 int api_version;
813aab69 1109 /** Called when driver is loaded, e.g. program startup. */
4f840ce9 1110 int (*init) (struct sr_dev_driver *driver, struct sr_context *sr_ctx);
813aab69 1111 /** Called before driver is unloaded.
99d090d8 1112 * Driver must free all resources held by it. */
4f840ce9 1113 int (*cleanup) (const struct sr_dev_driver *driver);
813aab69
MH
1114 /** Scan for devices. Driver should do all initialisation required.
1115 * Can be called several times, e.g. with different port options.
dff0a894
UH
1116 * @retval NULL Error or no devices found.
1117 * @retval other GSList of a struct sr_dev_inst for each device.
813aab69
MH
1118 * Must be freed by caller!
1119 */
4f840ce9 1120 GSList *(*scan) (struct sr_dev_driver *driver, GSList *options);
813aab69 1121 /** Get list of device instances the driver knows about.
dff0a894 1122 * @returns NULL or GSList of a struct sr_dev_inst for each device.
813aab69
MH
1123 * Must not be freed by caller!
1124 */
4f840ce9 1125 GSList *(*dev_list) (const struct sr_dev_driver *driver);
813aab69 1126 /** Clear list of devices the driver knows about. */
4f840ce9 1127 int (*dev_clear) (const struct sr_dev_driver *driver);
813aab69
MH
1128 /** Query value of a configuration key in driver or given device instance.
1129 * @see sr_config_get().
1130 */
584560f1 1131 int (*config_get) (uint32_t key, GVariant **data,
8f996b89 1132 const struct sr_dev_inst *sdi,
53b4680f 1133 const struct sr_channel_group *cg);
813aab69
MH
1134 /** Set value of a configuration key in driver or a given device instance.
1135 * @see sr_config_set(). */
584560f1 1136 int (*config_set) (uint32_t key, GVariant *data,
8f996b89 1137 const struct sr_dev_inst *sdi,
53b4680f 1138 const struct sr_channel_group *cg);
fca75cbb 1139 /** Channel status change.
3b0ff21c 1140 * @see sr_dev_channel_enable(). */
f3ca73ed 1141 int (*config_channel_set) (const struct sr_dev_inst *sdi,
ba7dd8bb 1142 struct sr_channel *ch, unsigned int changes);
813aab69
MH
1143 /** Apply configuration settings to the device hardware.
1144 * @see sr_config_commit().*/
2a854d71 1145 int (*config_commit) (const struct sr_dev_inst *sdi);
813aab69
MH
1146 /** List all possible values for a configuration key in a device instance.
1147 * @see sr_config_list().
1148 */
584560f1 1149 int (*config_list) (uint32_t key, GVariant **data,
8f996b89 1150 const struct sr_dev_inst *sdi,
53b4680f 1151 const struct sr_channel_group *cg);
a1bb33af 1152
1b452b85 1153 /* Device-specific */
98582bf5
BV
1154 /** Open device */
1155 int (*dev_open) (struct sr_dev_inst *sdi);
1156 /** Close device */
1157 int (*dev_close) (struct sr_dev_inst *sdi);
a84f6ad3 1158 /** Begin data acquisition on the specified device. */
695dc859 1159 int (*dev_acquisition_start) (const struct sr_dev_inst *sdi);
a84f6ad3 1160 /** End data acquisition on the specified device. */
695dc859 1161 int (*dev_acquisition_stop) (struct sr_dev_inst *sdi);
dd34b8d3
BV
1162
1163 /* Dynamic */
41812aca
SA
1164 /** Device driver context, considered private. Initialized by init(). */
1165 void *context;
a1bb33af
UH
1166};
1167
24287ea9
AJ
1168/** Serial port descriptor. */
1169struct sr_serial_port {
1170 /** The OS dependent name of the serial port. */
1171 char *name;
1172 /** An end user friendly description for the serial port. */
1173 char *description;
1174};
1175
c1aae900
DE
1176#include <libsigrok/proto.h>
1177#include <libsigrok/version.h>
c2bd92ec 1178
a00b530c
UH
1179#ifdef __cplusplus
1180}
1181#endif
1182
a1bb33af 1183#endif