]> sigrok.org Git - libsigrok.git/blob - src/libsigrok-internal.h
serial: prepare serial over HID in common layer and build support
[libsigrok.git] / src / libsigrok-internal.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 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 /**
21  * @file
22  *
23  * @internal
24  */
25
26 #ifndef LIBSIGROK_LIBSIGROK_INTERNAL_H
27 #define LIBSIGROK_LIBSIGROK_INTERNAL_H
28
29 #include "config.h"
30
31 #include <glib.h>
32 #ifdef HAVE_LIBHIDAPI
33 #include <hidapi.h>
34 #endif
35 #ifdef HAVE_LIBSERIALPORT
36 #include <libserialport.h>
37 #endif
38 #ifdef HAVE_LIBUSB_1_0
39 #include <libusb.h>
40 #endif
41 #include <stdarg.h>
42 #include <stdint.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45
46 struct zip;
47 struct zip_stat;
48
49 /**
50  * @file
51  *
52  * libsigrok private header file, only to be used internally.
53  */
54
55 /*--- Macros ----------------------------------------------------------------*/
56
57 #ifndef ARRAY_SIZE
58 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
59 #endif
60
61 #ifndef ARRAY_AND_SIZE
62 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
63 #endif
64
65 /**
66  * Read a 8 bits unsigned integer out of memory.
67  * @param x a pointer to the input memory
68  * @return the corresponding unsigned integer
69  */
70 #define R8(x)     ((unsigned)((const uint8_t*)(x))[0])
71
72 /**
73  * Read a 16 bits big endian unsigned integer out of memory.
74  * @param x a pointer to the input memory
75  * @return the corresponding unsigned integer
76  */
77 #define RB16(x)  (((unsigned)((const uint8_t*)(x))[0] <<  8) | \
78                    (unsigned)((const uint8_t*)(x))[1])
79
80 /**
81  * Read a 16 bits little endian unsigned integer out of memory.
82  * @param x a pointer to the input memory
83  * @return the corresponding unsigned integer
84  */
85 #define RL16(x)  (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
86                    (unsigned)((const uint8_t*)(x))[0])
87
88 /**
89  * Read a 16 bits big endian signed integer out of memory.
90  * @param x a pointer to the input memory
91  * @return the corresponding signed integer
92  */
93 #define RB16S(x)  ((int16_t) \
94                   (((unsigned)((const uint8_t*)(x))[0] <<  8) | \
95                     (unsigned)((const uint8_t*)(x))[1]))
96
97 /**
98  * Read a 16 bits little endian signed integer out of memory.
99  * @param x a pointer to the input memory
100  * @return the corresponding signed integer
101  */
102 #define RL16S(x)  ((int16_t) \
103                   (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
104                     (unsigned)((const uint8_t*)(x))[0]))
105
106 /**
107  * Read a 32 bits big endian unsigned integer out of memory.
108  * @param x a pointer to the input memory
109  * @return the corresponding unsigned integer
110  */
111 #define RB32(x)  (((unsigned)((const uint8_t*)(x))[0] << 24) | \
112                   ((unsigned)((const uint8_t*)(x))[1] << 16) | \
113                   ((unsigned)((const uint8_t*)(x))[2] <<  8) | \
114                    (unsigned)((const uint8_t*)(x))[3])
115
116 /**
117  * Read a 32 bits little endian unsigned integer out of memory.
118  * @param x a pointer to the input memory
119  * @return the corresponding unsigned integer
120  */
121 #define RL32(x)  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
122                   ((unsigned)((const uint8_t*)(x))[2] << 16) | \
123                   ((unsigned)((const uint8_t*)(x))[1] <<  8) | \
124                    (unsigned)((const uint8_t*)(x))[0])
125
126 /**
127  * Read a 32 bits big endian signed integer out of memory.
128  * @param x a pointer to the input memory
129  * @return the corresponding signed integer
130  */
131 #define RB32S(x)  ((int32_t) \
132                  (((unsigned)((const uint8_t*)(x))[0] << 24) | \
133                   ((unsigned)((const uint8_t*)(x))[1] << 16) | \
134                   ((unsigned)((const uint8_t*)(x))[2] <<  8) | \
135                    (unsigned)((const uint8_t*)(x))[3]))
136
137 /**
138  * Read a 32 bits little endian signed integer out of memory.
139  * @param x a pointer to the input memory
140  * @return the corresponding signed integer
141  */
142 #define RL32S(x)  ((int32_t) \
143                  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
144                   ((unsigned)((const uint8_t*)(x))[2] << 16) | \
145                   ((unsigned)((const uint8_t*)(x))[1] <<  8) | \
146                    (unsigned)((const uint8_t*)(x))[0]))
147
148 /**
149  * Read a 64 bits big endian unsigned integer out of memory.
150  * @param x a pointer to the input memory
151  * @return the corresponding unsigned integer
152  */
153 #define RB64(x)  (((uint64_t)((const uint8_t*)(x))[0] << 56) | \
154                   ((uint64_t)((const uint8_t*)(x))[1] << 48) | \
155                   ((uint64_t)((const uint8_t*)(x))[2] << 40) | \
156                   ((uint64_t)((const uint8_t*)(x))[3] << 32) | \
157                   ((uint64_t)((const uint8_t*)(x))[4] << 24) | \
158                   ((uint64_t)((const uint8_t*)(x))[5] << 16) | \
159                   ((uint64_t)((const uint8_t*)(x))[6] <<  8) | \
160                    (uint64_t)((const uint8_t*)(x))[7])
161
162 /**
163  * Read a 64 bits little endian unsigned integer out of memory.
164  * @param x a pointer to the input memory
165  * @return the corresponding unsigned integer
166  */
167 #define RL64(x)  (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
168                   ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
169                   ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
170                   ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
171                   ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
172                   ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
173                   ((uint64_t)((const uint8_t*)(x))[1] <<  8) | \
174                    (uint64_t)((const uint8_t*)(x))[0])
175
176 /**
177  * Read a 64 bits little endian signed integer out of memory.
178  * @param x a pointer to the input memory
179  * @return the corresponding unsigned integer
180  */
181 #define RL64S(x)  ((int64_t) \
182                  (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
183                   ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
184                   ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
185                   ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
186                   ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
187                   ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
188                   ((uint64_t)((const uint8_t*)(x))[1] <<  8) | \
189                    (uint64_t)((const uint8_t*)(x))[0]))
190
191 /**
192  * Read a 32 bits big endian float out of memory.
193  * @param x a pointer to the input memory
194  * @return the corresponding float
195  */
196 #define RBFL(x)  ((union { uint32_t u; float f; }) { .u = RB32(x) }.f)
197
198 /**
199  * Read a 32 bits little endian float out of memory.
200  * @param x a pointer to the input memory
201  * @return the corresponding float
202  */
203 #define RLFL(x)  ((union { uint32_t u; float f; }) { .u = RL32(x) }.f)
204
205 /**
206  * Write a 8 bits unsigned integer to memory.
207  * @param p a pointer to the output memory
208  * @param x the input unsigned integer
209  */
210 #define W8(p, x)    do { ((uint8_t*)(p))[0] = (uint8_t) (x);      } while (0)
211
212 /**
213  * Write a 16 bits unsigned integer to memory stored as big endian.
214  * @param p a pointer to the output memory
215  * @param x the input unsigned integer
216  */
217 #define WB16(p, x)  do { ((uint8_t*)(p))[1] = (uint8_t) (x);      \
218                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>8);  } while (0)
219
220 /**
221  * Write a 16 bits unsigned integer to memory stored as little endian.
222  * @param p a pointer to the output memory
223  * @param x the input unsigned integer
224  */
225 #define WL16(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
226                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  } while (0)
227
228 /**
229  * Write a 32 bits unsigned integer to memory stored as big endian.
230  * @param p a pointer to the output memory
231  * @param x the input unsigned integer
232  */
233 #define WB32(p, x)  do { ((uint8_t*)(p))[3] = (uint8_t) (x);      \
234                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>8);  \
235                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>16); \
236                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>24); } while (0)
237
238 /**
239  * Write a 32 bits unsigned integer to memory stored as little endian.
240  * @param p a pointer to the output memory
241  * @param x the input unsigned integer
242  */
243 #define WL32(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
244                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  \
245                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>16); \
246                          ((uint8_t*)(p))[3] = (uint8_t)((x)>>24); } while (0)
247
248 /**
249  * Write a 32 bits float to memory stored as big endian.
250  * @param p a pointer to the output memory
251  * @param x the input float
252  */
253 #define WBFL(p, x)  WB32(p, (union { uint32_t u; float f; }) { .f = x }.u)
254
255 /**
256  * Write a 32 bits float to memory stored as little endian.
257  * @param p a pointer to the output memory
258  * @param x the input float
259  */
260 #define WLFL(p, x)  WL32(p, (union { uint32_t u; float f; }) { .f = x }.u)
261
262 /* Portability fixes for FreeBSD. */
263 #ifdef __FreeBSD__
264 #define LIBUSB_CLASS_APPLICATION 0xfe
265 #define libusb_has_capability(x) 0
266 #define libusb_handle_events_timeout_completed(ctx, tv, c) \
267         libusb_handle_events_timeout(ctx, tv)
268 #endif
269
270 /* Static definitions of structs ending with an all-zero entry are a
271  * problem when compiling with -Wmissing-field-initializers: GCC
272  * suppresses the warning only with { 0 }, clang wants { } */
273 #ifdef __clang__
274 #define ALL_ZERO { }
275 #else
276 #define ALL_ZERO { 0 }
277 #endif
278
279 #ifdef __APPLE__
280 #define SR_DRIVER_LIST_SECTION "__DATA,__sr_driver_list"
281 #else
282 #define SR_DRIVER_LIST_SECTION "sr_driver_list"
283 #endif
284
285 /**
286  * Register a list of hardware drivers.
287  *
288  * This macro can be used to register multiple hardware drivers to the library.
289  * This is useful when a driver supports multiple similar but slightly
290  * different devices that require different sr_dev_driver struct definitions.
291  *
292  * For registering only a single driver see SR_REGISTER_DEV_DRIVER().
293  *
294  * Example:
295  * @code{c}
296  * #define MY_DRIVER(_name) \
297  *     &(struct sr_dev_driver){ \
298  *         .name = _name, \
299  *         ...
300  *     };
301  *
302  * SR_REGISTER_DEV_DRIVER_LIST(my_driver_infos,
303  *     MY_DRIVER("driver 1"),
304  *     MY_DRIVER("driver 2"),
305  *     ...
306  * );
307  * @endcode
308  *
309  * @param name Name to use for the driver list identifier.
310  * @param ... Comma separated list of pointers to sr_dev_driver structs.
311  */
312 #define SR_REGISTER_DEV_DRIVER_LIST(name, ...) \
313         static const struct sr_dev_driver *name[] \
314                 __attribute__((section (SR_DRIVER_LIST_SECTION), used, \
315                         aligned(sizeof(struct sr_dev_driver *)))) \
316                 = { \
317                         __VA_ARGS__ \
318                 };
319
320 /**
321  * Register a hardware driver.
322  *
323  * This macro is used to register a hardware driver with the library. It has
324  * to be used in order to make the driver accessible to applications using the
325  * library.
326  *
327  * The macro invocation should be placed directly under the struct
328  * sr_dev_driver definition.
329  *
330  * Example:
331  * @code{c}
332  * static struct sr_dev_driver driver_info = {
333  *     .name = "driver",
334  *     ....
335  * };
336  * SR_REGISTER_DEV_DRIVER(driver_info);
337  * @endcode
338  *
339  * @param name Identifier name of sr_dev_driver struct to register.
340  */
341 #define SR_REGISTER_DEV_DRIVER(name) \
342         SR_REGISTER_DEV_DRIVER_LIST(name##_list, &name);
343
344 SR_API void sr_drivers_init(struct sr_context *context);
345
346 struct sr_context {
347         struct sr_dev_driver **driver_list;
348 #ifdef HAVE_LIBUSB_1_0
349         libusb_context *libusb_ctx;
350 #endif
351         sr_resource_open_callback resource_open_cb;
352         sr_resource_close_callback resource_close_cb;
353         sr_resource_read_callback resource_read_cb;
354         void *resource_cb_data;
355 };
356
357 /** Input module metadata keys. */
358 enum sr_input_meta_keys {
359         /** The input filename, if there is one. */
360         SR_INPUT_META_FILENAME = 0x01,
361         /** The input file's size in bytes. */
362         SR_INPUT_META_FILESIZE = 0x02,
363         /** The first 128 bytes of the file, provided as a GString. */
364         SR_INPUT_META_HEADER = 0x04,
365
366         /** The module cannot identify a file without this metadata. */
367         SR_INPUT_META_REQUIRED = 0x80,
368 };
369
370 /** Input (file) module struct. */
371 struct sr_input {
372         /**
373          * A pointer to this input module's 'struct sr_input_module'.
374          */
375         const struct sr_input_module *module;
376         GString *buf;
377         struct sr_dev_inst *sdi;
378         gboolean sdi_ready;
379         void *priv;
380 };
381
382 /** Input (file) module driver. */
383 struct sr_input_module {
384         /**
385          * A unique ID for this input module, suitable for use in command-line
386          * clients, [a-z0-9-]. Must not be NULL.
387          */
388         const char *id;
389
390         /**
391          * A unique name for this input module, suitable for use in GUI
392          * clients, can contain UTF-8. Must not be NULL.
393          */
394         const char *name;
395
396         /**
397          * A short description of the input module. Must not be NULL.
398          *
399          * This can be displayed by frontends, e.g. when selecting the input
400          * module for saving a file.
401          */
402         const char *desc;
403
404         /**
405          * A NULL terminated array of strings containing a list of file name
406          * extensions typical for the input file format, or NULL if there is
407          * no typical extension for this file format.
408          */
409         const char *const *exts;
410
411         /**
412          * Zero-terminated list of metadata items the module needs to be able
413          * to identify an input stream. Can be all-zero, if the module cannot
414          * identify streams at all, i.e. has to be forced into use.
415          *
416          * Each item is one of:
417          *   SR_INPUT_META_FILENAME
418          *   SR_INPUT_META_FILESIZE
419          *   SR_INPUT_META_HEADER
420          *
421          * If the high bit (SR_INPUT META_REQUIRED) is set, the module cannot
422          * identify a stream without the given metadata.
423          */
424         const uint8_t metadata[8];
425
426         /**
427          * Returns a NULL-terminated list of options this module can take.
428          * Can be NULL, if the module has no options.
429          */
430         const struct sr_option *(*options) (void);
431
432         /**
433          * Check if this input module can load and parse the specified stream.
434          *
435          * @param[in] metadata Metadata the module can use to identify the stream.
436          * @param[out] confidence "Strength" of the detection.
437          *   Specialized handlers can take precedence over generic/basic support.
438          *
439          * @retval SR_OK This module knows the format.
440          * @retval SR_ERR_NA There wasn't enough data for this module to
441          *   positively identify the format.
442          * @retval SR_ERR_DATA This module knows the format, but cannot handle
443          *   it. This means the stream is either corrupt, or indicates a
444          *   feature that the module does not support.
445          * @retval SR_ERR This module does not know the format.
446          *
447          * Lower numeric values of 'confidence' mean that the input module
448          * stronger believes in its capability to handle this specific format.
449          * This way, multiple input modules can claim support for a format,
450          * and the application can pick the best match, or try fallbacks
451          * in case of errors. This approach also copes with formats that
452          * are unreliable to detect in the absence of magic signatures.
453          */
454         int (*format_match) (GHashTable *metadata, unsigned int *confidence);
455
456         /**
457          * Initialize the input module.
458          *
459          * @retval SR_OK Success
460          * @retval other Negative error code.
461          */
462         int (*init) (struct sr_input *in, GHashTable *options);
463
464         /**
465          * Send data to the specified input instance.
466          *
467          * When an input module instance is created with sr_input_new(), this
468          * function is used to feed data to the instance.
469          *
470          * As enough data gets fed into this function to completely populate
471          * the device instance associated with this input instance, this is
472          * guaranteed to return the moment it's ready. This gives the caller
473          * the chance to examine the device instance, attach session callbacks
474          * and so on.
475          *
476          * @retval SR_OK Success
477          * @retval other Negative error code.
478          */
479         int (*receive) (struct sr_input *in, GString *buf);
480
481         /**
482          * Signal the input module no more data will come.
483          *
484          * This will cause the module to process any data it may have buffered.
485          * The SR_DF_END packet will also typically be sent at this time.
486          */
487         int (*end) (struct sr_input *in);
488
489         /**
490          * Reset the input module's input handling structures.
491          *
492          * Causes the input module to reset its internal state so that we can
493          * re-send the input data from the beginning without having to
494          * re-create the entire input module.
495          *
496          * @retval SR_OK Success.
497          * @retval other Negative error code.
498          */
499         int (*reset) (struct sr_input *in);
500
501         /**
502          * This function is called after the caller is finished using
503          * the input module, and can be used to free any internal
504          * resources the module may keep.
505          *
506          * This function is optional.
507          *
508          * @retval SR_OK Success
509          * @retval other Negative error code.
510          */
511         void (*cleanup) (struct sr_input *in);
512 };
513
514 /** Output module instance. */
515 struct sr_output {
516         /** A pointer to this output's module. */
517         const struct sr_output_module *module;
518
519         /**
520          * The device for which this output module is creating output. This
521          * can be used by the module to find out channel names and numbers.
522          */
523         const struct sr_dev_inst *sdi;
524
525         /**
526          * The name of the file that the data should be written to.
527          */
528         const char *filename;
529
530         /**
531          * A generic pointer which can be used by the module to keep internal
532          * state between calls into its callback functions.
533          *
534          * For example, the module might store a pointer to a chunk of output
535          * there, and only flush it when it reaches a certain size.
536          */
537         void *priv;
538 };
539
540 /** Output module driver. */
541 struct sr_output_module {
542         /**
543          * A unique ID for this output module, suitable for use in command-line
544          * clients, [a-z0-9-]. Must not be NULL.
545          */
546         const char *id;
547
548         /**
549          * A unique name for this output module, suitable for use in GUI
550          * clients, can contain UTF-8. Must not be NULL.
551          */
552         const char *name;
553
554         /**
555          * A short description of the output module. Must not be NULL.
556          *
557          * This can be displayed by frontends, e.g. when selecting the output
558          * module for saving a file.
559          */
560         const char *desc;
561
562         /**
563          * A NULL terminated array of strings containing a list of file name
564          * extensions typical for the input file format, or NULL if there is
565          * no typical extension for this file format.
566          */
567         const char *const *exts;
568
569         /**
570          * Bitfield containing flags that describe certain properties
571          * this output module may or may not have.
572          * @see sr_output_flags
573          */
574         const uint64_t flags;
575
576         /**
577          * Returns a NULL-terminated list of options this module can take.
578          * Can be NULL, if the module has no options.
579          */
580         const struct sr_option *(*options) (void);
581
582         /**
583          * This function is called once, at the beginning of an output stream.
584          *
585          * The device struct will be available in the output struct passed in,
586          * as well as the param field -- which may be NULL or an empty string,
587          * if no parameter was passed.
588          *
589          * The module can use this to initialize itself, create a struct for
590          * keeping state and storing it in the <code>internal</code> field.
591          *
592          * @param o Pointer to the respective 'struct sr_output'.
593          *
594          * @retval SR_OK Success
595          * @retval other Negative error code.
596          */
597         int (*init) (struct sr_output *o, GHashTable *options);
598
599         /**
600          * This function is passed a copy of every packet in the data feed.
601          * Any output generated by the output module in response to the
602          * packet should be returned in a newly allocated GString
603          * <code>out</code>, which will be freed by the caller.
604          *
605          * Packets not of interest to the output module can just be ignored,
606          * and the <code>out</code> parameter set to NULL.
607          *
608          * @param o Pointer to the respective 'struct sr_output'.
609          * @param sdi The device instance that generated the packet.
610          * @param packet The complete packet.
611          * @param out A pointer where a GString * should be stored if
612          * the module generates output, or NULL if not.
613          *
614          * @retval SR_OK Success
615          * @retval other Negative error code.
616          */
617         int (*receive) (const struct sr_output *o,
618                         const struct sr_datafeed_packet *packet, GString **out);
619
620         /**
621          * This function is called after the caller is finished using
622          * the output module, and can be used to free any internal
623          * resources the module may keep.
624          *
625          * @retval SR_OK Success
626          * @retval other Negative error code.
627          */
628         int (*cleanup) (struct sr_output *o);
629 };
630
631 /** Transform module instance. */
632 struct sr_transform {
633         /** A pointer to this transform's module. */
634         const struct sr_transform_module *module;
635
636         /**
637          * The device for which this transform module is used. This
638          * can be used by the module to find out channel names and numbers.
639          */
640         const struct sr_dev_inst *sdi;
641
642         /**
643          * A generic pointer which can be used by the module to keep internal
644          * state between calls into its callback functions.
645          */
646         void *priv;
647 };
648
649 struct sr_transform_module {
650         /**
651          * A unique ID for this transform module, suitable for use in
652          * command-line clients, [a-z0-9-]. Must not be NULL.
653          */
654         const char *id;
655
656         /**
657          * A unique name for this transform module, suitable for use in GUI
658          * clients, can contain UTF-8. Must not be NULL.
659          */
660         const char *name;
661
662         /**
663          * A short description of the transform module. Must not be NULL.
664          *
665          * This can be displayed by frontends, e.g. when selecting
666          * which transform module(s) to add.
667          */
668         const char *desc;
669
670         /**
671          * Returns a NULL-terminated list of options this transform module
672          * can take. Can be NULL, if the transform module has no options.
673          */
674         const struct sr_option *(*options) (void);
675
676         /**
677          * This function is called once, at the beginning of a stream.
678          *
679          * @param t Pointer to the respective 'struct sr_transform'.
680          * @param options Hash table of options for this transform module.
681          *                Can be NULL if no options are to be used.
682          *
683          * @retval SR_OK Success
684          * @retval other Negative error code.
685          */
686         int (*init) (struct sr_transform *t, GHashTable *options);
687
688         /**
689          * This function is passed a pointer to every packet in the data feed.
690          *
691          * It can either return (in packet_out) a pointer to another packet
692          * (possibly the exact same packet it got as input), or NULL.
693          *
694          * @param t Pointer to the respective 'struct sr_transform'.
695          * @param packet_in Pointer to a datafeed packet.
696          * @param packet_out Pointer to the resulting datafeed packet after
697          *                   this function was run. If NULL, the transform
698          *                   module intentionally didn't output a new packet.
699          *
700          * @retval SR_OK Success
701          * @retval other Negative error code.
702          */
703         int (*receive) (const struct sr_transform *t,
704                         struct sr_datafeed_packet *packet_in,
705                         struct sr_datafeed_packet **packet_out);
706
707         /**
708          * This function is called after the caller is finished using
709          * the transform module, and can be used to free any internal
710          * resources the module may keep.
711          *
712          * @retval SR_OK Success
713          * @retval other Negative error code.
714          */
715         int (*cleanup) (struct sr_transform *t);
716 };
717
718 #ifdef HAVE_LIBUSB_1_0
719 /** USB device instance */
720 struct sr_usb_dev_inst {
721         /** USB bus */
722         uint8_t bus;
723         /** Device address on USB bus */
724         uint8_t address;
725         /** libusb device handle */
726         struct libusb_device_handle *devhdl;
727 };
728 #endif
729
730 struct sr_serial_dev_inst;
731 #ifdef HAVE_SERIAL_COMM
732 struct ser_lib_functions;
733 struct sr_serial_dev_inst {
734         /** Port name, e.g. '/dev/tty42'. */
735         char *port;
736         /** Comm params for serial_set_paramstr(). */
737         char *serialcomm;
738         struct ser_lib_functions *lib_funcs;
739         struct {
740                 int bit_rate;
741                 int data_bits;
742                 int parity_bits;
743                 int stop_bits;
744         } comm_params;
745         GString *rcv_buffer;
746 #ifdef HAVE_LIBSERIALPORT
747         /** libserialport port handle */
748         struct sp_port *sp_data;
749 #endif
750 #ifdef HAVE_LIBHIDAPI
751         /* TODO */
752         hid_device *hid_dev;
753 #endif
754 };
755 #endif
756
757 struct sr_usbtmc_dev_inst {
758         char *device;
759         int fd;
760 };
761
762 /* Private driver context. */
763 struct drv_context {
764         /** sigrok context */
765         struct sr_context *sr_ctx;
766         GSList *instances;
767 };
768
769 /*--- log.c -----------------------------------------------------------------*/
770
771 #if defined(_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
772 /*
773  * On MinGW, we need to specify the gnu_printf format flavor or GCC
774  * will assume non-standard Microsoft printf syntax.
775  */
776 SR_PRIV int sr_log(int loglevel, const char *format, ...)
777                 __attribute__((__format__ (__gnu_printf__, 2, 3)));
778 #else
779 SR_PRIV int sr_log(int loglevel, const char *format, ...) G_GNUC_PRINTF(2, 3);
780 #endif
781
782 /* Message logging helpers with subsystem-specific prefix string. */
783 #define sr_spew(...)    sr_log(SR_LOG_SPEW, LOG_PREFIX ": " __VA_ARGS__)
784 #define sr_dbg(...)     sr_log(SR_LOG_DBG,  LOG_PREFIX ": " __VA_ARGS__)
785 #define sr_info(...)    sr_log(SR_LOG_INFO, LOG_PREFIX ": " __VA_ARGS__)
786 #define sr_warn(...)    sr_log(SR_LOG_WARN, LOG_PREFIX ": " __VA_ARGS__)
787 #define sr_err(...)     sr_log(SR_LOG_ERR,  LOG_PREFIX ": " __VA_ARGS__)
788
789 /*--- device.c --------------------------------------------------------------*/
790
791 /** Scan options supported by a driver. */
792 #define SR_CONF_SCAN_OPTIONS 0x7FFF0000
793
794 /** Device options for a particular device. */
795 #define SR_CONF_DEVICE_OPTIONS 0x7FFF0001
796
797 /** Mask for separating config keys from capabilities. */
798 #define SR_CONF_MASK 0x1fffffff
799
800 /** Values for the changes argument of sr_dev_driver.config_channel_set. */
801 enum {
802         /** The enabled state of the channel has been changed. */
803         SR_CHANNEL_SET_ENABLED = 1 << 0,
804 };
805
806 SR_PRIV struct sr_channel *sr_channel_new(struct sr_dev_inst *sdi,
807                 int index, int type, gboolean enabled, const char *name);
808 SR_PRIV void sr_channel_free(struct sr_channel *ch);
809 SR_PRIV void sr_channel_free_cb(void *p);
810 SR_PRIV struct sr_channel *sr_next_enabled_channel(const struct sr_dev_inst *sdi,
811                 struct sr_channel *cur_channel);
812 SR_PRIV gboolean sr_channels_differ(struct sr_channel *ch1, struct sr_channel *ch2);
813 SR_PRIV gboolean sr_channel_lists_differ(GSList *l1, GSList *l2);
814
815 /** Device instance data */
816 struct sr_dev_inst {
817         /** Device driver. */
818         struct sr_dev_driver *driver;
819         /** Device instance status. SR_ST_NOT_FOUND, etc. */
820         int status;
821         /** Device instance type. SR_INST_USB, etc. */
822         int inst_type;
823         /** Device vendor. */
824         char *vendor;
825         /** Device model. */
826         char *model;
827         /** Device version. */
828         char *version;
829         /** Serial number. */
830         char *serial_num;
831         /** Connection string to uniquely identify devices. */
832         char *connection_id;
833         /** List of channels. */
834         GSList *channels;
835         /** List of sr_channel_group structs */
836         GSList *channel_groups;
837         /** Device instance connection data (used?) */
838         void *conn;
839         /** Device instance private data (used?) */
840         void *priv;
841         /** Session to which this device is currently assigned. */
842         struct sr_session *session;
843 };
844
845 /* Generic device instances */
846 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
847
848 #ifdef HAVE_LIBUSB_1_0
849 /* USB-specific instances */
850 SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
851                 uint8_t address, struct libusb_device_handle *hdl);
852 SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb);
853 #endif
854
855 #ifdef HAVE_SERIAL_COMM
856 #ifndef HAVE_LIBSERIALPORT
857 /*
858  * Some identifiers which initially got provided by libserialport are
859  * used internally within the libsigrok serial layer's implementation,
860  * while libserialport no longer is the exclusive provider of serial
861  * communication support. Declare the identifiers here so they remain
862  * available across all build configurations.
863  */
864 enum libsp_parity {
865         SP_PARITY_NONE = 0,
866         SP_PARITY_ODD = 1,
867         SP_PARITY_EVEN = 2,
868         SP_PARITY_MARK = 3,
869         SP_PARITY_SPACE = 4,
870 };
871
872 enum libsp_flowcontrol {
873         SP_FLOWCONTROL_NONE = 0,
874         SP_FLOWCONTROL_XONXOFF = 1,
875         SP_FLOWCONTROL_RTSCTS = 2,
876         SP_FLOWCONTROL_DTRDSR = 3,
877 };
878 #endif
879
880 /* Serial-specific instances */
881 SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
882                 const char *serialcomm);
883 SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial);
884 #endif
885
886 /* USBTMC-specific instances */
887 SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device);
888 SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc);
889
890 /*--- hwdriver.c ------------------------------------------------------------*/
891
892 SR_PRIV const GVariantType *sr_variant_type_get(int datatype);
893 SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *data);
894 SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx);
895 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data);
896 SR_PRIV void sr_config_free(struct sr_config *src);
897 SR_PRIV int sr_dev_acquisition_start(struct sr_dev_inst *sdi);
898 SR_PRIV int sr_dev_acquisition_stop(struct sr_dev_inst *sdi);
899
900 /*--- session.c -------------------------------------------------------------*/
901
902 struct sr_session {
903         /** Context this session exists in. */
904         struct sr_context *ctx;
905         /** List of struct sr_dev_inst pointers. */
906         GSList *devs;
907         /** List of struct sr_dev_inst pointers owned by this session. */
908         GSList *owned_devs;
909         /** List of struct datafeed_callback pointers. */
910         GSList *datafeed_callbacks;
911         GSList *transforms;
912         struct sr_trigger *trigger;
913
914         /** Callback to invoke on session stop. */
915         sr_session_stopped_callback stopped_callback;
916         /** User data to be passed to the session stop callback. */
917         void *stopped_cb_data;
918
919         /** Mutex protecting the main context pointer. */
920         GMutex main_mutex;
921         /** Context of the session main loop. */
922         GMainContext *main_context;
923
924         /** Registered event sources for this session. */
925         GHashTable *event_sources;
926         /** Session main loop. */
927         GMainLoop *main_loop;
928         /** ID of idle source for dispatching the session stop notification. */
929         unsigned int stop_check_id;
930         /** Whether the session has been started. */
931         gboolean running;
932 };
933
934 SR_PRIV int sr_session_source_add_internal(struct sr_session *session,
935                 void *key, GSource *source);
936 SR_PRIV int sr_session_source_remove_internal(struct sr_session *session,
937                 void *key);
938 SR_PRIV int sr_session_source_destroyed(struct sr_session *session,
939                 void *key, GSource *source);
940 SR_PRIV int sr_session_fd_source_add(struct sr_session *session,
941                 void *key, gintptr fd, int events, int timeout,
942                 sr_receive_data_callback cb, void *cb_data);
943
944 SR_PRIV int sr_session_source_add(struct sr_session *session, int fd,
945                 int events, int timeout, sr_receive_data_callback cb, void *cb_data);
946 SR_PRIV int sr_session_source_add_pollfd(struct sr_session *session,
947                 GPollFD *pollfd, int timeout, sr_receive_data_callback cb,
948                 void *cb_data);
949 SR_PRIV int sr_session_source_add_channel(struct sr_session *session,
950                 GIOChannel *channel, int events, int timeout,
951                 sr_receive_data_callback cb, void *cb_data);
952 SR_PRIV int sr_session_source_remove(struct sr_session *session, int fd);
953 SR_PRIV int sr_session_source_remove_pollfd(struct sr_session *session,
954                 GPollFD *pollfd);
955 SR_PRIV int sr_session_source_remove_channel(struct sr_session *session,
956                 GIOChannel *channel);
957
958 SR_PRIV int sr_session_send_meta(const struct sr_dev_inst *sdi,
959                 uint32_t key, GVariant *var);
960 SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
961                 const struct sr_datafeed_packet *packet);
962 SR_PRIV int sr_sessionfile_check(const char *filename);
963 SR_PRIV struct sr_dev_inst *sr_session_prepare_sdi(const char *filename,
964                 struct sr_session **session);
965
966 /*--- session_file.c --------------------------------------------------------*/
967
968 #if !HAVE_ZIP_DISCARD
969 /* Replace zip_discard() if not available. */
970 #define zip_discard(zip) sr_zip_discard(zip)
971 SR_PRIV void sr_zip_discard(struct zip *archive);
972 #endif
973
974 SR_PRIV GKeyFile *sr_sessionfile_read_metadata(struct zip *archive,
975                         const struct zip_stat *entry);
976
977 /*--- analog.c --------------------------------------------------------------*/
978
979 SR_PRIV int sr_analog_init(struct sr_datafeed_analog *analog,
980                            struct sr_analog_encoding *encoding,
981                            struct sr_analog_meaning *meaning,
982                            struct sr_analog_spec *spec,
983                            int digits);
984
985 /*--- std.c -----------------------------------------------------------------*/
986
987 typedef int (*dev_close_callback)(struct sr_dev_inst *sdi);
988 typedef void (*std_dev_clear_callback)(void *priv);
989
990 SR_PRIV int std_init(struct sr_dev_driver *di, struct sr_context *sr_ctx);
991 SR_PRIV int std_cleanup(const struct sr_dev_driver *di);
992 SR_PRIV int std_dummy_dev_open(struct sr_dev_inst *sdi);
993 SR_PRIV int std_dummy_dev_close(struct sr_dev_inst *sdi);
994 SR_PRIV int std_dummy_dev_acquisition_start(const struct sr_dev_inst *sdi);
995 SR_PRIV int std_dummy_dev_acquisition_stop(struct sr_dev_inst *sdi);
996 #ifdef HAVE_SERIAL_COMM
997 SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi);
998 SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi);
999 #endif
1000 SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi);
1001 SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi);
1002 SR_PRIV int std_session_send_frame_begin(const struct sr_dev_inst *sdi);
1003 SR_PRIV int std_session_send_frame_end(const struct sr_dev_inst *sdi);
1004 SR_PRIV int std_dev_clear_with_callback(const struct sr_dev_driver *driver,
1005                 std_dev_clear_callback clear_private);
1006 SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver);
1007 SR_PRIV GSList *std_dev_list(const struct sr_dev_driver *di);
1008 SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi);
1009 SR_PRIV GSList *std_scan_complete(struct sr_dev_driver *di, GSList *devices);
1010
1011 SR_PRIV int std_opts_config_list(uint32_t key, GVariant **data,
1012         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg,
1013         const uint32_t scanopts[], size_t scansize, const uint32_t drvopts[],
1014         size_t drvsize, const uint32_t devopts[], size_t devsize);
1015
1016 extern SR_PRIV const uint32_t NO_OPTS[1];
1017
1018 #define STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts) \
1019         std_opts_config_list(key, data, sdi, cg, ARRAY_AND_SIZE(scanopts), \
1020                 ARRAY_AND_SIZE(drvopts), ARRAY_AND_SIZE(devopts))
1021
1022 SR_PRIV GVariant *std_gvar_tuple_array(const uint64_t a[][2], unsigned int n);
1023 SR_PRIV GVariant *std_gvar_tuple_rational(const struct sr_rational *r, unsigned int n);
1024 SR_PRIV GVariant *std_gvar_samplerates(const uint64_t samplerates[], unsigned int n);
1025 SR_PRIV GVariant *std_gvar_samplerates_steps(const uint64_t samplerates[], unsigned int n);
1026 SR_PRIV GVariant *std_gvar_min_max_step(double min, double max, double step);
1027 SR_PRIV GVariant *std_gvar_min_max_step_array(const double a[3]);
1028 SR_PRIV GVariant *std_gvar_min_max_step_thresholds(const double dmin, const double dmax, const double dstep);
1029
1030 SR_PRIV GVariant *std_gvar_tuple_u64(uint64_t low, uint64_t high);
1031 SR_PRIV GVariant *std_gvar_tuple_double(double low, double high);
1032
1033 SR_PRIV GVariant *std_gvar_array_i32(const int32_t a[], unsigned int n);
1034 SR_PRIV GVariant *std_gvar_array_u32(const uint32_t a[], unsigned int n);
1035 SR_PRIV GVariant *std_gvar_array_u64(const uint64_t a[], unsigned int n);
1036 SR_PRIV GVariant *std_gvar_array_str(const char *a[], unsigned int n);
1037
1038 SR_PRIV GVariant *std_gvar_thresholds(const double a[][2], unsigned int n);
1039
1040 SR_PRIV int std_str_idx(GVariant *data, const char *a[], unsigned int n);
1041 SR_PRIV int std_u64_idx(GVariant *data, const uint64_t a[], unsigned int n);
1042 SR_PRIV int std_u8_idx(GVariant *data, const uint8_t a[], unsigned int n);
1043
1044 SR_PRIV int std_str_idx_s(const char *s, const char *a[], unsigned int n);
1045 SR_PRIV int std_u8_idx_s(uint8_t b, const uint8_t a[], unsigned int n);
1046
1047 SR_PRIV int std_u64_tuple_idx(GVariant *data, const uint64_t a[][2], unsigned int n);
1048 SR_PRIV int std_double_tuple_idx(GVariant *data, const double a[][2], unsigned int n);
1049 SR_PRIV int std_double_tuple_idx_d0(const double d, const double a[][2], unsigned int n);
1050
1051 SR_PRIV int std_cg_idx(const struct sr_channel_group *cg, struct sr_channel_group *a[], unsigned int n);
1052
1053 /*--- resource.c ------------------------------------------------------------*/
1054
1055 SR_PRIV int64_t sr_file_get_size(FILE *file);
1056
1057 SR_PRIV int sr_resource_open(struct sr_context *ctx,
1058                 struct sr_resource *res, int type, const char *name)
1059                 G_GNUC_WARN_UNUSED_RESULT;
1060 SR_PRIV int sr_resource_close(struct sr_context *ctx,
1061                 struct sr_resource *res);
1062 SR_PRIV gssize sr_resource_read(struct sr_context *ctx,
1063                 const struct sr_resource *res, void *buf, size_t count)
1064                 G_GNUC_WARN_UNUSED_RESULT;
1065 SR_PRIV void *sr_resource_load(struct sr_context *ctx, int type,
1066                 const char *name, size_t *size, size_t max_size)
1067                 G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
1068
1069 /*--- strutil.c -------------------------------------------------------------*/
1070
1071 SR_PRIV int sr_atol(const char *str, long *ret);
1072 SR_PRIV int sr_atoi(const char *str, int *ret);
1073 SR_PRIV int sr_atod(const char *str, double *ret);
1074 SR_PRIV int sr_atof(const char *str, float *ret);
1075 SR_PRIV int sr_atod_ascii(const char *str, double *ret);
1076 SR_PRIV int sr_atof_ascii(const char *str, float *ret);
1077
1078 SR_PRIV GString *sr_hexdump_new(const uint8_t *data, const size_t len);
1079 SR_PRIV void sr_hexdump_free(GString *s);
1080
1081 /*--- soft-trigger.c --------------------------------------------------------*/
1082
1083 struct soft_trigger_logic {
1084         const struct sr_dev_inst *sdi;
1085         const struct sr_trigger *trigger;
1086         int count;
1087         int unitsize;
1088         int cur_stage;
1089         uint8_t *prev_sample;
1090         uint8_t *pre_trigger_buffer;
1091         uint8_t *pre_trigger_head;
1092         int pre_trigger_size;
1093         int pre_trigger_fill;
1094 };
1095
1096 SR_PRIV int logic_channel_unitsize(GSList *channels);
1097 SR_PRIV struct soft_trigger_logic *soft_trigger_logic_new(
1098                 const struct sr_dev_inst *sdi, struct sr_trigger *trigger,
1099                 int pre_trigger_samples);
1100 SR_PRIV void soft_trigger_logic_free(struct soft_trigger_logic *st);
1101 SR_PRIV int soft_trigger_logic_check(struct soft_trigger_logic *st, uint8_t *buf,
1102                 int len, int *pre_trigger_samples);
1103
1104 /*--- serial.c --------------------------------------------------------------*/
1105
1106 #ifdef HAVE_SERIAL_COMM
1107 enum {
1108         SERIAL_RDWR = 1,
1109         SERIAL_RDONLY = 2,
1110 };
1111
1112 typedef gboolean (*packet_valid_callback)(const uint8_t *buf);
1113
1114 typedef GSList *(*sr_ser_list_append_t)(GSList *devs, const char *name,
1115                 const char *desc);
1116 typedef GSList *(*sr_ser_find_append_t)(GSList *devs, const char *name);
1117
1118 SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags);
1119 SR_PRIV int serial_close(struct sr_serial_dev_inst *serial);
1120 SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial);
1121 SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial);
1122 SR_PRIV size_t serial_has_receive_data(struct sr_serial_dev_inst *serial);
1123 SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
1124                 const void *buf, size_t count, unsigned int timeout_ms);
1125 SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
1126                 const void *buf, size_t count);
1127 SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial, void *buf,
1128                 size_t count, unsigned int timeout_ms);
1129 SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial, void *buf,
1130                 size_t count);
1131 SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
1132                 int bits, int parity, int stopbits, int flowcontrol, int rts, int dtr);
1133 SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
1134                 const char *paramstr);
1135 SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial, char **buf,
1136                 int *buflen, gint64 timeout_ms);
1137 SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
1138                                  uint8_t *buf, size_t *buflen,
1139                                  size_t packet_size,
1140                                  packet_valid_callback is_valid,
1141                                  uint64_t timeout_ms, int baudrate);
1142 SR_PRIV int sr_serial_extract_options(GSList *options, const char **serial_device,
1143                                       const char **serial_options);
1144 SR_PRIV int serial_source_add(struct sr_session *session,
1145                 struct sr_serial_dev_inst *serial, int events, int timeout,
1146                 sr_receive_data_callback cb, void *cb_data);
1147 SR_PRIV int serial_source_remove(struct sr_session *session,
1148                 struct sr_serial_dev_inst *serial);
1149 SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id);
1150 SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes);
1151
1152 SR_PRIV void sr_ser_discard_queued_data(struct sr_serial_dev_inst *serial);
1153 SR_PRIV size_t sr_ser_has_queued_data(struct sr_serial_dev_inst *serial);
1154 SR_PRIV void sr_ser_queue_rx_data(struct sr_serial_dev_inst *serial,
1155                 const uint8_t *data, size_t len);
1156 SR_PRIV size_t sr_ser_unqueue_rx_data(struct sr_serial_dev_inst *serial,
1157                 uint8_t *data, size_t len);
1158
1159 struct ser_lib_functions {
1160         int (*open)(struct sr_serial_dev_inst *serial, int flags);
1161         int (*close)(struct sr_serial_dev_inst *serial);
1162         int (*flush)(struct sr_serial_dev_inst *serial);
1163         int (*drain)(struct sr_serial_dev_inst *serial);
1164         int (*write)(struct sr_serial_dev_inst *serial,
1165                         const void *buf, size_t count,
1166                         int nonblocking, unsigned int timeout_ms);
1167         int (*read)(struct sr_serial_dev_inst *serial,
1168                         void *buf, size_t count,
1169                         int nonblocking, unsigned int timeout_ms);
1170         int (*set_params)(struct sr_serial_dev_inst *serial,
1171                         int baudrate, int bits, int parity, int stopbits,
1172                         int flowcontrol, int rts, int dtr);
1173         int (*setup_source_add)(struct sr_session *session,
1174                         struct sr_serial_dev_inst *serial,
1175                         int events, int timeout,
1176                         sr_receive_data_callback cb, void *cb_data);
1177         int (*setup_source_remove)(struct sr_session *session,
1178                         struct sr_serial_dev_inst *serial);
1179         GSList *(*list)(GSList *list, sr_ser_list_append_t append);
1180         GSList *(*find_usb)(GSList *list, sr_ser_find_append_t append,
1181                         uint16_t vendor_id, uint16_t product_id);
1182         int (*get_frame_format)(struct sr_serial_dev_inst *serial,
1183                         int *baud, int *bits);
1184         size_t (*get_rx_avail)(struct sr_serial_dev_inst *serial);
1185 };
1186 extern SR_PRIV struct ser_lib_functions *ser_lib_funcs_libsp;
1187 SR_PRIV int ser_name_is_hid(struct sr_serial_dev_inst *serial);
1188 extern SR_PRIV struct ser_lib_functions *ser_lib_funcs_hid;
1189 #endif
1190
1191 /*--- ezusb.c ---------------------------------------------------------------*/
1192
1193 #ifdef HAVE_LIBUSB_1_0
1194 SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
1195 SR_PRIV int ezusb_install_firmware(struct sr_context *ctx, libusb_device_handle *hdl,
1196                                    const char *name);
1197 SR_PRIV int ezusb_upload_firmware(struct sr_context *ctx, libusb_device *dev,
1198                                   int configuration, const char *name);
1199 #endif
1200
1201 /*--- usb.c -----------------------------------------------------------------*/
1202
1203 #ifdef HAVE_LIBUSB_1_0
1204 SR_PRIV GSList *sr_usb_find(libusb_context *usb_ctx, const char *conn);
1205 SR_PRIV int sr_usb_open(libusb_context *usb_ctx, struct sr_usb_dev_inst *usb);
1206 SR_PRIV void sr_usb_close(struct sr_usb_dev_inst *usb);
1207 SR_PRIV int usb_source_add(struct sr_session *session, struct sr_context *ctx,
1208                 int timeout, sr_receive_data_callback cb, void *cb_data);
1209 SR_PRIV int usb_source_remove(struct sr_session *session, struct sr_context *ctx);
1210 SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len);
1211 SR_PRIV gboolean usb_match_manuf_prod(libusb_device *dev,
1212                 const char *manufacturer, const char *product);
1213 #endif
1214
1215
1216 /*--- modbus/modbus.c -------------------------------------------------------*/
1217
1218 struct sr_modbus_dev_inst {
1219         const char *name;
1220         const char *prefix;
1221         int priv_size;
1222         GSList *(*scan)(int modbusaddr);
1223         int (*dev_inst_new)(void *priv, const char *resource,
1224                 char **params, const char *serialcomm, int modbusaddr);
1225         int (*open)(void *priv);
1226         int (*source_add)(struct sr_session *session, void *priv, int events,
1227                 int timeout, sr_receive_data_callback cb, void *cb_data);
1228         int (*source_remove)(struct sr_session *session, void *priv);
1229         int (*send)(void *priv, const uint8_t *buffer, int buffer_size);
1230         int (*read_begin)(void *priv, uint8_t *function_code);
1231         int (*read_data)(void *priv, uint8_t *buf, int maxlen);
1232         int (*read_end)(void *priv);
1233         int (*close)(void *priv);
1234         void (*free)(void *priv);
1235         unsigned int read_timeout_ms;
1236         void *priv;
1237 };
1238
1239 SR_PRIV GSList *sr_modbus_scan(struct drv_context *drvc, GSList *options,
1240                 struct sr_dev_inst *(*probe_device)(struct sr_modbus_dev_inst *modbus));
1241 SR_PRIV struct sr_modbus_dev_inst *modbus_dev_inst_new(const char *resource,
1242                 const char *serialcomm, int modbusaddr);
1243 SR_PRIV int sr_modbus_open(struct sr_modbus_dev_inst *modbus);
1244 SR_PRIV int sr_modbus_source_add(struct sr_session *session,
1245                 struct sr_modbus_dev_inst *modbus, int events, int timeout,
1246                 sr_receive_data_callback cb, void *cb_data);
1247 SR_PRIV int sr_modbus_source_remove(struct sr_session *session,
1248                 struct sr_modbus_dev_inst *modbus);
1249 SR_PRIV int sr_modbus_request(struct sr_modbus_dev_inst *modbus,
1250                               uint8_t *request, int request_size);
1251 SR_PRIV int sr_modbus_reply(struct sr_modbus_dev_inst *modbus,
1252                             uint8_t *reply, int reply_size);
1253 SR_PRIV int sr_modbus_request_reply(struct sr_modbus_dev_inst *modbus,
1254                                     uint8_t *request, int request_size,
1255                                     uint8_t *reply, int reply_size);
1256 SR_PRIV int sr_modbus_read_coils(struct sr_modbus_dev_inst *modbus,
1257                                  int address, int nb_coils, uint8_t *coils);
1258 SR_PRIV int sr_modbus_read_holding_registers(struct sr_modbus_dev_inst *modbus,
1259                                              int address, int nb_registers,
1260                                              uint16_t *registers);
1261 SR_PRIV int sr_modbus_write_coil(struct sr_modbus_dev_inst *modbus,
1262                                  int address, int value);
1263 SR_PRIV int sr_modbus_write_multiple_registers(struct sr_modbus_dev_inst*modbus,
1264                                                int address, int nb_registers,
1265                                                uint16_t *registers);
1266 SR_PRIV int sr_modbus_close(struct sr_modbus_dev_inst *modbus);
1267 SR_PRIV void sr_modbus_free(struct sr_modbus_dev_inst *modbus);
1268
1269 /*--- dmm/es519xx.c ---------------------------------------------------------*/
1270
1271 /**
1272  * All 11-byte es519xx chips repeat each block twice for each conversion cycle
1273  * so always read 2 blocks at a time.
1274  */
1275 #define ES519XX_11B_PACKET_SIZE (11 * 2)
1276 #define ES519XX_14B_PACKET_SIZE 14
1277
1278 struct es519xx_info {
1279         gboolean is_judge, is_voltage, is_auto, is_micro, is_current;
1280         gboolean is_milli, is_resistance, is_continuity, is_diode;
1281         gboolean is_frequency, is_rpm, is_capacitance, is_duty_cycle;
1282         gboolean is_temperature, is_celsius, is_fahrenheit;
1283         gboolean is_adp0, is_adp1, is_adp2, is_adp3;
1284         gboolean is_sign, is_batt, is_ol, is_pmax, is_pmin, is_apo;
1285         gboolean is_dc, is_ac, is_vahz, is_min, is_max, is_rel, is_hold;
1286         gboolean is_digit4, is_ul, is_vasel, is_vbar, is_lpf1, is_lpf0, is_rmr;
1287         uint32_t baudrate;
1288         int packet_size;
1289         gboolean alt_functions, fivedigits, clampmeter, selectable_lpf;
1290         int digits;
1291 };
1292
1293 SR_PRIV gboolean sr_es519xx_2400_11b_packet_valid(const uint8_t *buf);
1294 SR_PRIV int sr_es519xx_2400_11b_parse(const uint8_t *buf, float *floatval,
1295                 struct sr_datafeed_analog *analog, void *info);
1296 SR_PRIV gboolean sr_es519xx_2400_11b_altfn_packet_valid(const uint8_t *buf);
1297 SR_PRIV int sr_es519xx_2400_11b_altfn_parse(const uint8_t *buf,
1298                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1299 SR_PRIV gboolean sr_es519xx_19200_11b_5digits_packet_valid(const uint8_t *buf);
1300 SR_PRIV int sr_es519xx_19200_11b_5digits_parse(const uint8_t *buf,
1301                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1302 SR_PRIV gboolean sr_es519xx_19200_11b_clamp_packet_valid(const uint8_t *buf);
1303 SR_PRIV int sr_es519xx_19200_11b_clamp_parse(const uint8_t *buf,
1304                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1305 SR_PRIV gboolean sr_es519xx_19200_11b_packet_valid(const uint8_t *buf);
1306 SR_PRIV int sr_es519xx_19200_11b_parse(const uint8_t *buf, float *floatval,
1307                 struct sr_datafeed_analog *analog, void *info);
1308 SR_PRIV gboolean sr_es519xx_19200_14b_packet_valid(const uint8_t *buf);
1309 SR_PRIV int sr_es519xx_19200_14b_parse(const uint8_t *buf, float *floatval,
1310                 struct sr_datafeed_analog *analog, void *info);
1311 SR_PRIV gboolean sr_es519xx_19200_14b_sel_lpf_packet_valid(const uint8_t *buf);
1312 SR_PRIV int sr_es519xx_19200_14b_sel_lpf_parse(const uint8_t *buf,
1313                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1314
1315 /*--- dmm/fs9922.c ----------------------------------------------------------*/
1316
1317 #define FS9922_PACKET_SIZE 14
1318
1319 struct fs9922_info {
1320         gboolean is_auto, is_dc, is_ac, is_rel, is_hold, is_bpn, is_z1, is_z2;
1321         gboolean is_max, is_min, is_apo, is_bat, is_nano, is_z3, is_micro;
1322         gboolean is_milli, is_kilo, is_mega, is_beep, is_diode, is_percent;
1323         gboolean is_z4, is_volt, is_ampere, is_ohm, is_hfe, is_hertz, is_farad;
1324         gboolean is_celsius, is_fahrenheit;
1325         int bargraph_sign, bargraph_value;
1326 };
1327
1328 SR_PRIV gboolean sr_fs9922_packet_valid(const uint8_t *buf);
1329 SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
1330                             struct sr_datafeed_analog *analog, void *info);
1331 SR_PRIV void sr_fs9922_z1_diode(struct sr_datafeed_analog *analog, void *info);
1332
1333 /*--- dmm/fs9721.c ----------------------------------------------------------*/
1334
1335 #define FS9721_PACKET_SIZE 14
1336
1337 struct fs9721_info {
1338         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1339         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1340         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1341         gboolean is_c2c1_11, is_c2c1_10, is_c2c1_01, is_c2c1_00, is_sign;
1342 };
1343
1344 SR_PRIV gboolean sr_fs9721_packet_valid(const uint8_t *buf);
1345 SR_PRIV int sr_fs9721_parse(const uint8_t *buf, float *floatval,
1346                             struct sr_datafeed_analog *analog, void *info);
1347 SR_PRIV void sr_fs9721_00_temp_c(struct sr_datafeed_analog *analog, void *info);
1348 SR_PRIV void sr_fs9721_01_temp_c(struct sr_datafeed_analog *analog, void *info);
1349 SR_PRIV void sr_fs9721_10_temp_c(struct sr_datafeed_analog *analog, void *info);
1350 SR_PRIV void sr_fs9721_01_10_temp_f_c(struct sr_datafeed_analog *analog, void *info);
1351 SR_PRIV void sr_fs9721_max_c_min(struct sr_datafeed_analog *analog, void *info);
1352
1353 /*--- dmm/ms2115b.c ---------------------------------------------------------*/
1354
1355 #define MS2115B_PACKET_SIZE 9
1356
1357 enum ms2115b_display {
1358         MS2115B_DISPLAY_MAIN,
1359         MS2115B_DISPLAY_SUB,
1360         MS2115B_DISPLAY_COUNT,
1361 };
1362
1363 struct ms2115b_info {
1364         /* Selected channel. */
1365         size_t ch_idx;
1366         gboolean is_ac, is_dc, is_auto;
1367         gboolean is_diode, is_beep, is_farad;
1368         gboolean is_ohm, is_ampere, is_volt, is_hz;
1369         gboolean is_duty_cycle, is_percent;
1370 };
1371
1372 extern SR_PRIV const char *ms2115b_channel_formats[];
1373 SR_PRIV gboolean sr_ms2115b_packet_valid(const uint8_t *buf);
1374 SR_PRIV int sr_ms2115b_parse(const uint8_t *buf, float *floatval,
1375         struct sr_datafeed_analog *analog, void *info);
1376
1377 /*--- dmm/ms8250d.c ---------------------------------------------------------*/
1378
1379 #define MS8250D_PACKET_SIZE 18
1380
1381 struct ms8250d_info {
1382         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1383         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1384         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1385         gboolean is_ncv, is_min, is_max, is_sign, is_autotimer;
1386 };
1387
1388 SR_PRIV gboolean sr_ms8250d_packet_valid(const uint8_t *buf);
1389 SR_PRIV int sr_ms8250d_parse(const uint8_t *buf, float *floatval,
1390                              struct sr_datafeed_analog *analog, void *info);
1391
1392 /*--- dmm/dtm0660.c ---------------------------------------------------------*/
1393
1394 #define DTM0660_PACKET_SIZE 15
1395
1396 struct dtm0660_info {
1397         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1398         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1399         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1400         gboolean is_degf, is_degc, is_c2c1_01, is_c2c1_00, is_apo, is_min;
1401         gboolean is_minmax, is_max, is_sign;
1402 };
1403
1404 SR_PRIV gboolean sr_dtm0660_packet_valid(const uint8_t *buf);
1405 SR_PRIV int sr_dtm0660_parse(const uint8_t *buf, float *floatval,
1406                         struct sr_datafeed_analog *analog, void *info);
1407
1408 /*--- dmm/m2110.c -----------------------------------------------------------*/
1409
1410 #define BBCGM_M2110_PACKET_SIZE 9
1411
1412 /* Dummy info struct. The parser does not use it. */
1413 struct m2110_info { int dummy; };
1414
1415 SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf);
1416 SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
1417                              struct sr_datafeed_analog *analog, void *info);
1418
1419 /*--- dmm/metex14.c ---------------------------------------------------------*/
1420
1421 #define METEX14_PACKET_SIZE 14
1422
1423 struct metex14_info {
1424         size_t ch_idx;
1425         gboolean is_ac, is_dc, is_resistance, is_capacity, is_temperature;
1426         gboolean is_diode, is_frequency, is_ampere, is_volt, is_farad;
1427         gboolean is_hertz, is_ohm, is_celsius, is_fahrenheit, is_watt;
1428         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
1429         gboolean is_gain, is_decibel, is_power, is_decibel_mw, is_power_factor;
1430         gboolean is_hfe, is_unitless, is_logic, is_min, is_max, is_avg;
1431 };
1432
1433 #ifdef HAVE_SERIAL_COMM
1434 SR_PRIV int sr_metex14_packet_request(struct sr_serial_dev_inst *serial);
1435 #endif
1436 SR_PRIV gboolean sr_metex14_packet_valid(const uint8_t *buf);
1437 SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval,
1438                              struct sr_datafeed_analog *analog, void *info);
1439 SR_PRIV gboolean sr_metex14_4packets_valid(const uint8_t *buf);
1440 SR_PRIV int sr_metex14_4packets_parse(const uint8_t *buf, float *floatval,
1441                              struct sr_datafeed_analog *analog, void *info);
1442
1443 /*--- dmm/rs9lcd.c ----------------------------------------------------------*/
1444
1445 #define RS9LCD_PACKET_SIZE 9
1446
1447 /* Dummy info struct. The parser does not use it. */
1448 struct rs9lcd_info { int dummy; };
1449
1450 SR_PRIV gboolean sr_rs9lcd_packet_valid(const uint8_t *buf);
1451 SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,
1452                             struct sr_datafeed_analog *analog, void *info);
1453
1454 /*--- dmm/bm25x.c -----------------------------------------------------------*/
1455
1456 #define BRYMEN_BM25X_PACKET_SIZE 15
1457
1458 /* Dummy info struct. The parser does not use it. */
1459 struct bm25x_info { int dummy; };
1460
1461 SR_PRIV gboolean sr_brymen_bm25x_packet_valid(const uint8_t *buf);
1462 SR_PRIV int sr_brymen_bm25x_parse(const uint8_t *buf, float *floatval,
1463                              struct sr_datafeed_analog *analog, void *info);
1464
1465 /*--- dmm/ut71x.c -----------------------------------------------------------*/
1466
1467 #define UT71X_PACKET_SIZE 11
1468
1469 struct ut71x_info {
1470         gboolean is_voltage, is_resistance, is_capacitance, is_temperature;
1471         gboolean is_celsius, is_fahrenheit, is_current, is_continuity;
1472         gboolean is_diode, is_frequency, is_duty_cycle, is_dc, is_ac;
1473         gboolean is_auto, is_manual, is_sign, is_power, is_loop_current;
1474 };
1475
1476 SR_PRIV gboolean sr_ut71x_packet_valid(const uint8_t *buf);
1477 SR_PRIV int sr_ut71x_parse(const uint8_t *buf, float *floatval,
1478                 struct sr_datafeed_analog *analog, void *info);
1479
1480 /*--- dmm/vc870.c -----------------------------------------------------------*/
1481
1482 #define VC870_PACKET_SIZE 23
1483
1484 struct vc870_info {
1485         gboolean is_voltage, is_dc, is_ac, is_temperature, is_resistance;
1486         gboolean is_continuity, is_capacitance, is_diode, is_loop_current;
1487         gboolean is_current, is_micro, is_milli, is_power;
1488         gboolean is_power_factor_freq, is_power_apparent_power, is_v_a_rms_value;
1489         gboolean is_sign2, is_sign1, is_batt, is_ol1, is_max, is_min;
1490         gboolean is_maxmin, is_rel, is_ol2, is_open, is_manu, is_hold;
1491         gboolean is_light, is_usb, is_warning, is_auto_power, is_misplug_warn;
1492         gboolean is_lo, is_hi, is_open2;
1493
1494         gboolean is_frequency, is_dual_display, is_auto;
1495 };
1496
1497 SR_PRIV gboolean sr_vc870_packet_valid(const uint8_t *buf);
1498 SR_PRIV int sr_vc870_parse(const uint8_t *buf, float *floatval,
1499                 struct sr_datafeed_analog *analog, void *info);
1500
1501 /*--- dmm/vc96.c ------------------------------------------------------------*/
1502
1503 #define VC96_PACKET_SIZE 13
1504
1505 struct vc96_info {
1506         size_t ch_idx;
1507         gboolean is_ac, is_dc, is_resistance, is_diode, is_ampere, is_volt;
1508         gboolean is_ohm, is_micro, is_milli, is_kilo, is_mega, is_hfe;
1509         gboolean is_unitless;
1510 };
1511
1512 SR_PRIV gboolean sr_vc96_packet_valid(const uint8_t *buf);
1513 SR_PRIV int sr_vc96_parse(const uint8_t *buf, float *floatval,
1514                 struct sr_datafeed_analog *analog, void *info);
1515
1516 /*--- lcr/es51919.c ---------------------------------------------------------*/
1517
1518 SR_PRIV void es51919_serial_clean(void *priv);
1519 SR_PRIV struct sr_dev_inst *es51919_serial_scan(GSList *options,
1520                                                 const char *vendor,
1521                                                 const char *model);
1522 SR_PRIV int es51919_serial_config_get(uint32_t key, GVariant **data,
1523                                       const struct sr_dev_inst *sdi,
1524                                       const struct sr_channel_group *cg);
1525 SR_PRIV int es51919_serial_config_set(uint32_t key, GVariant *data,
1526                                       const struct sr_dev_inst *sdi,
1527                                       const struct sr_channel_group *cg);
1528 SR_PRIV int es51919_serial_config_list(uint32_t key, GVariant **data,
1529                                        const struct sr_dev_inst *sdi,
1530                                        const struct sr_channel_group *cg);
1531 SR_PRIV int es51919_serial_acquisition_start(const struct sr_dev_inst *sdi);
1532 SR_PRIV int es51919_serial_acquisition_stop(struct sr_dev_inst *sdi);
1533
1534 /*--- dmm/ut372.c -----------------------------------------------------------*/
1535
1536 #define UT372_PACKET_SIZE 27
1537
1538 struct ut372_info {
1539         int dummy;
1540 };
1541
1542 SR_PRIV gboolean sr_ut372_packet_valid(const uint8_t *buf);
1543 SR_PRIV int sr_ut372_parse(const uint8_t *buf, float *floatval,
1544                 struct sr_datafeed_analog *analog, void *info);
1545
1546 /*--- dmm/asycii.c ----------------------------------------------------------*/
1547
1548 #define ASYCII_PACKET_SIZE 16
1549
1550 struct asycii_info {
1551         gboolean is_ac, is_dc, is_ac_and_dc;
1552         gboolean is_resistance, is_capacitance, is_diode, is_gain;
1553         gboolean is_frequency, is_duty_cycle, is_duty_pos, is_duty_neg;
1554         gboolean is_pulse_width, is_period_pos, is_period_neg;
1555         gboolean is_pulse_count, is_count_pos, is_count_neg;
1556         gboolean is_ampere, is_volt, is_volt_ampere, is_farad, is_ohm;
1557         gboolean is_hertz, is_percent, is_seconds, is_decibel;
1558         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
1559         gboolean is_unitless;
1560         gboolean is_peak_min, is_peak_max;
1561         gboolean is_invalid;
1562 };
1563
1564 #ifdef HAVE_SERIAL_COMM
1565 SR_PRIV int sr_asycii_packet_request(struct sr_serial_dev_inst *serial);
1566 #endif
1567 SR_PRIV gboolean sr_asycii_packet_valid(const uint8_t *buf);
1568 SR_PRIV int sr_asycii_parse(const uint8_t *buf, float *floatval,
1569                             struct sr_datafeed_analog *analog, void *info);
1570
1571 /*--- dmm/eev121gw.c --------------------------------------------------------*/
1572
1573 #define EEV121GW_PACKET_SIZE 19
1574
1575 enum eev121gw_display {
1576         EEV121GW_DISPLAY_MAIN,
1577         EEV121GW_DISPLAY_SUB,
1578         EEV121GW_DISPLAY_BAR,
1579         EEV121GW_DISPLAY_COUNT,
1580 };
1581
1582 struct eev121gw_info {
1583         /* Selected channel. */
1584         size_t ch_idx;
1585         /*
1586          * Measured value, number and sign/overflow flags, scale factor
1587          * and significant digits.
1588          */
1589         uint32_t uint_value;
1590         gboolean is_ofl, is_neg;
1591         int factor, digits;
1592         /* Currently active mode (meter's function). */
1593         gboolean is_ac, is_dc, is_voltage, is_current, is_power, is_gain;
1594         gboolean is_resistance, is_capacitance, is_diode, is_temperature;
1595         gboolean is_continuity, is_frequency, is_period, is_duty_cycle;
1596         /* Quantities associated with mode/function. */
1597         gboolean is_ampere, is_volt, is_volt_ampere, is_dbm;
1598         gboolean is_ohm, is_farad, is_celsius, is_fahrenheit;
1599         gboolean is_hertz, is_seconds, is_percent, is_loop_current;
1600         gboolean is_unitless, is_logic;
1601         /* Other indicators. */
1602         gboolean is_min, is_max, is_avg, is_1ms_peak, is_rel, is_hold;
1603         gboolean is_low_pass, is_mem, is_bt, is_auto_range, is_test;
1604         gboolean is_auto_poweroff, is_low_batt;
1605 };
1606
1607 extern SR_PRIV const char *eev121gw_channel_formats[];
1608 SR_PRIV gboolean sr_eev121gw_packet_valid(const uint8_t *buf);
1609 SR_PRIV int sr_eev121gw_parse(const uint8_t *buf, float *floatval,
1610                              struct sr_datafeed_analog *analog, void *info);
1611 SR_PRIV int sr_eev121gw_3displays_parse(const uint8_t *buf, float *floatval,
1612                              struct sr_datafeed_analog *analog, void *info);
1613
1614 /*--- scale/kern.c ----------------------------------------------------------*/
1615
1616 struct kern_info {
1617         gboolean is_gram, is_carat, is_ounce, is_pound, is_troy_ounce;
1618         gboolean is_pennyweight, is_grain, is_tael, is_momme, is_tola;
1619         gboolean is_percentage, is_piece, is_unstable, is_stable, is_error;
1620         int buflen;
1621 };
1622
1623 SR_PRIV gboolean sr_kern_packet_valid(const uint8_t *buf);
1624 SR_PRIV int sr_kern_parse(const uint8_t *buf, float *floatval,
1625                 struct sr_datafeed_analog *analog, void *info);
1626
1627 /*--- sw_limits.c -----------------------------------------------------------*/
1628
1629 struct sr_sw_limits {
1630         uint64_t limit_samples;
1631         uint64_t limit_msec;
1632         uint64_t samples_read;
1633         uint64_t start_time;
1634 };
1635
1636 SR_PRIV int sr_sw_limits_config_get(struct sr_sw_limits *limits, uint32_t key,
1637         GVariant **data);
1638 SR_PRIV int sr_sw_limits_config_set(struct sr_sw_limits *limits, uint32_t key,
1639         GVariant *data);
1640 SR_PRIV void sr_sw_limits_acquisition_start(struct sr_sw_limits *limits);
1641 SR_PRIV gboolean sr_sw_limits_check(struct sr_sw_limits *limits);
1642 SR_PRIV void sr_sw_limits_update_samples_read(struct sr_sw_limits *limits,
1643         uint64_t samples_read);
1644 SR_PRIV void sr_sw_limits_init(struct sr_sw_limits *limits);
1645
1646 #endif