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