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