]> sigrok.org Git - libsigrok.git/blame - libsigrok.h
sr: add fahrenheit and boolean MQ units
[libsigrok.git] / libsigrok.h
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
0f8522bf
UH
20#ifndef LIBSIGROK_SIGROK_H
21#define LIBSIGROK_SIGROK_H
a1bb33af
UH
22
23#include <stdio.h>
24#include <sys/time.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <glib.h>
a1bb33af 28
a00b530c
UH
29#ifdef __cplusplus
30extern "C" {
31#endif
32
e31b636d
UH
33/*
34 * Status/error codes returned by libsigrok functions.
35 *
36 * All possible return codes of libsigrok functions must be listed here.
37 * Functions should never return hardcoded numbers as status, but rather
38 * use these #defines instead. All error codes are negative numbers.
39 *
40 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
41 * libsigrok functions returns a "malloc error" it must be exactly the same
42 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
43 * There must be no functions which indicate two different errors via the
44 * same return code.
45 *
46 * Also, for compatibility reasons, no defined return codes are ever removed
47 * or reused for different #defines later. You can only add new #defines and
48 * return codes, but never remove or redefine existing ones.
49 */
e46b8fb1
UH
50#define SR_OK 0 /* No error */
51#define SR_ERR -1 /* Generic/unspecified error */
52#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
f7d2982d 53#define SR_ERR_ARG -3 /* Function argument error */
e0508e67
UH
54#define SR_ERR_BUG -4 /* Errors hinting at internal bugs */
55#define SR_ERR_SAMPLERATE -5 /* Incorrect samplerate */
a1bb33af 56
b2ff9506
BV
57#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
58#define SR_MAX_PROBENAME_LEN 32
2a3f9541 59
a1bb33af 60/* Handy little macros */
c9140419 61#define SR_HZ(n) (n)
59df0c77
UH
62#define SR_KHZ(n) ((n) * 1000)
63#define SR_MHZ(n) ((n) * 1000000)
64#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 65
59df0c77 66#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 67
1352eedd 68/* libsigrok loglevels. */
44dae539 69#define SR_LOG_NONE 0 /**< Output no messages at all. */
b2ff9506 70#define SR_LOG_ERR 1 /**< Output error messages. */
44dae539
UH
71#define SR_LOG_WARN 2 /**< Output warnings. */
72#define SR_LOG_INFO 3 /**< Output informational messages. */
b2ff9506 73#define SR_LOG_DBG 4 /**< Output debug messages. */
44dae539 74#define SR_LOG_SPEW 5 /**< Output very noisy debug messages. */
1352eedd 75
1a081ca6
UH
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 *
69e70c23
UH
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 *
1a081ca6
UH
89 * Details: http://gcc.gnu.org/wiki/Visibility
90 */
91
92/* Marks public libsigrok API symbols. */
69e70c23 93#ifndef _WIN32
1a081ca6 94#define SR_API __attribute__((visibility("default")))
69e70c23
UH
95#else
96#define SR_API
97#endif
1a081ca6
UH
98
99/* Marks private, non-public libsigrok symbols (not part of the API). */
69e70c23 100#ifndef _WIN32
1a081ca6 101#define SR_PRIV __attribute__((visibility("hidden")))
69e70c23
UH
102#else
103#define SR_PRIV
104#endif
1a081ca6 105
1f9813eb 106typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
882e2075 107
c09f0b57 108/* Data types used by hardware drivers for dev_config_set() */
a1bb33af 109enum {
5a2326a7
UH
110 SR_T_UINT64,
111 SR_T_CHAR,
4d436e71 112 SR_T_BOOL,
0fe11789 113 SR_T_FLOAT,
c1e48618 114 SR_T_RATIONAL_PERIOD,
bd8db307 115 SR_T_RATIONAL_VOLT,
45edd0b2 116 SR_T_KEYVALUE,
0fe11789
BV
117};
118
119struct sr_rational {
120 /* numerator */
121 uint64_t p;
122 /* denominator */
123 uint64_t q;
a1bb33af
UH
124};
125
b9c735a2 126/* sr_datafeed_packet.type values */
a1bb33af 127enum {
5a2326a7
UH
128 SR_DF_HEADER,
129 SR_DF_END,
130 SR_DF_TRIGGER,
131 SR_DF_LOGIC,
ee7489d2
BV
132 SR_DF_META_LOGIC,
133 SR_DF_ANALOG,
134 SR_DF_META_ANALOG,
6ea7669c
BV
135 SR_DF_FRAME_BEGIN,
136 SR_DF_FRAME_END,
a1bb33af
UH
137};
138
9956f285
UH
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,
64591be2 148 SR_MQ_CONTINUITY,
9956f285
UH
149};
150
aff5a729
BV
151/* sr_datafeed_analog.unit values */
152enum {
9956f285
UH
153 SR_UNIT_VOLT,
154 SR_UNIT_AMPERE,
155 SR_UNIT_OHM,
156 SR_UNIT_FARAD,
9956f285 157 SR_UNIT_KELVIN,
edb000eb
BV
158 SR_UNIT_CELSIUS,
159 SR_UNIT_FAHRENHEIT,
9956f285
UH
160 SR_UNIT_HERTZ,
161 SR_UNIT_PERCENTAGE,
edb000eb 162 SR_UNIT_BOOLEAN,
aff5a729
BV
163};
164
b9c735a2 165struct sr_datafeed_packet {
a1bb33af 166 uint16_t type;
a1bb33af
UH
167 void *payload;
168};
169
b9c735a2 170struct sr_datafeed_header {
a1bb33af
UH
171 int feed_version;
172 struct timeval starttime;
ee7489d2
BV
173};
174
175struct sr_datafeed_meta_logic {
176 int num_probes;
4c100f32 177 uint64_t samplerate;
a1bb33af
UH
178};
179
38ab3ee7
BV
180struct sr_datafeed_logic {
181 uint64_t length;
182 uint16_t unitsize;
9c939c51 183 void *data;
38ab3ee7
BV
184};
185
ee7489d2
BV
186struct sr_datafeed_meta_analog {
187 int num_probes;
188};
189
190struct sr_datafeed_analog {
191 int num_samples;
9956f285
UH
192 int mq; /* Measured quantity (e.g. voltage, current, temperature) */
193 int unit; /* Unit in which the MQ is measured. */
ee7489d2
BV
194 float *data;
195};
196
f50f3f40
UH
197struct sr_input {
198 struct sr_input_format *format;
3dafb92b 199 GHashTable *param;
5c3c1241 200 struct sr_dev_inst *sdi;
3dafb92b 201 void *internal;
34e4813f
BV
202};
203
f50f3f40 204struct sr_input_format {
cdb3573c 205 char *id;
34e4813f 206 char *description;
757b8c62 207 int (*format_match) (const char *filename);
f50f3f40
UH
208 int (*init) (struct sr_input *in);
209 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
210};
211
f50f3f40
UH
212struct sr_output {
213 struct sr_output_format *format;
5c3c1241 214 struct sr_dev_inst *sdi;
a1bb33af
UH
215 char *param;
216 void *internal;
217};
218
f50f3f40 219struct sr_output_format {
cdb3573c 220 char *id;
a1bb33af 221 char *description;
f0411b1d 222 int df_type;
f50f3f40 223 int (*init) (struct sr_output *o);
054e6709
UH
224 int (*data) (struct sr_output *o, const uint8_t *data_in,
225 uint64_t length_in, uint8_t **data_out,
226 uint64_t *length_out);
227 int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
a1bb33af
UH
228 uint64_t *length_out);
229};
230
c4911129 231struct sr_datastore {
a1bb33af
UH
232 /* Size in bytes of the number of units stored in this datastore */
233 int ds_unitsize;
33247d6a 234 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
235 GSList *chunklist;
236};
237
a1bb33af
UH
238/*
239 * This represents a generic device connected to the system.
c09f0b57
UH
240 * For device-specific information, ask the driver. The driver_index refers
241 * to the device index within that driver; it may be handling more than one
242 * device. All relevant driver calls take a dev_index parameter for this.
a1bb33af 243 */
bb7ef793 244struct sr_dev {
c09f0b57
UH
245 /* Which driver handles this device */
246 struct sr_dev_driver *driver;
247 /* A driver may handle multiple devices of the same type */
248 int driver_index;
1afe8989 249 /* List of struct sr_probe* */
a1bb33af
UH
250 GSList *probes;
251 /* Data acquired by this device, if any */
c4911129 252 struct sr_datastore *datastore;
a1bb33af
UH
253};
254
921e753f 255enum {
47211d65 256 SR_PROBE_LOGIC,
87ca93c5 257 SR_PROBE_ANALOG,
921e753f
DR
258};
259
1afe8989 260struct sr_probe {
a1bb33af 261 int index;
6ea7e235 262 int type;
a1bb33af
UH
263 gboolean enabled;
264 char *name;
265 char *trigger;
266};
267
b159add3
BV
268struct sr_hwopt {
269 int hwopt;
270 const void *value;
271};
272
273/* Hardware driver options */
274enum {
8bfdc8c4
BV
275 SR_HWOPT_DUMMY = 0, /* Used to terminate lists. Must be 0! */
276
b159add3
BV
277 /** Some drivers cannot detect the exact model they're talking to. */
278 SR_HWOPT_MODEL,
279
280 /** Specification on how to connect to a device */
281 SR_HWOPT_CONN,
282
283 /** Serial communication spec: <data bits><parity><stop bit> e.g. 8n1 */
284 SR_HWOPT_SERIALCOMM,
285};
286
287/* Hardware device capabilities */
a1bb33af 288enum {
fb93625d 289 SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
e88dadd7
UH
290
291 /*--- Device classes ------------------------------------------------*/
292
293 /** The device can act as logic analyzer. */
5a2326a7 294 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 295
ee7489d2
BV
296 /** The device can act as an oscilloscope. */
297 SR_HWCAP_OSCILLOSCOPE,
e88dadd7 298
ca3d84cc
BV
299 /** The device can act as a multimeter. */
300 SR_HWCAP_MULTIMETER,
a141db8c 301
ca3d84cc 302 /** The device is a demo device. */
bb7ef793 303 SR_HWCAP_DEMO_DEV,
a141db8c 304
ca3d84cc 305
ca3d84cc 306 /*--- Device configuration ------------------------------------------*/
e88dadd7
UH
307
308 /** The device supports setting/changing its samplerate. */
309 SR_HWCAP_SAMPLERATE,
310
e88dadd7
UH
311 /** The device supports setting a pre/post-trigger capture ratio. */
312 SR_HWCAP_CAPTURE_RATIO,
313
314 /* TODO? */
315 /** The device supports setting a pattern (pattern generator mode). */
316 SR_HWCAP_PATTERN_MODE,
317
3a4d09c0
GM
318 /** The device supports Run Length Encoding. */
319 SR_HWCAP_RLE,
320
ee7489d2 321 /** The device supports setting trigger slope. */
0fe11789
BV
322 SR_HWCAP_TRIGGER_SLOPE,
323
324 /** Trigger source. */
325 SR_HWCAP_TRIGGER_SOURCE,
326
327 /** Horizontal trigger position */
328 SR_HWCAP_HORIZ_TRIGGERPOS,
329
330 /** Buffer size. */
331 SR_HWCAP_BUFFERSIZE,
332
333 /** Time base. */
334 SR_HWCAP_TIMEBASE,
ee7489d2 335
3c4976c9
BV
336 /** Filter. */
337 SR_HWCAP_FILTER,
338
bd8db307
BV
339 /** Volts/div. */
340 SR_HWCAP_VDIV,
341
e1c8b2ab
BV
342 /** Coupling. */
343 SR_HWCAP_COUPLING,
344
ca3d84cc 345
e88dadd7
UH
346 /*--- Special stuff -------------------------------------------------*/
347
40dda2c3
BV
348 /** Session filename */
349 SR_HWCAP_SESSIONFILE,
350
e88dadd7
UH
351 /* TODO: Better description. */
352 /** The device supports specifying a capturefile to inject. */
353 SR_HWCAP_CAPTUREFILE,
925dbf9f 354
e88dadd7
UH
355 /* TODO: Better description. */
356 /** The device supports specifying the capturefile unit size. */
357 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 358
e88dadd7
UH
359 /* TODO: Better description. */
360 /** The device supports setting the number of probes. */
361 SR_HWCAP_CAPTURE_NUM_PROBES,
362
ca3d84cc 363
e88dadd7
UH
364 /*--- Acquisition modes ---------------------------------------------*/
365
366 /**
367 * The device supports setting a sample time limit, i.e. how long the
368 * sample acquisition should run (in ms).
369 */
370 SR_HWCAP_LIMIT_MSEC,
371
372 /**
373 * The device supports setting a sample number limit, i.e. how many
374 * samples should be acquired.
375 */
376 SR_HWCAP_LIMIT_SAMPLES,
377
6ea7669c
BV
378 /**
379 * The device supports setting a frame limit, i.e. how many
380 * frames should be acquired.
381 */
382 SR_HWCAP_LIMIT_FRAMES,
383
e88dadd7
UH
384 /**
385 * The device supports continuous sampling, i.e. neither a time limit
386 * nor a sample number limit has to be supplied, it will just acquire
387 * samples continuously, until explicitly stopped by a certain command.
388 */
5a2326a7 389 SR_HWCAP_CONTINUOUS,
e88dadd7 390
a1bb33af
UH
391};
392
a65de030 393struct sr_hwcap_option {
ffedd0bf 394 int hwcap;
a1bb33af
UH
395 int type;
396 char *description;
397 char *shortname;
398};
399
d68e2d1a 400struct sr_dev_inst {
9e41fdba 401 struct sr_dev_driver *driver;
a1bb33af
UH
402 int index;
403 int status;
1d9a8a5f 404 int inst_type;
a1bb33af
UH
405 char *vendor;
406 char *model;
407 char *version;
47211d65 408 GSList *probes;
8d672550 409 void *priv;
a1bb33af
UH
410};
411
d68e2d1a 412/* sr_dev_inst types */
a1bb33af 413enum {
4101f961
UH
414 /** Device instance type for USB devices. */
415 SR_INST_USB,
416 /** Device instance type for serial port devices. */
417 SR_INST_SERIAL,
a1bb33af
UH
418};
419
a1bb33af
UH
420/* Device instance status */
421enum {
5a2326a7 422 SR_ST_NOT_FOUND,
a1bb33af 423 /* Found, but still booting */
5a2326a7 424 SR_ST_INITIALIZING,
a1bb33af 425 /* Live, but not in use */
5a2326a7 426 SR_ST_INACTIVE,
a1bb33af 427 /* Actively in use in a session */
5a2326a7 428 SR_ST_ACTIVE,
a1bb33af
UH
429};
430
431/*
432 * TODO: This sucks, you just kinda have to "know" the returned type.
433 * TODO: Need a DI to return the number of trigger stages supported.
434 */
435
436/* Device info IDs */
437enum {
be34a1c7
BV
438 /* A list of options supported by the driver. */
439 SR_DI_HWOPTS,
440 /* A list of capabilities supported by the device. */
441 SR_DI_HWCAPS,
a1bb33af 442 /* The number of probes connected to this device */
5a2326a7 443 SR_DI_NUM_PROBES,
464d12c7
KS
444 /* The probe names on this device */
445 SR_DI_PROBE_NAMES,
60679b18 446 /* Samplerates supported by this device, (struct sr_samplerates) */
5a2326a7 447 SR_DI_SAMPLERATES,
0fe11789 448 /* Types of logic trigger supported, out of "01crf" (char *) */
5a2326a7 449 SR_DI_TRIGGER_TYPES,
4c100f32 450 /* The currently set samplerate in Hz (uint64_t) */
5a2326a7 451 SR_DI_CUR_SAMPLERATE,
eb0a3731
UH
452 /* Supported patterns (in pattern generator mode) */
453 SR_DI_PATTERNS,
0fe11789
BV
454 /* Supported buffer sizes */
455 SR_DI_BUFFERSIZES,
456 /* Supported time bases */
457 SR_DI_TIMEBASES,
458 /* Supported trigger sources */
459 SR_DI_TRIGGER_SOURCES,
3c4976c9
BV
460 /* Supported filter targets */
461 SR_DI_FILTERS,
bd8db307
BV
462 /* Valid volts/div values */
463 SR_DI_VDIVS,
e1c8b2ab
BV
464 /* Coupling options */
465 SR_DI_COUPLING,
a1bb33af
UH
466};
467
1b452b85
UH
468/*
469 * A device supports either a range of samplerates with steps of a given
470 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
471 * step or list, but not both.
472 */
60679b18 473struct sr_samplerates {
a1bb33af
UH
474 uint64_t low;
475 uint64_t high;
476 uint64_t step;
a533743d 477 const uint64_t *list;
a1bb33af
UH
478};
479
c09f0b57
UH
480struct sr_dev_driver {
481 /* Driver-specific */
a1bb33af 482 char *name;
9f8274a5 483 char *longname;
a1bb33af 484 int api_version;
40dda2c3 485 int (*init) (void);
57ab7d9f 486 int (*cleanup) (void);
80bf0426 487 GSList *(*scan) (GSList *options);
811deee4
BV
488 GSList *(*dev_list) (void);
489 int (*dev_clear) (void);
a1bb33af 490
1b452b85 491 /* Device-specific */
25a0f108
BV
492 int (*dev_open) (struct sr_dev_inst *sdi);
493 int (*dev_close) (struct sr_dev_inst *sdi);
9e90dcba 494 int (*info_get) (int info_id, const void **data,
f92f4eab 495 const struct sr_dev_inst *sdi);
6f4b1868
BV
496 int (*dev_config_set) (const struct sr_dev_inst *sdi, int hwcap,
497 const void *value);
3ffb6964
BV
498 int (*dev_acquisition_start) (const struct sr_dev_inst *sdi,
499 void *cb_data);
500 int (*dev_acquisition_stop) (const struct sr_dev_inst *sdi,
501 void *cb_data);
dd34b8d3
BV
502
503 /* Dynamic */
c259726a 504 void *priv;
a1bb33af
UH
505};
506
2872d21e 507struct sr_session {
bb7ef793
UH
508 /* List of struct sr_dev* */
509 GSList *devs;
d08490aa 510 /* list of sr_receive_data_callback_t */
a1bb33af
UH
511 GSList *datafeed_callbacks;
512 GTimeVal starttime;
b7e94111
LPC
513
514 unsigned int num_sources;
515
516 /* Both "sources" and "pollfds" are of the same size and contain pairs of
517 * descriptor and callback function. We can not embed the GPollFD into the
518 * source struct since we want to be able to pass the array of all poll
519 * descriptors to g_poll.
520 */
521 struct source *sources;
522 GPollFD *pollfds;
523 int source_timeout;
a1bb33af
UH
524};
525
45c59c8b
BV
526#include "proto.h"
527#include "version.h"
c2bd92ec 528
a00b530c
UH
529#ifdef __cplusplus
530}
531#endif
532
a1bb33af 533#endif