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