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