]> sigrok.org Git - libsigrok.git/blame - sigrok.h.in
hantek-dso: support SR_HWCAP_VDIV
[libsigrok.git] / sigrok.h.in
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
85a77720
UH
33/*
34 * Package version macros (can be used for conditional compilation).
35 */
36
37/** The libsigrok package 'major' version number. */
6dddd902 38#define SR_PACKAGE_VERSION_MAJOR @SR_PACKAGE_VERSION_MAJOR@
85a77720
UH
39
40/** The libsigrok package 'minor' version number. */
6dddd902 41#define SR_PACKAGE_VERSION_MINOR @SR_PACKAGE_VERSION_MINOR@
85a77720
UH
42
43/** The libsigrok package 'micro' version number. */
6dddd902 44#define SR_PACKAGE_VERSION_MICRO @SR_PACKAGE_VERSION_MICRO@
85a77720
UH
45
46/** The libsigrok package version ("major.minor.micro") as string. */
6dddd902 47#define SR_PACKAGE_VERSION_STRING "@SR_PACKAGE_VERSION@"
85a77720
UH
48
49/*
50 * Library/libtool version macros (can be used for conditional compilation).
51 */
52
53/** The libsigrok libtool 'current' version number. */
6dddd902 54#define SR_LIB_VERSION_CURRENT @SR_LIB_VERSION_CURRENT@
85a77720
UH
55
56/** The libsigrok libtool 'revision' version number. */
6dddd902 57#define SR_LIB_VERSION_REVISION @SR_LIB_VERSION_REVISION@
85a77720
UH
58
59/** The libsigrok libtool 'age' version number. */
6dddd902 60#define SR_LIB_VERSION_AGE @SR_LIB_VERSION_AGE@
85a77720
UH
61
62/** The libsigrok libtool version ("current:revision:age") as string. */
6dddd902 63#define SR_LIB_VERSION_STRING "@SR_LIB_VERSION@"
85a77720 64
e31b636d
UH
65/*
66 * Status/error codes returned by libsigrok functions.
67 *
68 * All possible return codes of libsigrok functions must be listed here.
69 * Functions should never return hardcoded numbers as status, but rather
70 * use these #defines instead. All error codes are negative numbers.
71 *
72 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
73 * libsigrok functions returns a "malloc error" it must be exactly the same
74 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
75 * There must be no functions which indicate two different errors via the
76 * same return code.
77 *
78 * Also, for compatibility reasons, no defined return codes are ever removed
79 * or reused for different #defines later. You can only add new #defines and
80 * return codes, but never remove or redefine existing ones.
81 */
e46b8fb1
UH
82#define SR_OK 0 /* No error */
83#define SR_ERR -1 /* Generic/unspecified error */
84#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
f7d2982d 85#define SR_ERR_ARG -3 /* Function argument error */
e0508e67
UH
86#define SR_ERR_BUG -4 /* Errors hinting at internal bugs */
87#define SR_ERR_SAMPLERATE -5 /* Incorrect samplerate */
a1bb33af 88
b2ff9506
BV
89#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
90#define SR_MAX_PROBENAME_LEN 32
2a3f9541 91
a1bb33af 92/* Handy little macros */
c9140419 93#define SR_HZ(n) (n)
59df0c77
UH
94#define SR_KHZ(n) ((n) * 1000)
95#define SR_MHZ(n) ((n) * 1000000)
96#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 97
59df0c77 98#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 99
1352eedd 100/* libsigrok loglevels. */
44dae539 101#define SR_LOG_NONE 0 /**< Output no messages at all. */
b2ff9506 102#define SR_LOG_ERR 1 /**< Output error messages. */
44dae539
UH
103#define SR_LOG_WARN 2 /**< Output warnings. */
104#define SR_LOG_INFO 3 /**< Output informational messages. */
b2ff9506 105#define SR_LOG_DBG 4 /**< Output debug messages. */
44dae539 106#define SR_LOG_SPEW 5 /**< Output very noisy debug messages. */
1352eedd 107
1a081ca6
UH
108/*
109 * Use SR_API to mark public API symbols, and SR_PRIV for private symbols.
110 *
111 * Variables and functions marked 'static' are private already and don't
112 * need SR_PRIV. However, functions which are not static (because they need
113 * to be used in other libsigrok-internal files) but are also not meant to
114 * be part of the public libsigrok API, must use SR_PRIV.
115 *
116 * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
117 *
69e70c23
UH
118 * This feature is not available on MinGW/Windows, as it is a feature of
119 * ELF files and MinGW/Windows uses PE files.
120 *
1a081ca6
UH
121 * Details: http://gcc.gnu.org/wiki/Visibility
122 */
123
124/* Marks public libsigrok API symbols. */
69e70c23 125#ifndef _WIN32
1a081ca6 126#define SR_API __attribute__((visibility("default")))
69e70c23
UH
127#else
128#define SR_API
129#endif
1a081ca6
UH
130
131/* Marks private, non-public libsigrok symbols (not part of the API). */
69e70c23 132#ifndef _WIN32
1a081ca6 133#define SR_PRIV __attribute__((visibility("hidden")))
69e70c23
UH
134#else
135#define SR_PRIV
136#endif
1a081ca6 137
1f9813eb 138typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
882e2075 139
c09f0b57 140/* Data types used by hardware drivers for dev_config_set() */
a1bb33af 141enum {
5a2326a7
UH
142 SR_T_UINT64,
143 SR_T_CHAR,
4d436e71 144 SR_T_BOOL,
0fe11789 145 SR_T_FLOAT,
c1e48618 146 SR_T_RATIONAL_PERIOD,
bd8db307 147 SR_T_RATIONAL_VOLT,
0fe11789
BV
148};
149
150struct sr_rational {
151 /* numerator */
152 uint64_t p;
153 /* denominator */
154 uint64_t q;
a1bb33af
UH
155};
156
b9c735a2 157/* sr_datafeed_packet.type values */
a1bb33af 158enum {
5a2326a7
UH
159 SR_DF_HEADER,
160 SR_DF_END,
161 SR_DF_TRIGGER,
162 SR_DF_LOGIC,
ee7489d2
BV
163 SR_DF_META_LOGIC,
164 SR_DF_ANALOG,
165 SR_DF_META_ANALOG,
6ea7669c
BV
166 SR_DF_FRAME_BEGIN,
167 SR_DF_FRAME_END,
a1bb33af
UH
168};
169
b9c735a2 170struct sr_datafeed_packet {
a1bb33af 171 uint16_t type;
a1bb33af
UH
172 void *payload;
173};
174
b9c735a2 175struct sr_datafeed_header {
a1bb33af
UH
176 int feed_version;
177 struct timeval starttime;
ee7489d2
BV
178};
179
180struct sr_datafeed_meta_logic {
181 int num_probes;
4c100f32 182 uint64_t samplerate;
a1bb33af
UH
183};
184
38ab3ee7
BV
185struct sr_datafeed_logic {
186 uint64_t length;
187 uint16_t unitsize;
9c939c51 188 void *data;
38ab3ee7
BV
189};
190
ee7489d2
BV
191struct sr_datafeed_meta_analog {
192 int num_probes;
193};
194
195struct sr_datafeed_analog {
196 int num_samples;
197 float *data;
198};
199
f50f3f40
UH
200struct sr_input {
201 struct sr_input_format *format;
13a12913 202 char *param;
bb7ef793 203 struct sr_dev *vdev;
34e4813f
BV
204};
205
f50f3f40 206struct sr_input_format {
cdb3573c 207 char *id;
34e4813f 208 char *description;
757b8c62 209 int (*format_match) (const char *filename);
f50f3f40
UH
210 int (*init) (struct sr_input *in);
211 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
212};
213
f50f3f40
UH
214struct sr_output {
215 struct sr_output_format *format;
bb7ef793 216 struct sr_dev *dev;
a1bb33af
UH
217 char *param;
218 void *internal;
219};
220
f50f3f40 221struct sr_output_format {
cdb3573c 222 char *id;
a1bb33af 223 char *description;
f0411b1d 224 int df_type;
f50f3f40 225 int (*init) (struct sr_output *o);
054e6709
UH
226 int (*data) (struct sr_output *o, const uint8_t *data_in,
227 uint64_t length_in, uint8_t **data_out,
228 uint64_t *length_out);
229 int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
a1bb33af
UH
230 uint64_t *length_out);
231};
232
c4911129 233struct sr_datastore {
a1bb33af
UH
234 /* Size in bytes of the number of units stored in this datastore */
235 int ds_unitsize;
33247d6a 236 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
237 GSList *chunklist;
238};
239
a1bb33af
UH
240/*
241 * This represents a generic device connected to the system.
c09f0b57
UH
242 * For device-specific information, ask the driver. The driver_index refers
243 * to the device index within that driver; it may be handling more than one
244 * device. All relevant driver calls take a dev_index parameter for this.
a1bb33af 245 */
bb7ef793 246struct sr_dev {
c09f0b57
UH
247 /* Which driver handles this device */
248 struct sr_dev_driver *driver;
249 /* A driver may handle multiple devices of the same type */
250 int driver_index;
1afe8989 251 /* List of struct sr_probe* */
a1bb33af
UH
252 GSList *probes;
253 /* Data acquired by this device, if any */
c4911129 254 struct sr_datastore *datastore;
a1bb33af
UH
255};
256
921e753f 257enum {
5a2326a7 258 SR_PROBE_TYPE_LOGIC,
921e753f
DR
259};
260
1afe8989 261struct sr_probe {
a1bb33af 262 int index;
6ea7e235 263 int type;
a1bb33af
UH
264 gboolean enabled;
265 char *name;
266 char *trigger;
267};
268
c09f0b57 269/* Hardware driver capabilities */
a1bb33af 270enum {
fb93625d 271 SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
e88dadd7
UH
272
273 /*--- Device classes ------------------------------------------------*/
274
275 /** The device can act as logic analyzer. */
5a2326a7 276 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 277
ee7489d2
BV
278 /** The device can act as an oscilloscope. */
279 SR_HWCAP_OSCILLOSCOPE,
e88dadd7 280
a141db8c
AS
281 /*--- Device types --------------------------------------------------*/
282
283 /** The device is demo device. */
bb7ef793 284 SR_HWCAP_DEMO_DEV,
a141db8c 285
e88dadd7
UH
286 /*--- Device options ------------------------------------------------*/
287
288 /** The device supports setting/changing its samplerate. */
289 SR_HWCAP_SAMPLERATE,
290
291 /* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
292 /** The device supports setting a probe mask. */
293 SR_HWCAP_PROBECONFIG,
294
295 /** The device supports setting a pre/post-trigger capture ratio. */
296 SR_HWCAP_CAPTURE_RATIO,
297
298 /* TODO? */
299 /** The device supports setting a pattern (pattern generator mode). */
300 SR_HWCAP_PATTERN_MODE,
301
3a4d09c0
GM
302 /** The device supports Run Length Encoding. */
303 SR_HWCAP_RLE,
304
ee7489d2 305 /** The device supports setting trigger slope. */
0fe11789
BV
306 SR_HWCAP_TRIGGER_SLOPE,
307
308 /** Trigger source. */
309 SR_HWCAP_TRIGGER_SOURCE,
310
311 /** Horizontal trigger position */
312 SR_HWCAP_HORIZ_TRIGGERPOS,
313
314 /** Buffer size. */
315 SR_HWCAP_BUFFERSIZE,
316
317 /** Time base. */
318 SR_HWCAP_TIMEBASE,
ee7489d2 319
3c4976c9
BV
320 /** Filter. */
321 SR_HWCAP_FILTER,
322
bd8db307
BV
323 /** Volts/div. */
324 SR_HWCAP_VDIV,
325
e88dadd7
UH
326 /*--- Special stuff -------------------------------------------------*/
327
328 /* TODO: Better description. */
329 /** The device supports specifying a capturefile to inject. */
330 SR_HWCAP_CAPTUREFILE,
925dbf9f 331
e88dadd7
UH
332 /* TODO: Better description. */
333 /** The device supports specifying the capturefile unit size. */
334 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 335
e88dadd7
UH
336 /* TODO: Better description. */
337 /** The device supports setting the number of probes. */
338 SR_HWCAP_CAPTURE_NUM_PROBES,
339
340 /*--- Acquisition modes ---------------------------------------------*/
341
342 /**
343 * The device supports setting a sample time limit, i.e. how long the
344 * sample acquisition should run (in ms).
345 */
346 SR_HWCAP_LIMIT_MSEC,
347
348 /**
349 * The device supports setting a sample number limit, i.e. how many
350 * samples should be acquired.
351 */
352 SR_HWCAP_LIMIT_SAMPLES,
353
6ea7669c
BV
354 /**
355 * The device supports setting a frame limit, i.e. how many
356 * frames should be acquired.
357 */
358 SR_HWCAP_LIMIT_FRAMES,
359
e88dadd7
UH
360 /**
361 * The device supports continuous sampling, i.e. neither a time limit
362 * nor a sample number limit has to be supplied, it will just acquire
363 * samples continuously, until explicitly stopped by a certain command.
364 */
5a2326a7 365 SR_HWCAP_CONTINUOUS,
e88dadd7 366
a1bb33af
UH
367};
368
a65de030 369struct sr_hwcap_option {
ffedd0bf 370 int hwcap;
a1bb33af
UH
371 int type;
372 char *description;
373 char *shortname;
374};
375
d68e2d1a 376struct sr_dev_inst {
a1bb33af
UH
377 int index;
378 int status;
1d9a8a5f 379 int inst_type;
a1bb33af
UH
380 char *vendor;
381 char *model;
382 char *version;
8d672550 383 void *priv;
a1bb33af
UH
384};
385
d68e2d1a 386/* sr_dev_inst types */
a1bb33af 387enum {
4101f961
UH
388 /** Device instance type for USB devices. */
389 SR_INST_USB,
390 /** Device instance type for serial port devices. */
391 SR_INST_SERIAL,
a1bb33af
UH
392};
393
a1bb33af
UH
394/* Device instance status */
395enum {
5a2326a7 396 SR_ST_NOT_FOUND,
a1bb33af 397 /* Found, but still booting */
5a2326a7 398 SR_ST_INITIALIZING,
a1bb33af 399 /* Live, but not in use */
5a2326a7 400 SR_ST_INACTIVE,
a1bb33af 401 /* Actively in use in a session */
5a2326a7 402 SR_ST_ACTIVE,
a1bb33af
UH
403};
404
405/*
406 * TODO: This sucks, you just kinda have to "know" the returned type.
407 * TODO: Need a DI to return the number of trigger stages supported.
408 */
409
410/* Device info IDs */
411enum {
d68e2d1a 412 /* struct sr_dev_inst for this specific device */
1d9a8a5f 413 SR_DI_INST,
a1bb33af 414 /* The number of probes connected to this device */
5a2326a7 415 SR_DI_NUM_PROBES,
464d12c7
KS
416 /* The probe names on this device */
417 SR_DI_PROBE_NAMES,
60679b18 418 /* Samplerates supported by this device, (struct sr_samplerates) */
5a2326a7 419 SR_DI_SAMPLERATES,
0fe11789 420 /* Types of logic trigger supported, out of "01crf" (char *) */
5a2326a7 421 SR_DI_TRIGGER_TYPES,
4c100f32 422 /* The currently set samplerate in Hz (uint64_t) */
5a2326a7 423 SR_DI_CUR_SAMPLERATE,
eb0a3731
UH
424 /* Supported patterns (in pattern generator mode) */
425 SR_DI_PATTERNS,
0fe11789
BV
426 /* Supported buffer sizes */
427 SR_DI_BUFFERSIZES,
428 /* Supported time bases */
429 SR_DI_TIMEBASES,
430 /* Supported trigger sources */
431 SR_DI_TRIGGER_SOURCES,
3c4976c9
BV
432 /* Supported filter targets */
433 SR_DI_FILTERS,
bd8db307
BV
434 /* Valid volts/div values */
435 SR_DI_VDIVS,
a1bb33af
UH
436};
437
1b452b85
UH
438/*
439 * A device supports either a range of samplerates with steps of a given
440 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
441 * step or list, but not both.
442 */
60679b18 443struct sr_samplerates {
a1bb33af
UH
444 uint64_t low;
445 uint64_t high;
446 uint64_t step;
447 uint64_t *list;
448};
449
c09f0b57
UH
450struct sr_dev_driver {
451 /* Driver-specific */
a1bb33af 452 char *name;
9f8274a5 453 char *longname;
a1bb33af 454 int api_version;
bb7ef793 455 int (*init) (const char *devinfo);
57ab7d9f 456 int (*cleanup) (void);
a1bb33af 457
1b452b85 458 /* Device-specific */
e7eb703f
UH
459 int (*dev_open) (int dev_index);
460 int (*dev_close) (int dev_index);
5097b0d0 461 void *(*dev_info_get) (int dev_index, int dev_info_id);
e7eb703f 462 int (*dev_status_get) (int dev_index);
ffedd0bf 463 int *(*hwcap_get_all) (void);
a9a245b4 464 int (*dev_config_set) (int dev_index, int hwcap, void *value);
1f9813eb
UH
465 int (*dev_acquisition_start) (int dev_index, void *session_dev_id);
466 int (*dev_acquisition_stop) (int dev_index, void *session_dev_id);
a1bb33af
UH
467};
468
2872d21e 469struct sr_session {
bb7ef793
UH
470 /* List of struct sr_dev* */
471 GSList *devs;
d08490aa 472 /* list of sr_receive_data_callback_t */
a1bb33af
UH
473 GSList *datafeed_callbacks;
474 GTimeVal starttime;
544a4582 475 gboolean running;
a1bb33af
UH
476};
477
882e2075 478#include "sigrok-proto.h"
c2bd92ec 479
a00b530c
UH
480#ifdef __cplusplus
481}
482#endif
483
a1bb33af 484#endif