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