]> sigrok.org Git - libsigrok.git/blob - sigrok.h.in
hantek-dso: proper protocol implementation of trigger/samplerate setting
[libsigrok.git] / sigrok.h.in
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
30 extern "C" {
31 #endif
32
33 /*
34  * Package version macros (can be used for conditional compilation).
35  */
36
37 /** The libsigrok package 'major' version number. */
38 #define SR_PACKAGE_VERSION_MAJOR @SR_PACKAGE_VERSION_MAJOR@
39
40 /** The libsigrok package 'minor' version number. */
41 #define SR_PACKAGE_VERSION_MINOR @SR_PACKAGE_VERSION_MINOR@
42
43 /** The libsigrok package 'micro' version number. */
44 #define SR_PACKAGE_VERSION_MICRO @SR_PACKAGE_VERSION_MICRO@
45
46 /** The libsigrok package version ("major.minor.micro") as string. */
47 #define SR_PACKAGE_VERSION_STRING "@SR_PACKAGE_VERSION@"
48
49 /*
50  * Library/libtool version macros (can be used for conditional compilation).
51  */
52
53 /** The libsigrok libtool 'current' version number. */
54 #define SR_LIB_VERSION_CURRENT @SR_LIB_VERSION_CURRENT@
55
56 /** The libsigrok libtool 'revision' version number. */
57 #define SR_LIB_VERSION_REVISION @SR_LIB_VERSION_REVISION@
58
59 /** The libsigrok libtool 'age' version number. */
60 #define SR_LIB_VERSION_AGE @SR_LIB_VERSION_AGE@
61
62 /** The libsigrok libtool version ("current:revision:age") as string. */
63 #define SR_LIB_VERSION_STRING "@SR_LIB_VERSION@"
64
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
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".
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  */
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 */
85 #define SR_ERR_ARG           -3 /* Function argument error */
86 #define SR_ERR_BUG           -4 /* Errors hinting at internal bugs */
87 #define SR_ERR_SAMPLERATE    -5 /* Incorrect samplerate */
88
89 #define SR_MAX_NUM_PROBES    64 /* Limited by uint64_t. */
90 #define SR_MAX_PROBENAME_LEN 32
91
92 /* Handy little macros */
93 #define SR_HZ(n)  (n)
94 #define SR_KHZ(n) ((n) * 1000)
95 #define SR_MHZ(n) ((n) * 1000000)
96 #define SR_GHZ(n) ((n) * 1000000000)
97
98 #define SR_HZ_TO_NS(n) (1000000000 / (n))
99
100 /* libsigrok loglevels. */
101 #define SR_LOG_NONE           0 /**< Output no messages at all. */
102 #define SR_LOG_ERR            1 /**< Output error messages. */
103 #define SR_LOG_WARN           2 /**< Output warnings. */
104 #define SR_LOG_INFO           3 /**< Output informational messages. */
105 #define SR_LOG_DBG            4 /**< Output debug messages. */
106 #define SR_LOG_SPEW           5 /**< Output very noisy debug messages. */
107
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  *
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  *
121  * Details: http://gcc.gnu.org/wiki/Visibility
122  */
123
124 /* Marks public libsigrok API symbols. */
125 #ifndef _WIN32
126 #define SR_API __attribute__((visibility("default")))
127 #else
128 #define SR_API
129 #endif
130
131 /* Marks private, non-public libsigrok symbols (not part of the API). */
132 #ifndef _WIN32
133 #define SR_PRIV __attribute__((visibility("hidden")))
134 #else
135 #define SR_PRIV
136 #endif
137
138 typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
139
140 /* Data types used by hardware drivers for dev_config_set() */
141 enum {
142         SR_T_UINT64,
143         SR_T_CHAR,
144         SR_T_BOOL,
145 };
146
147 /* sr_datafeed_packet.type values */
148 enum {
149         SR_DF_HEADER,
150         SR_DF_END,
151         SR_DF_TRIGGER,
152         SR_DF_LOGIC,
153         SR_DF_META_LOGIC,
154         SR_DF_ANALOG,
155         SR_DF_META_ANALOG,
156         SR_DF_FRAME_BEGIN,
157         SR_DF_FRAME_END,
158 };
159
160 struct sr_datafeed_packet {
161         uint16_t type;
162         void *payload;
163 };
164
165 struct sr_datafeed_header {
166         int feed_version;
167         struct timeval starttime;
168 };
169
170 struct sr_datafeed_meta_logic {
171         int num_probes;
172         uint64_t samplerate;
173 };
174
175 struct sr_datafeed_logic {
176         uint64_t length;
177         uint16_t unitsize;
178         void *data;
179 };
180
181 struct sr_datafeed_meta_analog {
182         int num_probes;
183 };
184
185 struct sr_datafeed_analog {
186         int num_samples;
187         float *data;
188 };
189
190 struct sr_input {
191         struct sr_input_format *format;
192         char *param;
193         struct sr_dev *vdev;
194 };
195
196 struct sr_input_format {
197         char *id;
198         char *description;
199         int (*format_match) (const char *filename);
200         int (*init) (struct sr_input *in);
201         int (*loadfile) (struct sr_input *in, const char *filename);
202 };
203
204 struct sr_output {
205         struct sr_output_format *format;
206         struct sr_dev *dev;
207         char *param;
208         void *internal;
209 };
210
211 struct sr_output_format {
212         char *id;
213         char *description;
214         int df_type;
215         int (*init) (struct sr_output *o);
216         int (*data) (struct sr_output *o, const uint8_t *data_in,
217                      uint64_t length_in, uint8_t **data_out,
218                      uint64_t *length_out);
219         int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
220                       uint64_t *length_out);
221 };
222
223 struct sr_datastore {
224         /* Size in bytes of the number of units stored in this datastore */
225         int ds_unitsize;
226         unsigned int num_units; /* TODO: uint64_t */
227         GSList *chunklist;
228 };
229
230 /*
231  * This represents a generic device connected to the system.
232  * For device-specific information, ask the driver. The driver_index refers
233  * to the device index within that driver; it may be handling more than one
234  * device. All relevant driver calls take a dev_index parameter for this.
235  */
236 struct sr_dev {
237         /* Which driver handles this device */
238         struct sr_dev_driver *driver;
239         /* A driver may handle multiple devices of the same type */
240         int driver_index;
241         /* List of struct sr_probe* */
242         GSList *probes;
243         /* Data acquired by this device, if any */
244         struct sr_datastore *datastore;
245 };
246
247 enum {
248         SR_PROBE_TYPE_LOGIC,
249 };
250
251 struct sr_probe {
252         int index;
253         int type;
254         gboolean enabled;
255         char *name;
256         char *trigger;
257 };
258
259 /* Hardware driver capabilities */
260 enum {
261         SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
262
263         /*--- Device classes ------------------------------------------------*/
264
265         /** The device can act as logic analyzer. */
266         SR_HWCAP_LOGIC_ANALYZER,
267
268         /** The device can act as an oscilloscope. */
269         SR_HWCAP_OSCILLOSCOPE,
270
271         /*--- Device types --------------------------------------------------*/
272
273         /** The device is demo device. */
274         SR_HWCAP_DEMO_DEV,
275
276         /*--- Device options ------------------------------------------------*/
277
278         /** The device supports setting/changing its samplerate. */
279         SR_HWCAP_SAMPLERATE,
280
281         /* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
282         /** The device supports setting a probe mask. */
283         SR_HWCAP_PROBECONFIG,
284
285         /** The device supports setting a pre/post-trigger capture ratio. */
286         SR_HWCAP_CAPTURE_RATIO,
287
288         /* TODO? */
289         /** The device supports setting a pattern (pattern generator mode). */
290         SR_HWCAP_PATTERN_MODE,
291
292         /** The device supports Run Length Encoding. */
293         SR_HWCAP_RLE,
294
295         /** The device supports setting trigger slope. */
296         SR_HWCAP_TRIGGERSLOPE,
297
298         /*--- Special stuff -------------------------------------------------*/
299
300         /* TODO: Better description. */
301         /** The device supports specifying a capturefile to inject. */
302         SR_HWCAP_CAPTUREFILE,
303
304         /* TODO: Better description. */
305         /** The device supports specifying the capturefile unit size. */
306         SR_HWCAP_CAPTURE_UNITSIZE,
307
308         /* TODO: Better description. */
309         /** The device supports setting the number of probes. */
310         SR_HWCAP_CAPTURE_NUM_PROBES,
311
312         /*--- Acquisition modes ---------------------------------------------*/
313
314         /**
315          * The device supports setting a sample time limit, i.e. how long the
316          * sample acquisition should run (in ms).
317          */
318         SR_HWCAP_LIMIT_MSEC,
319
320         /**
321          * The device supports setting a sample number limit, i.e. how many
322          * samples should be acquired.
323          */
324         SR_HWCAP_LIMIT_SAMPLES,
325
326         /**
327          * The device supports setting a frame limit, i.e. how many
328          * frames should be acquired.
329          */
330         SR_HWCAP_LIMIT_FRAMES,
331
332         /**
333          * The device supports continuous sampling, i.e. neither a time limit
334          * nor a sample number limit has to be supplied, it will just acquire
335          * samples continuously, until explicitly stopped by a certain command.
336          */
337         SR_HWCAP_CONTINUOUS,
338
339 };
340
341 struct sr_hwcap_option {
342         int hwcap;
343         int type;
344         char *description;
345         char *shortname;
346 };
347
348 struct sr_dev_inst {
349         int index;
350         int status;
351         int inst_type;
352         char *vendor;
353         char *model;
354         char *version;
355         void *priv;
356 };
357
358 /* sr_dev_inst types */
359 enum {
360         /** Device instance type for USB devices. */
361         SR_INST_USB,
362         /** Device instance type for serial port devices. */
363         SR_INST_SERIAL,
364 };
365
366 /* Device instance status */
367 enum {
368         SR_ST_NOT_FOUND,
369         /* Found, but still booting */
370         SR_ST_INITIALIZING,
371         /* Live, but not in use */
372         SR_ST_INACTIVE,
373         /* Actively in use in a session */
374         SR_ST_ACTIVE,
375 };
376
377 /*
378  * TODO: This sucks, you just kinda have to "know" the returned type.
379  * TODO: Need a DI to return the number of trigger stages supported.
380  */
381
382 /* Device info IDs */
383 enum {
384         /* struct sr_dev_inst for this specific device */
385         SR_DI_INST,
386         /* The number of probes connected to this device */
387         SR_DI_NUM_PROBES,
388         /* The probe names on this device */
389         SR_DI_PROBE_NAMES,
390         /* Samplerates supported by this device, (struct sr_samplerates) */
391         SR_DI_SAMPLERATES,
392         /* Types of trigger supported, out of "01crf" (char *) */
393         SR_DI_TRIGGER_TYPES,
394         /* The currently set samplerate in Hz (uint64_t) */
395         SR_DI_CUR_SAMPLERATE,
396         /* Supported patterns (in pattern generator mode) */
397         SR_DI_PATTERNS,
398 };
399
400 /*
401  * A device supports either a range of samplerates with steps of a given
402  * granularity, or is limited to a set of defined samplerates. Use either
403  * step or list, but not both.
404  */
405 struct sr_samplerates {
406         uint64_t low;
407         uint64_t high;
408         uint64_t step;
409         uint64_t *list;
410 };
411
412 struct sr_dev_driver {
413         /* Driver-specific */
414         char *name;
415         char *longname;
416         int api_version;
417         int (*init) (const char *devinfo);
418         int (*cleanup) (void);
419
420         /* Device-specific */
421         int (*dev_open) (int dev_index);
422         int (*dev_close) (int dev_index);
423         void *(*dev_info_get) (int dev_index, int dev_info_id);
424         int (*dev_status_get) (int dev_index);
425         int *(*hwcap_get_all) (void);
426         int (*dev_config_set) (int dev_index, int hwcap, void *value);
427         int (*dev_acquisition_start) (int dev_index, void *session_dev_id);
428         int (*dev_acquisition_stop) (int dev_index, void *session_dev_id);
429 };
430
431 struct sr_session {
432         /* List of struct sr_dev* */
433         GSList *devs;
434         /* list of sr_receive_data_callback_t */
435         GSList *datafeed_callbacks;
436         GTimeVal starttime;
437         gboolean running;
438 };
439
440 #include "sigrok-proto.h"
441
442 #ifdef __cplusplus
443 }
444 #endif
445
446 #endif