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