]> sigrok.org Git - libsigrok.git/blob - src/libsigrok-internal.h
USB: On Windows, block to wait for libusb events
[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 /** @file
21   * @internal
22   */
23
24 #ifndef LIBSIGROK_LIBSIGROK_INTERNAL_H
25 #define LIBSIGROK_LIBSIGROK_INTERNAL_H
26
27 #include <stdarg.h>
28 #include <glib.h>
29 #include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
30 #ifdef HAVE_LIBUSB_1_0
31 #include <libusb.h>
32 #endif
33 #ifdef HAVE_LIBSERIALPORT
34 #include <libserialport.h>
35 #endif
36
37 /**
38  * @file
39  *
40  * libsigrok private header file, only to be used internally.
41  */
42
43 /*--- Macros ----------------------------------------------------------------*/
44
45 #ifndef ARRAY_SIZE
46 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
47 #endif
48
49 #ifndef ARRAY_AND_SIZE
50 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
51 #endif
52
53 /**
54  * Read a 8 bits unsigned integer out of memory.
55  * @param x a pointer to the input memory
56  * @return the corresponding unsigned integer
57  */
58 #define R8(x)     ((unsigned)((const uint8_t*)(x))[0])
59
60 /**
61  * Read a 16 bits big endian unsigned integer out of memory.
62  * @param x a pointer to the input memory
63  * @return the corresponding unsigned integer
64  */
65 #define RB16(x)  (((unsigned)((const uint8_t*)(x))[0] <<  8) |  \
66                    (unsigned)((const uint8_t*)(x))[1])
67
68 /**
69  * Read a 16 bits little endian unsigned integer out of memory.
70  * @param x a pointer to the input memory
71  * @return the corresponding unsigned integer
72  */
73 #define RL16(x)  (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
74                    (unsigned)((const uint8_t*)(x))[0])
75
76 /**
77  * Read a 16 bits little endian signed integer out of memory.
78  * @param x a pointer to the input memory
79  * @return the corresponding signed integer
80  */
81 #define RL16S(x)  ((int16_t) \
82                   (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
83                     (unsigned)((const uint8_t*)(x))[0]))
84
85 /**
86  * Read a 32 bits big endian unsigned integer out of memory.
87  * @param x a pointer to the input memory
88  * @return the corresponding unsigned integer
89  */
90 #define RB32(x)  (((unsigned)((const uint8_t*)(x))[0] << 24) | \
91                   ((unsigned)((const uint8_t*)(x))[1] << 16) |  \
92                   ((unsigned)((const uint8_t*)(x))[2] <<  8) |  \
93                    (unsigned)((const uint8_t*)(x))[3])
94
95 /**
96  * Read a 32 bits little endian unsigned integer out of memory.
97  * @param x a pointer to the input memory
98  * @return the corresponding unsigned integer
99  */
100 #define RL32(x)  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
101                   ((unsigned)((const uint8_t*)(x))[2] << 16) |  \
102                   ((unsigned)((const uint8_t*)(x))[1] <<  8) |  \
103                    (unsigned)((const uint8_t*)(x))[0])
104
105 /**
106  * Read a 32 bits little endian signed integer out of memory.
107  * @param x a pointer to the input memory
108  * @return the corresponding signed integer
109  */
110 #define RL32S(x)  ((int32_t) \
111                  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
112                   ((unsigned)((const uint8_t*)(x))[2] << 16) |  \
113                   ((unsigned)((const uint8_t*)(x))[1] <<  8) |  \
114                    (unsigned)((const uint8_t*)(x))[0]))
115
116 /**
117  * Read a 32 bits big endian float out of memory.
118  * @param x a pointer to the input memory
119  * @return the corresponding float
120  */
121 #define RBFL(x)  ((union { uint32_t u; float f; }) { .u = RB32(x) }.f)
122
123 /**
124  * Read a 32 bits little endian float out of memory.
125  * @param x a pointer to the input memory
126  * @return the corresponding float
127  */
128 #define RLFL(x)  ((union { uint32_t u; float f; }) { .u = RL32(x) }.f)
129
130 /**
131  * Write a 8 bits unsigned integer to memory.
132  * @param p a pointer to the output memory
133  * @param x the input unsigned integer
134  */
135 #define W8(p, x)    do { ((uint8_t*)(p))[0] = (uint8_t) (x);      } while (0)
136
137 /**
138  * Write a 16 bits unsigned integer to memory stored as big endian.
139  * @param p a pointer to the output memory
140  * @param x the input unsigned integer
141  */
142 #define WB16(p, x)  do { ((uint8_t*)(p))[1] = (uint8_t) (x);      \
143                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>8);  } while (0)
144
145 /**
146  * Write a 16 bits unsigned integer to memory stored as little endian.
147  * @param p a pointer to the output memory
148  * @param x the input unsigned integer
149  */
150 #define WL16(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
151                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  } while (0)
152
153 /**
154  * Write a 32 bits unsigned integer to memory stored as big endian.
155  * @param p a pointer to the output memory
156  * @param x the input unsigned integer
157  */
158 #define WB32(p, x)  do { ((uint8_t*)(p))[3] = (uint8_t) (x);      \
159                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>8);  \
160                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>16); \
161                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>24); } while (0)
162
163 /**
164  * Write a 32 bits unsigned integer to memory stored as little endian.
165  * @param p a pointer to the output memory
166  * @param x the input unsigned integer
167  */
168 #define WL32(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
169                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  \
170                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>16); \
171                          ((uint8_t*)(p))[3] = (uint8_t)((x)>>24); } while (0)
172
173 /**
174  * Write a 32 bits float to memory stored as big endian.
175  * @param p a pointer to the output memory
176  * @param x the input float
177  */
178 #define WBFL(p, x)  WB32(p, (union { uint32_t u; float f; }) { .f = x }.u)
179
180 /**
181  * Write a 32 bits float to memory stored as little endian.
182  * @param p a pointer to the output memory
183  * @param x the input float
184  */
185 #define WLFL(p, x)  WL32(p, (union { uint32_t u; float f; }) { .f = x }.u)
186
187 /* Portability fixes for FreeBSD. */
188 #ifdef __FreeBSD__
189 #define LIBUSB_CLASS_APPLICATION 0xfe
190 #define libusb_has_capability(x) 0
191 #define libusb_handle_events_timeout_completed(ctx, tv, c) \
192         libusb_handle_events_timeout(ctx, tv)
193 #endif
194
195 /* Static definitions of structs ending with an all-zero entry are a
196  * problem when compiling with -Wmissing-field-initializers: GCC
197  * suppresses the warning only with { 0 }, clang wants { } */
198 #ifdef __clang__
199 #define ALL_ZERO { }
200 #else
201 #define ALL_ZERO { 0 }
202 #endif
203
204 struct sr_context {
205         struct sr_dev_driver **driver_list;
206 #ifdef HAVE_LIBUSB_1_0
207         libusb_context *libusb_ctx;
208         gboolean usb_source_present;
209 # ifdef G_OS_WIN32
210         int64_t usb_timeout;
211         int64_t usb_due;
212         sr_receive_data_callback usb_cb;
213         void *usb_cb_data;
214 # endif
215 #endif
216 };
217
218 /** Input module metadata keys. */
219 enum sr_input_meta_keys {
220         /** The input filename, if there is one. */
221         SR_INPUT_META_FILENAME = 0x01,
222         /** The input file's size in bytes. */
223         SR_INPUT_META_FILESIZE = 0x02,
224         /** The first 128 bytes of the file, provided as a GString. */
225         SR_INPUT_META_HEADER = 0x04,
226         /** The file's MIME type. */
227         SR_INPUT_META_MIMETYPE = 0x08,
228
229         /** The module cannot identify a file without this metadata. */
230         SR_INPUT_META_REQUIRED = 0x80,
231 };
232
233 /** Input (file) module struct. */
234 struct sr_input {
235         /**
236          * A pointer to this input module's 'struct sr_input_module'.
237          */
238         const struct sr_input_module *module;
239         GString *buf;
240         struct sr_dev_inst *sdi;
241         gboolean sdi_ready;
242         void *priv;
243 };
244
245 /** Input (file) module driver. */
246 struct sr_input_module {
247         /**
248          * A unique ID for this input module, suitable for use in command-line
249          * clients, [a-z0-9-]. Must not be NULL.
250          */
251         const char *id;
252
253         /**
254          * A unique name for this input module, suitable for use in GUI
255          * clients, can contain UTF-8. Must not be NULL.
256          */
257         const char *name;
258
259         /**
260          * A short description of the input module. Must not be NULL.
261          *
262          * This can be displayed by frontends, e.g. when selecting the input
263          * module for saving a file.
264          */
265         const char *desc;
266
267         /**
268          * A NULL terminated array of strings containing a list of file name
269          * extensions typical for the input file format, or NULL if there is
270          * no typical extension for this file format.
271          */
272         const char *const *exts;
273
274         /**
275          * Zero-terminated list of metadata items the module needs to be able
276          * to identify an input stream. Can be all-zero, if the module cannot
277          * identify streams at all, i.e. has to be forced into use.
278          *
279          * Each item is one of:
280          *   SR_INPUT_META_FILENAME
281          *   SR_INPUT_META_FILESIZE
282          *   SR_INPUT_META_HEADER
283          *   SR_INPUT_META_MIMETYPE
284          *
285          * If the high bit (SR_INPUT META_REQUIRED) is set, the module cannot
286          * identify a stream without the given metadata.
287          */
288         const uint8_t metadata[8];
289
290         /**
291          * Returns a NULL-terminated list of options this module can take.
292          * Can be NULL, if the module has no options.
293          */
294         struct sr_option *(*options) (void);
295
296         /**
297          * Check if this input module can load and parse the specified stream.
298          *
299          * @param[in] metadata Metadata the module can use to identify the stream.
300          *
301          * @retval SR_OK This module knows the format.
302          * @retval SR_ERR_NA There wasn't enough data for this module to
303          *   positively identify the format.
304          * @retval SR_ERR_DATA This module knows the format, but cannot handle it.
305          *   This means the stream is either corrupt, or indicates a feature
306          *   that the module does not support.
307          * @retval SR_ERR This module does not know the format.
308          */
309         int (*format_match) (GHashTable *metadata);
310
311         /**
312          * Initialize the input module.
313          *
314          * @retval SR_OK Success
315          * @retval other Negative error code.
316          */
317         int (*init) (struct sr_input *in, GHashTable *options);
318
319         /**
320          * Send data to the specified input instance.
321          *
322          * When an input module instance is created with sr_input_new(), this
323          * function is used to feed data to the instance.
324          *
325          * As enough data gets fed into this function to completely populate
326          * the device instance associated with this input instance, this is
327          * guaranteed to return the moment it's ready. This gives the caller
328          * the chance to examine the device instance, attach session callbacks
329          * and so on.
330          *
331          * @retval SR_OK Success
332          * @retval other Negative error code.
333          */
334         int (*receive) (struct sr_input *in, GString *buf);
335
336         /**
337          * Signal the input module no more data will come.
338          *
339          * This will cause the module to process any data it may have buffered.
340          * The SR_DF_END packet will also typically be sent at this time.
341          */
342         int (*end) (struct sr_input *in);
343
344         /**
345          * This function is called after the caller is finished using
346          * the input module, and can be used to free any internal
347          * resources the module may keep.
348          *
349          * This function is optional.
350          *
351          * @retval SR_OK Success
352          * @retval other Negative error code.
353          */
354         void (*cleanup) (struct sr_input *in);
355 };
356
357 /** Output module instance. */
358 struct sr_output {
359         /** A pointer to this output's module.  */
360         const struct sr_output_module *module;
361
362         /**
363          * The device for which this output module is creating output. This
364          * can be used by the module to find out channel names and numbers.
365          */
366         const struct sr_dev_inst *sdi;
367
368         /**
369          * The name of the file that the data should be written to.
370          */
371         const char *filename;
372
373         /**
374          * A generic pointer which can be used by the module to keep internal
375          * state between calls into its callback functions.
376          *
377          * For example, the module might store a pointer to a chunk of output
378          * there, and only flush it when it reaches a certain size.
379          */
380         void *priv;
381 };
382
383 /** Output module driver. */
384 struct sr_output_module {
385         /**
386          * A unique ID for this output module, suitable for use in command-line
387          * clients, [a-z0-9-]. Must not be NULL.
388          */
389         char *id;
390
391         /**
392          * A unique name for this output module, suitable for use in GUI
393          * clients, can contain UTF-8. Must not be NULL.
394          */
395         const char *name;
396
397         /**
398          * A short description of the output module. Must not be NULL.
399          *
400          * This can be displayed by frontends, e.g. when selecting the output
401          * module for saving a file.
402          */
403         char *desc;
404
405         /**
406          * A NULL terminated array of strings containing a list of file name
407          * extensions typical for the input file format, or NULL if there is
408          * no typical extension for this file format.
409          */
410         const char *const *exts;
411
412         /**
413          * Bitfield containing flags that describe certain properties
414          * this output module may or may not have.
415          * @see sr_output_flags
416          */
417         const uint64_t flags;
418
419         /**
420          * Returns a NULL-terminated list of options this module can take.
421          * Can be NULL, if the module has no options.
422          */
423         const struct sr_option *(*options) (void);
424
425         /**
426          * This function is called once, at the beginning of an output stream.
427          *
428          * The device struct will be available in the output struct passed in,
429          * as well as the param field -- which may be NULL or an empty string,
430          * if no parameter was passed.
431          *
432          * The module can use this to initialize itself, create a struct for
433          * keeping state and storing it in the <code>internal</code> field.
434          *
435          * @param o Pointer to the respective 'struct sr_output'.
436          *
437          * @retval SR_OK Success
438          * @retval other Negative error code.
439          */
440         int (*init) (struct sr_output *o, GHashTable *options);
441
442         /**
443          * This function is passed a copy of every packet in the data feed.
444          * Any output generated by the output module in response to the
445          * packet should be returned in a newly allocated GString
446          * <code>out</code>, which will be freed by the caller.
447          *
448          * Packets not of interest to the output module can just be ignored,
449          * and the <code>out</code> parameter set to NULL.
450          *
451          * @param o Pointer to the respective 'struct sr_output'.
452          * @param sdi The device instance that generated the packet.
453          * @param packet The complete packet.
454          * @param out A pointer where a GString * should be stored if
455          * the module generates output, or NULL if not.
456          *
457          * @retval SR_OK Success
458          * @retval other Negative error code.
459          */
460         int (*receive) (const struct sr_output *o,
461                         const struct sr_datafeed_packet *packet, GString **out);
462
463         /**
464          * This function is called after the caller is finished using
465          * the output module, and can be used to free any internal
466          * resources the module may keep.
467          *
468          * @retval SR_OK Success
469          * @retval other Negative error code.
470          */
471         int (*cleanup) (struct sr_output *o);
472 };
473
474 /** Transform module instance. */
475 struct sr_transform {
476         /** A pointer to this transform's module.  */
477         const struct sr_transform_module *module;
478
479         /**
480          * The device for which this transform module is used. This
481          * can be used by the module to find out channel names and numbers.
482          */
483         const struct sr_dev_inst *sdi;
484
485         /**
486          * A generic pointer which can be used by the module to keep internal
487          * state between calls into its callback functions.
488          */
489         void *priv;
490 };
491
492 struct sr_transform_module {
493         /**
494          * A unique ID for this transform module, suitable for use in
495          * command-line clients, [a-z0-9-]. Must not be NULL.
496          */
497         char *id;
498
499         /**
500          * A unique name for this transform module, suitable for use in GUI
501          * clients, can contain UTF-8. Must not be NULL.
502          */
503         const char *name;
504
505         /**
506          * A short description of the transform module. Must not be NULL.
507          *
508          * This can be displayed by frontends, e.g. when selecting
509          * which transform module(s) to add.
510          */
511         char *desc;
512
513         /**
514          * Returns a NULL-terminated list of options this transform module
515          * can take. Can be NULL, if the transform module has no options.
516          */
517         const struct sr_option *(*options) (void);
518
519         /**
520          * This function is called once, at the beginning of a stream.
521          *
522          * @param t Pointer to the respective 'struct sr_transform'.
523          * @param options Hash table of options for this transform module.
524          *                Can be NULL if no options are to be used.
525          *
526          * @retval SR_OK Success
527          * @retval other Negative error code.
528          */
529         int (*init) (struct sr_transform *t, GHashTable *options);
530
531         /**
532          * This function is passed a pointer to every packet in the data feed.
533          *
534          * It can either return (in packet_out) a pointer to another packet
535          * (possibly the exact same packet it got as input), or NULL.
536          *
537          * @param t Pointer to the respective 'struct sr_transform'.
538          * @param packet_in Pointer to a datafeed packet.
539          * @param packet_out Pointer to the resulting datafeed packet after
540          *                   this function was run. If NULL, the transform
541          *                   module intentionally didn't output a new packet.
542          *
543          * @retval SR_OK Success
544          * @retval other Negative error code.
545          */
546         int (*receive) (const struct sr_transform *t,
547                         struct sr_datafeed_packet *packet_in,
548                         struct sr_datafeed_packet **packet_out);
549
550         /**
551          * This function is called after the caller is finished using
552          * the transform module, and can be used to free any internal
553          * resources the module may keep.
554          *
555          * @retval SR_OK Success
556          * @retval other Negative error code.
557          */
558         int (*cleanup) (struct sr_transform *t);
559 };
560
561 #ifdef HAVE_LIBUSB_1_0
562 /** USB device instance */
563 struct sr_usb_dev_inst {
564         /** USB bus */
565         uint8_t bus;
566         /** Device address on USB bus */
567         uint8_t address;
568         /** libusb device handle */
569         struct libusb_device_handle *devhdl;
570 };
571 #endif
572
573 #ifdef HAVE_LIBSERIALPORT
574 #define SERIAL_PARITY_NONE SP_PARITY_NONE
575 #define SERIAL_PARITY_EVEN SP_PARITY_EVEN
576 #define SERIAL_PARITY_ODD  SP_PARITY_ODD
577 struct sr_serial_dev_inst {
578         /** Port name, e.g. '/dev/tty42'. */
579         char *port;
580         /** Comm params for serial_set_paramstr(). */
581         char *serialcomm;
582         /** libserialport port handle */
583         struct sp_port *data;
584         /** libserialport event set */
585         struct sp_event_set *event_set;
586         /** GPollFDs for event polling */
587         GPollFD *pollfds;
588 };
589 #endif
590
591 struct sr_usbtmc_dev_inst {
592         char *device;
593         int fd;
594 };
595
596 /* Private driver context. */
597 struct drv_context {
598         /** sigrok context */
599         struct sr_context *sr_ctx;
600         GSList *instances;
601 };
602
603 /*--- log.c -----------------------------------------------------------------*/
604
605 SR_PRIV int sr_log(int loglevel, const char *format, ...);
606 SR_PRIV int sr_spew(const char *format, ...);
607 SR_PRIV int sr_dbg(const char *format, ...);
608 SR_PRIV int sr_info(const char *format, ...);
609 SR_PRIV int sr_warn(const char *format, ...);
610 SR_PRIV int sr_err(const char *format, ...);
611
612 /* Message logging helpers with subsystem-specific prefix string. */
613 #ifndef NO_LOG_WRAPPERS
614 #define sr_log(l, s, args...) sr_log(l, "%s: " s, LOG_PREFIX, ## args)
615 #define sr_spew(s, args...) sr_spew("%s: " s, LOG_PREFIX, ## args)
616 #define sr_dbg(s, args...) sr_dbg("%s: " s, LOG_PREFIX, ## args)
617 #define sr_info(s, args...) sr_info("%s: " s, LOG_PREFIX, ## args)
618 #define sr_warn(s, args...) sr_warn("%s: " s, LOG_PREFIX, ## args)
619 #define sr_err(s, args...) sr_err("%s: " s, LOG_PREFIX, ## args)
620 #endif
621
622 /*--- device.c --------------------------------------------------------------*/
623
624 /** Values for the changes argument of sr_dev_driver.config_channel_set. */
625 enum {
626         /** The enabled state of the channel has been changed. */
627         SR_CHANNEL_SET_ENABLED = 1 << 0,
628 };
629
630 SR_PRIV struct sr_channel *sr_channel_new(struct sr_dev_inst *sdi,
631                 int index, int type, gboolean enabled, const char *name);
632 SR_PRIV struct sr_channel *sr_next_enabled_channel(const struct sr_dev_inst *sdi,
633                 struct sr_channel *cur_channel);
634
635 /** Device instance data */
636 struct sr_dev_inst {
637         /** Device driver. */
638         struct sr_dev_driver *driver;
639         /** Device instance status. SR_ST_NOT_FOUND, etc. */
640         int status;
641         /** Device instance type. SR_INST_USB, etc. */
642         int inst_type;
643         /** Device vendor. */
644         char *vendor;
645         /** Device model. */
646         char *model;
647         /** Device version. */
648         char *version;
649         /** Serial number. */
650         char *serial_num;
651         /** Connection string to uniquely identify devices. */
652         char *connection_id;
653         /** List of channels. */
654         GSList *channels;
655         /** List of sr_channel_group structs */
656         GSList *channel_groups;
657         /** Device instance connection data (used?) */
658         void *conn;
659         /** Device instance private data (used?) */
660         void *priv;
661         /** Session to which this device is currently assigned. */
662         struct sr_session *session;
663 };
664
665 /* Generic device instances */
666 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
667
668 #ifdef HAVE_LIBUSB_1_0
669 /* USB-specific instances */
670 SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
671                 uint8_t address, struct libusb_device_handle *hdl);
672 SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb);
673 #endif
674
675 #ifdef HAVE_LIBSERIALPORT
676 /* Serial-specific instances */
677 SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
678                 const char *serialcomm);
679 SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial);
680 #endif
681
682 /* USBTMC-specific instances */
683 SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device);
684 SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc);
685
686 /*--- hwdriver.c ------------------------------------------------------------*/
687
688 extern SR_PRIV struct sr_dev_driver **drivers_lists[];
689
690 SR_PRIV const GVariantType *sr_variant_type_get(int datatype);
691 SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *data);
692 SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx);
693 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data);
694 SR_PRIV void sr_config_free(struct sr_config *src);
695 SR_PRIV int sr_source_remove(int fd);
696 SR_PRIV int sr_source_remove_pollfd(GPollFD *pollfd);
697 SR_PRIV int sr_source_remove_channel(GIOChannel *channel);
698 SR_PRIV int sr_source_add(int fd, int events, int timeout,
699                 sr_receive_data_callback cb, void *cb_data);
700 SR_PRIV int sr_source_add_pollfd(GPollFD *pollfd, int timeout,
701                 sr_receive_data_callback cb, void *cb_data);
702 SR_PRIV int sr_source_add_channel(GIOChannel *channel, int events, int timeout,
703                 sr_receive_data_callback cb, void *cb_data);
704
705 /*--- session.c -------------------------------------------------------------*/
706
707 struct sr_session {
708         /** Context this session exists in. */
709         struct sr_context *ctx;
710         /** List of struct sr_dev_inst pointers. */
711         GSList *devs;
712         /** List of struct sr_dev_inst pointers owned by this session. */
713         GSList *owned_devs;
714         /** List of struct datafeed_callback pointers. */
715         GSList *datafeed_callbacks;
716         GSList *transforms;
717         struct sr_trigger *trigger;
718
719         gboolean running;
720
721         /*
722          * Event sources and poll FDs are stored in the same order in the
723          * the sources and pollfds arrays. However, each source may cover
724          * any number of associated poll FDs, so the indices do not match.
725          *
726          * We cannot embed the GPollFD into the source struct since we want
727          * to be able to pass the array of all poll descriptors to g_poll().
728          */
729         GArray *sources;
730         GArray *pollfds;
731
732         /*
733          * These are our synchronization primitives for stopping the session in
734          * an async fashion. We need to make sure the session is stopped from
735          * within the session thread itself.
736          */
737         /** Mutex protecting access to abort_session. */
738         GMutex stop_mutex;
739         /** Abort current session. See sr_session_stop(). */
740         gboolean abort_session;
741 };
742
743 SR_PRIV int sr_session_source_add_internal(struct sr_session *session,
744                 const GPollFD *pollfds, int num_fds, int timeout,
745                 sr_receive_data_callback cb, void *cb_data,
746                 gintptr poll_object);
747 SR_PRIV int sr_session_source_remove_internal(struct sr_session *session,
748                 gintptr poll_object);
749 SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
750                 const struct sr_datafeed_packet *packet);
751 SR_PRIV int sr_session_stop_sync(struct sr_session *session);
752 SR_PRIV int sr_sessionfile_check(const char *filename);
753 SR_PRIV int sr_packet_copy(const struct sr_datafeed_packet *packet,
754                 struct sr_datafeed_packet **copy);
755 SR_PRIV void sr_packet_free(struct sr_datafeed_packet *packet);
756
757 /*--- analog.c --------------------------------------------------------------*/
758
759 SR_PRIV int sr_analog_init(struct sr_datafeed_analog2 *analog,
760                            struct sr_analog_encoding *encoding,
761                            struct sr_analog_meaning *meaning,
762                            struct sr_analog_spec *spec,
763                            int digits);
764
765 /*--- std.c -----------------------------------------------------------------*/
766
767 typedef int (*dev_close_callback)(struct sr_dev_inst *sdi);
768 typedef void (*std_dev_clear_callback)(void *priv);
769
770 SR_PRIV int std_init(struct sr_context *sr_ctx, struct sr_dev_driver *di,
771                 const char *prefix);
772 #ifdef HAVE_LIBSERIALPORT
773 SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi);
774 SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi,
775                 void *cb_data, dev_close_callback dev_close_fn,
776                 struct sr_serial_dev_inst *serial, const char *prefix);
777 #endif
778 SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi,
779                 const char *prefix);
780 SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
781                 std_dev_clear_callback clear_private);
782 SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi);
783
784 /*--- strutil.c -------------------------------------------------------------*/
785
786 SR_PRIV int sr_atol(const char *str, long *ret);
787 SR_PRIV int sr_atoi(const char *str, int *ret);
788 SR_PRIV int sr_atod(const char *str, double *ret);
789 SR_PRIV int sr_atof(const char *str, float *ret);
790 SR_PRIV int sr_atof_ascii(const char *str, float *ret);
791
792 /*--- soft-trigger.c --------------------------------------------------------*/
793
794 struct soft_trigger_logic {
795         const struct sr_dev_inst *sdi;
796         const struct sr_trigger *trigger;
797         int count;
798         int unitsize;
799         int cur_stage;
800         uint8_t *prev_sample;
801         uint8_t *pre_trigger_buffer;
802         uint8_t *pre_trigger_head;
803         int pre_trigger_size;
804         int pre_trigger_fill;
805 };
806
807 SR_PRIV struct soft_trigger_logic *soft_trigger_logic_new(
808                 const struct sr_dev_inst *sdi, struct sr_trigger *trigger,
809                 int pre_trigger_samples);
810 SR_PRIV void soft_trigger_logic_free(struct soft_trigger_logic *st);
811 SR_PRIV int soft_trigger_logic_check(struct soft_trigger_logic *st, uint8_t *buf,
812                 int len, int *pre_trigger_samples);
813
814 /*--- hardware/serial.c -----------------------------------------------------*/
815
816 #ifdef HAVE_LIBSERIALPORT
817 enum {
818         SERIAL_RDWR = 1,
819         SERIAL_RDONLY = 2,
820 };
821
822 typedef gboolean (*packet_valid_callback)(const uint8_t *buf);
823
824 SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags);
825 SR_PRIV int serial_close(struct sr_serial_dev_inst *serial);
826 SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial);
827 SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial);
828 SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
829                 const void *buf, size_t count, unsigned int timeout_ms);
830 SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
831                 const void *buf, size_t count);
832 SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial, void *buf,
833                 size_t count, unsigned int timeout_ms);
834 SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial, void *buf,
835                 size_t count);
836 SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
837                 int bits, int parity, int stopbits, int flowcontrol, int rts, int dtr);
838 SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
839                 const char *paramstr);
840 SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial, char **buf,
841                 int *buflen, gint64 timeout_ms);
842 SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
843                                  uint8_t *buf, size_t *buflen,
844                                  size_t packet_size,
845                                  packet_valid_callback is_valid,
846                                  uint64_t timeout_ms, int baudrate);
847 SR_PRIV int sr_serial_extract_options(GSList *options, const char **serial_device,
848                                       const char **serial_options);
849 SR_PRIV int serial_source_add(struct sr_session *session,
850                 struct sr_serial_dev_inst *serial, int events, int timeout,
851                 sr_receive_data_callback cb, void *cb_data);
852 SR_PRIV int serial_source_remove(struct sr_session *session,
853                 struct sr_serial_dev_inst *serial);
854 SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id);
855 SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes);
856 #endif
857
858 /*--- hardware/ezusb.c ------------------------------------------------------*/
859
860 #ifdef HAVE_LIBUSB_1_0
861 SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
862 SR_PRIV int ezusb_install_firmware(libusb_device_handle *hdl,
863                                    const char *filename);
864 SR_PRIV int ezusb_upload_firmware(libusb_device *dev, int configuration,
865                                   const char *filename);
866 #endif
867
868 /*--- hardware/usb.c --------------------------------------------------------*/
869
870 #ifdef HAVE_LIBUSB_1_0
871 SR_PRIV GSList *sr_usb_find(libusb_context *usb_ctx, const char *conn);
872 SR_PRIV int sr_usb_open(libusb_context *usb_ctx, struct sr_usb_dev_inst *usb);
873 SR_PRIV void sr_usb_close(struct sr_usb_dev_inst *usb);
874 SR_PRIV int usb_source_add(struct sr_session *session, struct sr_context *ctx,
875                 int timeout, sr_receive_data_callback cb, void *cb_data);
876 SR_PRIV int usb_source_remove(struct sr_session *session, struct sr_context *ctx);
877 SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len);
878 #endif
879
880
881 /*--- modbus/modbus.c -------------------------------------------------------*/
882
883 struct sr_modbus_dev_inst {
884         const char *name;
885         const char *prefix;
886         int priv_size;
887         GSList *(*scan)(int modbusaddr);
888         int (*dev_inst_new)(void *priv, const char *resource,
889                 char **params, const char *serialcomm, int modbusaddr);
890         int (*open)(void *priv);
891         int (*source_add)(struct sr_session *session, void *priv, int events,
892                 int timeout, sr_receive_data_callback cb, void *cb_data);
893         int (*source_remove)(struct sr_session *session, void *priv);
894         int (*send)(void *priv, const uint8_t *buffer, int buffer_size);
895         int (*read_begin)(void *priv, uint8_t *function_code);
896         int (*read_data)(void *priv, uint8_t *buf, int maxlen);
897         int (*read_end)(void *priv);
898         int (*close)(void *priv);
899         void (*free)(void *priv);
900         unsigned int read_timeout_ms;
901         void *priv;
902 };
903
904 SR_PRIV GSList *sr_modbus_scan(struct drv_context *drvc, GSList *options,
905                 struct sr_dev_inst *(*probe_device)(struct sr_modbus_dev_inst *modbus));
906 SR_PRIV struct sr_modbus_dev_inst *modbus_dev_inst_new(const char *resource,
907                 const char *serialcomm, int modbusaddr);
908 SR_PRIV int sr_modbus_open(struct sr_modbus_dev_inst *modbus);
909 SR_PRIV int sr_modbus_source_add(struct sr_session *session,
910                 struct sr_modbus_dev_inst *modbus, int events, int timeout,
911                 sr_receive_data_callback cb, void *cb_data);
912 SR_PRIV int sr_modbus_source_remove(struct sr_session *session,
913                 struct sr_modbus_dev_inst *modbus);
914 SR_PRIV int sr_modbus_request(struct sr_modbus_dev_inst *modbus,
915                               uint8_t *request, int request_size);
916 SR_PRIV int sr_modbus_reply(struct sr_modbus_dev_inst *modbus,
917                             uint8_t *reply, int reply_size);
918 SR_PRIV int sr_modbus_request_reply(struct sr_modbus_dev_inst *modbus,
919                                     uint8_t *request, int request_size,
920                                     uint8_t *reply, int reply_size);
921 SR_PRIV int sr_modbus_read_coils(struct sr_modbus_dev_inst *modbus,
922                                  int address, int nb_coils, uint8_t *coils);
923 SR_PRIV int sr_modbus_read_holding_registers(struct sr_modbus_dev_inst *modbus,
924                                              int address, int nb_registers,
925                                              uint16_t *registers);
926 SR_PRIV int sr_modbus_write_coil(struct sr_modbus_dev_inst *modbus,
927                                  int address, int value);
928 SR_PRIV int sr_modbus_write_multiple_registers(struct sr_modbus_dev_inst*modbus,
929                                                int address, int nb_registers,
930                                                uint16_t *registers);
931 SR_PRIV int sr_modbus_close(struct sr_modbus_dev_inst *modbus);
932 SR_PRIV void sr_modbus_free(struct sr_modbus_dev_inst *modbus);
933
934 /*--- hardware/dmm/es519xx.c ------------------------------------------------*/
935
936 /**
937  * All 11-byte es519xx chips repeat each block twice for each conversion cycle
938  * so always read 2 blocks at a time.
939  */
940 #define ES519XX_11B_PACKET_SIZE (11 * 2)
941 #define ES519XX_14B_PACKET_SIZE 14
942
943 struct es519xx_info {
944         gboolean is_judge, is_voltage, is_auto, is_micro, is_current;
945         gboolean is_milli, is_resistance, is_continuity, is_diode;
946         gboolean is_frequency, is_rpm, is_capacitance, is_duty_cycle;
947         gboolean is_temperature, is_celsius, is_fahrenheit;
948         gboolean is_adp0, is_adp1, is_adp2, is_adp3;
949         gboolean is_sign, is_batt, is_ol, is_pmax, is_pmin, is_apo;
950         gboolean is_dc, is_ac, is_vahz, is_min, is_max, is_rel, is_hold;
951         gboolean is_digit4, is_ul, is_vasel, is_vbar, is_lpf1, is_lpf0, is_rmr;
952         uint32_t baudrate;
953         int packet_size;
954         gboolean alt_functions, fivedigits, clampmeter, selectable_lpf;
955 };
956
957 SR_PRIV gboolean sr_es519xx_2400_11b_packet_valid(const uint8_t *buf);
958 SR_PRIV int sr_es519xx_2400_11b_parse(const uint8_t *buf, float *floatval,
959                 struct sr_datafeed_analog *analog, void *info);
960 SR_PRIV gboolean sr_es519xx_2400_11b_altfn_packet_valid(const uint8_t *buf);
961 SR_PRIV int sr_es519xx_2400_11b_altfn_parse(const uint8_t *buf,
962                 float *floatval, struct sr_datafeed_analog *analog, void *info);
963 SR_PRIV gboolean sr_es519xx_19200_11b_5digits_packet_valid(const uint8_t *buf);
964 SR_PRIV int sr_es519xx_19200_11b_5digits_parse(const uint8_t *buf,
965                 float *floatval, struct sr_datafeed_analog *analog, void *info);
966 SR_PRIV gboolean sr_es519xx_19200_11b_clamp_packet_valid(const uint8_t *buf);
967 SR_PRIV int sr_es519xx_19200_11b_clamp_parse(const uint8_t *buf,
968                 float *floatval, struct sr_datafeed_analog *analog, void *info);
969 SR_PRIV gboolean sr_es519xx_19200_11b_packet_valid(const uint8_t *buf);
970 SR_PRIV int sr_es519xx_19200_11b_parse(const uint8_t *buf, float *floatval,
971                 struct sr_datafeed_analog *analog, void *info);
972 SR_PRIV gboolean sr_es519xx_19200_14b_packet_valid(const uint8_t *buf);
973 SR_PRIV int sr_es519xx_19200_14b_parse(const uint8_t *buf, float *floatval,
974                 struct sr_datafeed_analog *analog, void *info);
975 SR_PRIV gboolean sr_es519xx_19200_14b_sel_lpf_packet_valid(const uint8_t *buf);
976 SR_PRIV int sr_es519xx_19200_14b_sel_lpf_parse(const uint8_t *buf,
977                 float *floatval, struct sr_datafeed_analog *analog, void *info);
978
979 /*--- hardware/dmm/fs9922.c -------------------------------------------------*/
980
981 #define FS9922_PACKET_SIZE 14
982
983 struct fs9922_info {
984         gboolean is_auto, is_dc, is_ac, is_rel, is_hold, is_bpn, is_z1, is_z2;
985         gboolean is_max, is_min, is_apo, is_bat, is_nano, is_z3, is_micro;
986         gboolean is_milli, is_kilo, is_mega, is_beep, is_diode, is_percent;
987         gboolean is_z4, is_volt, is_ampere, is_ohm, is_hfe, is_hertz, is_farad;
988         gboolean is_celsius, is_fahrenheit;
989         int bargraph_sign, bargraph_value;
990 };
991
992 SR_PRIV gboolean sr_fs9922_packet_valid(const uint8_t *buf);
993 SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
994                             struct sr_datafeed_analog *analog, void *info);
995 SR_PRIV void sr_fs9922_z1_diode(struct sr_datafeed_analog *analog, void *info);
996
997 /*--- hardware/dmm/fs9721.c -------------------------------------------------*/
998
999 #define FS9721_PACKET_SIZE 14
1000
1001 struct fs9721_info {
1002         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1003         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1004         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1005         gboolean is_c2c1_11, is_c2c1_10, is_c2c1_01, is_c2c1_00, is_sign;
1006 };
1007
1008 SR_PRIV gboolean sr_fs9721_packet_valid(const uint8_t *buf);
1009 SR_PRIV int sr_fs9721_parse(const uint8_t *buf, float *floatval,
1010                             struct sr_datafeed_analog *analog, void *info);
1011 SR_PRIV void sr_fs9721_00_temp_c(struct sr_datafeed_analog *analog, void *info);
1012 SR_PRIV void sr_fs9721_01_temp_c(struct sr_datafeed_analog *analog, void *info);
1013 SR_PRIV void sr_fs9721_10_temp_c(struct sr_datafeed_analog *analog, void *info);
1014 SR_PRIV void sr_fs9721_01_10_temp_f_c(struct sr_datafeed_analog *analog, void *info);
1015 SR_PRIV void sr_fs9721_max_c_min(struct sr_datafeed_analog *analog, void *info);
1016
1017 /*--- hardware/dmm/m2110.c --------------------------------------------------*/
1018
1019 #define BBCGM_M2110_PACKET_SIZE 9
1020
1021 SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf);
1022 SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
1023                              struct sr_datafeed_analog *analog, void *info);
1024
1025 /*--- hardware/dmm/metex14.c ------------------------------------------------*/
1026
1027 #define METEX14_PACKET_SIZE 14
1028
1029 struct metex14_info {
1030         gboolean is_ac, is_dc, is_resistance, is_capacity, is_temperature;
1031         gboolean is_diode, is_frequency, is_ampere, is_volt, is_farad;
1032         gboolean is_hertz, is_ohm, is_celsius, is_pico, is_nano, is_micro;
1033         gboolean is_milli, is_kilo, is_mega, is_gain, is_decibel, is_hfe;
1034         gboolean is_unitless, is_logic;
1035 };
1036
1037 #ifdef HAVE_LIBSERIALPORT
1038 SR_PRIV int sr_metex14_packet_request(struct sr_serial_dev_inst *serial);
1039 #endif
1040 SR_PRIV gboolean sr_metex14_packet_valid(const uint8_t *buf);
1041 SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval,
1042                              struct sr_datafeed_analog *analog, void *info);
1043
1044 /*--- hardware/dmm/rs9lcd.c -------------------------------------------------*/
1045
1046 #define RS9LCD_PACKET_SIZE 9
1047
1048 /* Dummy info struct. The parser does not use it. */
1049 struct rs9lcd_info { int dummy; };
1050
1051 SR_PRIV gboolean sr_rs9lcd_packet_valid(const uint8_t *buf);
1052 SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,
1053                             struct sr_datafeed_analog *analog, void *info);
1054
1055 /*--- hardware/dmm/bm25x.c --------------------------------------------------*/
1056
1057 #define BRYMEN_BM25X_PACKET_SIZE 15
1058
1059 /* Dummy info struct. The parser does not use it. */
1060 struct bm25x_info { int dummy; };
1061
1062 SR_PRIV gboolean sr_brymen_bm25x_packet_valid(const uint8_t *buf);
1063 SR_PRIV int sr_brymen_bm25x_parse(const uint8_t *buf, float *floatval,
1064                              struct sr_datafeed_analog *analog, void *info);
1065
1066 /*--- hardware/dmm/ut71x.c --------------------------------------------------*/
1067
1068 #define UT71X_PACKET_SIZE 11
1069
1070 struct ut71x_info {
1071         gboolean is_voltage, is_resistance, is_capacitance, is_temperature;
1072         gboolean is_celsius, is_fahrenheit, is_current, is_continuity;
1073         gboolean is_diode, is_frequency, is_duty_cycle, is_dc, is_ac;
1074         gboolean is_auto, is_manual, is_sign, is_power, is_loop_current;
1075 };
1076
1077 SR_PRIV gboolean sr_ut71x_packet_valid(const uint8_t *buf);
1078 SR_PRIV int sr_ut71x_parse(const uint8_t *buf, float *floatval,
1079                 struct sr_datafeed_analog *analog, void *info);
1080
1081 /*--- hardware/dmm/vc870.c --------------------------------------------------*/
1082
1083 #define VC870_PACKET_SIZE 23
1084
1085 struct vc870_info {
1086         gboolean is_voltage, is_dc, is_ac, is_temperature, is_resistance;
1087         gboolean is_continuity, is_capacitance, is_diode, is_loop_current;
1088         gboolean is_current, is_micro, is_milli, is_power;
1089         gboolean is_power_factor_freq, is_power_apparent_power, is_v_a_eff_value;
1090         gboolean is_sign2, is_sign1, is_batt, is_ol1, is_max, is_min;
1091         gboolean is_maxmin, is_rel, is_ol2, is_open, is_manu, is_hold;
1092         gboolean is_light, is_usb, is_warning, is_auto_power, is_misplug_warn;
1093         gboolean is_lo, is_hi, is_open2;
1094
1095         gboolean is_frequency, is_dual_display, is_auto, is_rms;
1096 };
1097
1098 SR_PRIV gboolean sr_vc870_packet_valid(const uint8_t *buf);
1099 SR_PRIV int sr_vc870_parse(const uint8_t *buf, float *floatval,
1100                 struct sr_datafeed_analog *analog, void *info);
1101
1102 /*--- hardware/lcr/es51919.c ------------------------------------------------*/
1103
1104 SR_PRIV void es51919_serial_clean(void *priv);
1105 SR_PRIV struct sr_dev_inst *es51919_serial_scan(GSList *options,
1106                                                 const char *vendor,
1107                                                 const char *model);
1108 SR_PRIV int es51919_serial_config_get(uint32_t key, GVariant **data,
1109                                       const struct sr_dev_inst *sdi,
1110                                       const struct sr_channel_group *cg);
1111 SR_PRIV int es51919_serial_config_set(uint32_t key, GVariant *data,
1112                                       const struct sr_dev_inst *sdi,
1113                                       const struct sr_channel_group *cg);
1114 SR_PRIV int es51919_serial_config_list(uint32_t key, GVariant **data,
1115                                        const struct sr_dev_inst *sdi,
1116                                        const struct sr_channel_group *cg);
1117 SR_PRIV int es51919_serial_acquisition_start(const struct sr_dev_inst *sdi,
1118                                              void *cb_data);
1119 SR_PRIV int es51919_serial_acquisition_stop(struct sr_dev_inst *sdi,
1120                                             void *cb_data);
1121
1122 /*--- hardware/dmm/ut372.c --------------------------------------------------*/
1123
1124 #define UT372_PACKET_SIZE 27
1125
1126 struct ut372_info {
1127         int dummy;
1128 };
1129
1130 SR_PRIV gboolean sr_ut372_packet_valid(const uint8_t *buf);
1131 SR_PRIV int sr_ut372_parse(const uint8_t *buf, float *floatval,
1132                 struct sr_datafeed_analog *analog, void *info);
1133
1134 /*--- hardware/scale/kern.c -------------------------------------------------*/
1135
1136 struct kern_info {
1137         gboolean is_gram, is_carat, is_ounce, is_pound, is_troy_ounce;
1138         gboolean is_pennyweight, is_grain, is_tael, is_momme, is_tola;
1139         gboolean is_percentage, is_piece, is_unstable, is_stable, is_error;
1140         int buflen;
1141 };
1142
1143 SR_PRIV gboolean sr_kern_packet_valid(const uint8_t *buf);
1144 SR_PRIV int sr_kern_parse(const uint8_t *buf, float *floatval,
1145                 struct sr_datafeed_analog *analog, void *info);
1146
1147 #endif