2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
2012-02-13 13:31:51 +00:00
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
2010-04-02 18:18:27 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-02-04 09:41:30 +00:00
|
|
|
#ifndef LIBSIGROK_SIGROK_H
|
|
|
|
#define LIBSIGROK_SIGROK_H
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
2011-01-20 22:00:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-10-21 22:30:12 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* The public libsigrok header file to be used by frontends.
|
2012-10-21 23:21:20 +00:00
|
|
|
*
|
|
|
|
* This is the only file that libsigrok users (frontends) are supposed to
|
|
|
|
* use and #include. There are other header files which get installed with
|
|
|
|
* libsigrok, but those are not meant to be used directly by frontends.
|
|
|
|
*
|
|
|
|
* The correct way to get/use the libsigrok API functions is:
|
|
|
|
*
|
|
|
|
* @code{.c}
|
|
|
|
* #include <libsigrok/libsigrok.h>
|
|
|
|
* @endcode
|
2012-10-21 22:30:12 +00:00
|
|
|
*/
|
|
|
|
|
2010-04-05 14:41:54 +00:00
|
|
|
/*
|
|
|
|
* All possible return codes of libsigrok functions must be listed here.
|
|
|
|
* Functions should never return hardcoded numbers as status, but rather
|
2012-10-21 15:49:22 +00:00
|
|
|
* use these enum values. All error codes are negative numbers.
|
2010-04-05 14:41:54 +00:00
|
|
|
*
|
|
|
|
* The error codes are globally unique in libsigrok, i.e. if one of the
|
2010-04-05 23:29:32 +00:00
|
|
|
* libsigrok functions returns a "malloc error" it must be exactly the same
|
|
|
|
* return value as used by all other functions to indicate "malloc error".
|
2010-04-05 14:41:54 +00:00
|
|
|
* There must be no functions which indicate two different errors via the
|
|
|
|
* same return code.
|
|
|
|
*
|
|
|
|
* Also, for compatibility reasons, no defined return codes are ever removed
|
2012-10-21 15:49:22 +00:00
|
|
|
* or reused for different errors later. You can only add new entries and
|
2010-04-05 14:41:54 +00:00
|
|
|
* return codes, but never remove or redefine existing ones.
|
|
|
|
*/
|
2012-10-21 15:49:22 +00:00
|
|
|
|
|
|
|
/** Status/error codes returned by libsigrok functions. */
|
|
|
|
enum {
|
|
|
|
SR_OK = 0, /**< No error. */
|
|
|
|
SR_ERR = -1, /**< Generic/unspecified error. */
|
|
|
|
SR_ERR_MALLOC = -2, /**< Malloc/calloc/realloc error. */
|
|
|
|
SR_ERR_ARG = -3, /**< Function argument error. */
|
|
|
|
SR_ERR_BUG = -4, /**< Errors hinting at internal bugs. */
|
|
|
|
SR_ERR_SAMPLERATE = -5, /**< Incorrect samplerate. */
|
|
|
|
};
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-13 01:16:32 +00:00
|
|
|
#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
|
|
|
|
#define SR_MAX_PROBENAME_LEN 32
|
2011-01-05 23:51:29 +00:00
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Handy little macros */
|
2011-02-22 17:05:16 +00:00
|
|
|
#define SR_HZ(n) (n)
|
2011-02-22 16:57:03 +00:00
|
|
|
#define SR_KHZ(n) ((n) * 1000)
|
|
|
|
#define SR_MHZ(n) ((n) * 1000000)
|
|
|
|
#define SR_GHZ(n) ((n) * 1000000000)
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-02-22 16:57:03 +00:00
|
|
|
#define SR_HZ_TO_NS(n) (1000000000 / (n))
|
2011-01-10 17:14:26 +00:00
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** libsigrok loglevels. */
|
|
|
|
enum {
|
|
|
|
SR_LOG_NONE = 0, /**< Output no messages at all. */
|
|
|
|
SR_LOG_ERR = 1, /**< Output error messages. */
|
|
|
|
SR_LOG_WARN = 2, /**< Output warnings. */
|
|
|
|
SR_LOG_INFO = 3, /**< Output informational messages. */
|
|
|
|
SR_LOG_DBG = 4, /**< Output debug messages. */
|
|
|
|
SR_LOG_SPEW = 5, /**< Output very noisy debug messages. */
|
|
|
|
};
|
2011-05-04 17:03:01 +00:00
|
|
|
|
2012-02-01 22:40:35 +00:00
|
|
|
/*
|
|
|
|
* Use SR_API to mark public API symbols, and SR_PRIV for private symbols.
|
|
|
|
*
|
|
|
|
* Variables and functions marked 'static' are private already and don't
|
|
|
|
* need SR_PRIV. However, functions which are not static (because they need
|
|
|
|
* to be used in other libsigrok-internal files) but are also not meant to
|
|
|
|
* be part of the public libsigrok API, must use SR_PRIV.
|
|
|
|
*
|
|
|
|
* This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
|
|
|
|
*
|
2012-04-16 21:16:00 +00:00
|
|
|
* This feature is not available on MinGW/Windows, as it is a feature of
|
|
|
|
* ELF files and MinGW/Windows uses PE files.
|
|
|
|
*
|
2012-02-01 22:40:35 +00:00
|
|
|
* Details: http://gcc.gnu.org/wiki/Visibility
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Marks public libsigrok API symbols. */
|
2012-04-16 21:16:00 +00:00
|
|
|
#ifndef _WIN32
|
2012-02-01 22:40:35 +00:00
|
|
|
#define SR_API __attribute__((visibility("default")))
|
2012-04-16 21:16:00 +00:00
|
|
|
#else
|
|
|
|
#define SR_API
|
|
|
|
#endif
|
2012-02-01 22:40:35 +00:00
|
|
|
|
|
|
|
/* Marks private, non-public libsigrok symbols (not part of the API). */
|
2012-04-16 21:16:00 +00:00
|
|
|
#ifndef _WIN32
|
2012-02-01 22:40:35 +00:00
|
|
|
#define SR_PRIV __attribute__((visibility("hidden")))
|
2012-04-16 21:16:00 +00:00
|
|
|
#else
|
|
|
|
#define SR_PRIV
|
|
|
|
#endif
|
2012-02-01 22:40:35 +00:00
|
|
|
|
2012-02-29 21:32:34 +00:00
|
|
|
typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
|
2011-01-10 12:47:24 +00:00
|
|
|
|
2013-01-22 10:18:18 +00:00
|
|
|
/** Data types used by sr_config_info(). */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_T_UINT64 = 10000,
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_T_CHAR,
|
2011-11-19 00:41:41 +00:00
|
|
|
SR_T_BOOL,
|
2012-05-15 18:45:46 +00:00
|
|
|
SR_T_FLOAT,
|
2012-05-16 00:07:51 +00:00
|
|
|
SR_T_RATIONAL_PERIOD,
|
2012-05-16 23:55:59 +00:00
|
|
|
SR_T_RATIONAL_VOLT,
|
2012-07-01 20:33:57 +00:00
|
|
|
SR_T_KEYVALUE,
|
2012-05-15 18:45:46 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Rational number data type, containing numerator and denominator values. */
|
2012-05-15 18:45:46 +00:00
|
|
|
struct sr_rational {
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Numerator of the rational number. */
|
2012-05-15 18:45:46 +00:00
|
|
|
uint64_t p;
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Denominator of the rational number. */
|
2012-05-15 18:45:46 +00:00
|
|
|
uint64_t q;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Value for sr_datafeed_packet.type. */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_DF_HEADER = 10000,
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DF_END,
|
2013-01-06 15:37:41 +00:00
|
|
|
SR_DF_META,
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DF_TRIGGER,
|
|
|
|
SR_DF_LOGIC,
|
2012-04-22 16:11:31 +00:00
|
|
|
SR_DF_ANALOG,
|
2012-04-30 17:55:06 +00:00
|
|
|
SR_DF_FRAME_BEGIN,
|
|
|
|
SR_DF_FRAME_END,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Values for sr_datafeed_analog.mq. */
|
2012-06-20 21:55:23 +00:00
|
|
|
enum {
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_MQ_VOLTAGE = 10000,
|
2012-06-20 21:55:23 +00:00
|
|
|
SR_MQ_CURRENT,
|
|
|
|
SR_MQ_RESISTANCE,
|
|
|
|
SR_MQ_CAPACITANCE,
|
|
|
|
SR_MQ_TEMPERATURE,
|
|
|
|
SR_MQ_FREQUENCY,
|
|
|
|
SR_MQ_DUTY_CYCLE,
|
2012-08-18 12:25:21 +00:00
|
|
|
SR_MQ_CONTINUITY,
|
2012-09-25 16:33:42 +00:00
|
|
|
SR_MQ_PULSE_WIDTH,
|
2012-09-25 17:34:53 +00:00
|
|
|
SR_MQ_CONDUCTANCE,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Electrical power, usually in W, or dBm. */
|
2012-10-15 06:14:04 +00:00
|
|
|
SR_MQ_POWER,
|
2012-10-21 23:13:36 +00:00
|
|
|
/** Gain (a transistor's gain, or hFE, for example). */
|
2012-10-15 06:14:04 +00:00
|
|
|
SR_MQ_GAIN,
|
2012-11-02 14:20:10 +00:00
|
|
|
/** Logarithmic representation of sound pressure relative to a
|
|
|
|
* reference value. */
|
|
|
|
SR_MQ_SOUND_PRESSURE_LEVEL,
|
2012-12-15 09:50:22 +00:00
|
|
|
SR_MQ_CARBON_MONOXIDE,
|
2012-12-16 17:38:44 +00:00
|
|
|
SR_MQ_RELATIVE_HUMIDITY,
|
2012-06-20 21:55:23 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Values for sr_datafeed_analog.unit. */
|
2012-06-05 15:37:28 +00:00
|
|
|
enum {
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_UNIT_VOLT = 10000,
|
2012-06-20 21:55:23 +00:00
|
|
|
SR_UNIT_AMPERE,
|
|
|
|
SR_UNIT_OHM,
|
|
|
|
SR_UNIT_FARAD,
|
|
|
|
SR_UNIT_KELVIN,
|
2012-08-18 12:26:43 +00:00
|
|
|
SR_UNIT_CELSIUS,
|
|
|
|
SR_UNIT_FAHRENHEIT,
|
2012-06-20 21:55:23 +00:00
|
|
|
SR_UNIT_HERTZ,
|
|
|
|
SR_UNIT_PERCENTAGE,
|
2012-08-18 12:26:43 +00:00
|
|
|
SR_UNIT_BOOLEAN,
|
2012-09-25 16:33:42 +00:00
|
|
|
SR_UNIT_SECOND,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Unit of conductance, the inverse of resistance. */
|
2012-09-25 17:34:53 +00:00
|
|
|
SR_UNIT_SIEMENS,
|
2012-10-21 15:49:22 +00:00
|
|
|
/**
|
|
|
|
* An absolute measurement of power, in decibels, referenced to
|
|
|
|
* 1 milliwatt (dBu).
|
|
|
|
*/
|
2012-10-15 06:14:04 +00:00
|
|
|
SR_UNIT_DECIBEL_MW,
|
2012-10-16 21:28:04 +00:00
|
|
|
/** Voltage in decibel, referenced to 1 volt (dBV). */
|
|
|
|
SR_UNIT_DECIBEL_VOLT,
|
2012-10-21 15:49:22 +00:00
|
|
|
/**
|
|
|
|
* Measurements that intrinsically do not have units attached, such
|
2012-10-16 21:28:04 +00:00
|
|
|
* as ratios, gains, etc. Specifically, a transistor's gain (hFE) is
|
2012-10-21 15:49:22 +00:00
|
|
|
* a unitless quantity, for example.
|
|
|
|
*/
|
2012-10-15 06:14:04 +00:00
|
|
|
SR_UNIT_UNITLESS,
|
2012-11-02 14:20:10 +00:00
|
|
|
/** Sound pressure level relative so 20 micropascals. */
|
|
|
|
SR_UNIT_DECIBEL_SPL,
|
2012-12-15 17:03:10 +00:00
|
|
|
/**
|
|
|
|
* Normalized (0 to 1) concentration of a substance or compound with 0
|
|
|
|
* representing a concentration of 0%, and 1 being 100%. This is
|
|
|
|
* represented as the fraction of number of particles of the substance.
|
|
|
|
*/
|
2012-12-15 09:50:22 +00:00
|
|
|
SR_UNIT_CONCENTRATION,
|
2012-06-05 15:37:28 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Values for sr_datafeed_analog.flags. */
|
2012-08-18 12:33:51 +00:00
|
|
|
enum {
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Voltage measurement is alternating current (AC). */
|
2012-08-18 12:33:51 +00:00
|
|
|
SR_MQFLAG_AC = 0x01,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Voltage measurement is direct current (DC). */
|
2012-08-18 12:33:51 +00:00
|
|
|
SR_MQFLAG_DC = 0x02,
|
|
|
|
/** This is a true RMS measurement. */
|
|
|
|
SR_MQFLAG_RMS = 0x04,
|
|
|
|
/** Value is voltage drop across a diode, or NAN. */
|
|
|
|
SR_MQFLAG_DIODE = 0x08,
|
2012-10-21 23:13:36 +00:00
|
|
|
/** Device is in "hold" mode (repeating the last measurement). */
|
2012-08-18 12:33:51 +00:00
|
|
|
SR_MQFLAG_HOLD = 0x10,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Device is in "max" mode, only updating upon a new max value. */
|
2012-08-18 12:33:51 +00:00
|
|
|
SR_MQFLAG_MAX = 0x20,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Device is in "min" mode, only updating upon a new min value. */
|
2012-08-18 12:33:51 +00:00
|
|
|
SR_MQFLAG_MIN = 0x40,
|
|
|
|
/** Device is in autoranging mode. */
|
|
|
|
SR_MQFLAG_AUTORANGE = 0x80,
|
|
|
|
/** Device is in relative mode. */
|
|
|
|
SR_MQFLAG_RELATIVE = 0x100,
|
2012-11-02 14:20:10 +00:00
|
|
|
/** Sound pressure level is A-weighted in the frequency domain,
|
2012-11-11 01:11:49 +00:00
|
|
|
* according to IEC 61672:2003. */
|
2012-11-02 14:20:10 +00:00
|
|
|
SR_MQFLAG_SPL_FREQ_WEIGHT_A = 0x200,
|
|
|
|
/** Sound pressure level is C-weighted in the frequency domain,
|
2012-11-11 01:11:49 +00:00
|
|
|
* according to IEC 61672:2003. */
|
2012-11-02 14:20:10 +00:00
|
|
|
SR_MQFLAG_SPL_FREQ_WEIGHT_C = 0x400,
|
|
|
|
/** Sound pressure level is Z-weighted (i.e. not at all) in the
|
2012-11-11 01:11:49 +00:00
|
|
|
* frequency domain, according to IEC 61672:2003. */
|
2012-11-02 14:20:10 +00:00
|
|
|
SR_MQFLAG_SPL_FREQ_WEIGHT_Z = 0x800,
|
|
|
|
/** Sound pressure level is not weighted in the frequency domain,
|
|
|
|
* albeit without standards-defined low and high frequency limits. */
|
|
|
|
SR_MQFLAG_SPL_FREQ_WEIGHT_FLAT = 0x1000,
|
|
|
|
/** Sound pressure level measurement is S-weighted (1s) in the
|
|
|
|
* time domain. */
|
|
|
|
SR_MQFLAG_SPL_TIME_WEIGHT_S = 0x2000,
|
|
|
|
/** Sound pressure level measurement is F-weighted (125ms) in the
|
|
|
|
* time domain. */
|
|
|
|
SR_MQFLAG_SPL_TIME_WEIGHT_F = 0x4000,
|
|
|
|
/** Sound pressure level is time-averaged (LAT), also known as
|
|
|
|
* Equivalent Continuous A-weighted Sound Level (LEQ). */
|
|
|
|
SR_MQFLAG_SPL_LAT = 0x8000,
|
|
|
|
/** Sound pressure level represented as a percentage of measurements
|
|
|
|
* that were over a preset alarm level. */
|
|
|
|
SR_MQFLAG_SPL_PCT_OVER_ALARM = 0x10000,
|
2012-08-18 12:33:51 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 18:23:14 +00:00
|
|
|
struct sr_context;
|
|
|
|
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_packet {
|
2010-04-02 18:18:27 +00:00
|
|
|
uint16_t type;
|
2012-12-13 21:07:53 +00:00
|
|
|
const void *payload;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_header {
|
2010-04-02 18:18:27 +00:00
|
|
|
int feed_version;
|
|
|
|
struct timeval starttime;
|
2012-04-22 16:11:31 +00:00
|
|
|
};
|
|
|
|
|
2013-01-06 15:37:41 +00:00
|
|
|
struct sr_datafeed_meta {
|
|
|
|
GSList *config;
|
|
|
|
};
|
|
|
|
|
2011-06-19 00:35:23 +00:00
|
|
|
struct sr_datafeed_logic {
|
|
|
|
uint64_t length;
|
|
|
|
uint16_t unitsize;
|
2011-06-19 12:28:50 +00:00
|
|
|
void *data;
|
2011-06-19 00:35:23 +00:00
|
|
|
};
|
|
|
|
|
2012-04-22 16:11:31 +00:00
|
|
|
struct sr_datafeed_analog {
|
2013-01-25 14:16:39 +00:00
|
|
|
/** The probes for which data is included in this packet. */
|
2013-01-23 02:40:44 +00:00
|
|
|
GSList *probes;
|
2012-04-22 16:11:31 +00:00
|
|
|
int num_samples;
|
2012-10-21 23:13:36 +00:00
|
|
|
/** Measured quantity (voltage, current, temperature, and so on). */
|
2012-08-18 12:33:51 +00:00
|
|
|
int mq;
|
|
|
|
/** Unit in which the MQ is measured. */
|
|
|
|
int unit;
|
|
|
|
/** Bitmap with extra information about the MQ. */
|
|
|
|
uint64_t mqflags;
|
2013-01-25 14:16:39 +00:00
|
|
|
/** The analog value(s). The data is interleaved according to
|
|
|
|
* the probes list. */
|
2012-04-22 16:11:31 +00:00
|
|
|
float *data;
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input {
|
|
|
|
struct sr_input_format *format;
|
2012-07-29 00:13:22 +00:00
|
|
|
GHashTable *param;
|
2012-07-20 19:37:36 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-07-29 00:13:22 +00:00
|
|
|
void *internal;
|
2010-04-30 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input_format {
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2010-04-30 22:54:39 +00:00
|
|
|
char *description;
|
2011-01-07 18:55:25 +00:00
|
|
|
int (*format_match) (const char *filename);
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*init) (struct sr_input *in);
|
|
|
|
int (*loadfile) (struct sr_input *in, const char *filename);
|
2010-04-30 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output {
|
|
|
|
struct sr_output_format *format;
|
2012-07-20 19:37:36 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *param;
|
|
|
|
void *internal;
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output_format {
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *description;
|
2011-01-09 22:22:48 +00:00
|
|
|
int df_type;
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*init) (struct sr_output *o);
|
2013-01-22 10:18:18 +00:00
|
|
|
/* Obsolete, use recv() instead. */
|
2012-03-28 18:00:13 +00:00
|
|
|
int (*data) (struct sr_output *o, const uint8_t *data_in,
|
|
|
|
uint64_t length_in, uint8_t **data_out,
|
|
|
|
uint64_t *length_out);
|
2013-01-22 10:18:18 +00:00
|
|
|
/* Obsolete, use recv() instead. */
|
2012-03-28 18:00:13 +00:00
|
|
|
int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
|
2010-04-02 18:18:27 +00:00
|
|
|
uint64_t *length_out);
|
2012-09-08 00:31:08 +00:00
|
|
|
GString *(*recv) (struct sr_output *o, const struct sr_dev_inst *sdi,
|
2012-12-13 21:07:53 +00:00
|
|
|
const struct sr_datafeed_packet *packet);
|
2012-09-08 00:31:08 +00:00
|
|
|
int (*cleanup) (struct sr_output *o);
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-10 17:08:43 +00:00
|
|
|
enum {
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_PROBE_LOGIC = 10000,
|
2012-07-24 17:10:09 +00:00
|
|
|
SR_PROBE_ANALOG,
|
2011-01-10 17:08:43 +00:00
|
|
|
};
|
|
|
|
|
2011-02-08 16:47:38 +00:00
|
|
|
struct sr_probe {
|
2013-01-22 10:18:18 +00:00
|
|
|
/* The index field will go: use g_slist_length(sdi->probes) instead. */
|
2010-04-02 18:18:27 +00:00
|
|
|
int index;
|
2011-01-22 13:18:31 +00:00
|
|
|
int type;
|
2010-04-02 18:18:27 +00:00
|
|
|
gboolean enabled;
|
|
|
|
char *name;
|
|
|
|
char *trigger;
|
|
|
|
};
|
|
|
|
|
2013-01-06 15:37:41 +00:00
|
|
|
struct sr_config {
|
|
|
|
int key;
|
2012-07-08 12:56:54 +00:00
|
|
|
const void *value;
|
|
|
|
};
|
|
|
|
|
2013-01-06 15:37:41 +00:00
|
|
|
struct sr_config_info {
|
|
|
|
int key;
|
2013-01-20 15:36:35 +00:00
|
|
|
int datatype;
|
2013-01-06 15:37:41 +00:00
|
|
|
char *id;
|
|
|
|
char *name;
|
|
|
|
char *description;
|
|
|
|
};
|
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2011-05-04 20:26:55 +00:00
|
|
|
/*--- Device classes ------------------------------------------------*/
|
|
|
|
|
|
|
|
/** The device can act as logic analyzer. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LOGIC_ANALYZER = 10000,
|
2011-01-15 04:11:40 +00:00
|
|
|
|
2012-04-22 16:11:31 +00:00
|
|
|
/** The device can act as an oscilloscope. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_OSCILLOSCOPE,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
2012-07-01 20:37:15 +00:00
|
|
|
/** The device can act as a multimeter. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_MULTIMETER,
|
2012-01-21 14:34:11 +00:00
|
|
|
|
2012-07-01 20:37:15 +00:00
|
|
|
/** The device is a demo device. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_DEMO_DEV,
|
2012-01-21 14:34:11 +00:00
|
|
|
|
2012-11-02 14:20:10 +00:00
|
|
|
/** The device can act as a sound level meter. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_SOUNDLEVELMETER,
|
2012-07-01 20:37:15 +00:00
|
|
|
|
2012-12-04 22:58:03 +00:00
|
|
|
/** The device can measure temperature. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_THERMOMETER,
|
2012-12-04 22:58:03 +00:00
|
|
|
|
|
|
|
/** The device can measure humidity. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_HYGROMETER,
|
2012-12-04 22:58:03 +00:00
|
|
|
|
2013-01-25 14:01:49 +00:00
|
|
|
/*--- Driver scan options -------------------------------------------*/
|
2013-01-21 20:58:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Specification on how to connect to a device.
|
|
|
|
*
|
2013-01-21 22:22:47 +00:00
|
|
|
* In combination with SR_CONF_SERIALCOMM, this is a serial port in
|
2013-01-21 20:58:19 +00:00
|
|
|
* the form which makes sense to the OS (e.g., /dev/ttyS0).
|
|
|
|
* Otherwise this specifies a USB device, either in the form of
|
|
|
|
* @verbatim <bus>.<address> @endverbatim (decimal, e.g. 1.65) or
|
|
|
|
* @verbatim <vendorid>.<productid> @endverbatim
|
|
|
|
* (hexadecimal, e.g. 1d6b.0001).
|
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CONN = 20000,
|
2013-01-21 20:58:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Serial communication specification, in the form:
|
|
|
|
*
|
|
|
|
* @verbatim <baudrate>/<databits><parity><stopbits> @endverbatim
|
|
|
|
*
|
|
|
|
* Example: 9600/8n1
|
|
|
|
*
|
|
|
|
* The string may also be followed by one or more special settings,
|
|
|
|
* in the form "/key=value". Supported keys and their values are:
|
|
|
|
*
|
|
|
|
* rts 0,1 set the port's RTS pin to low or high
|
|
|
|
* dtr 0,1 set the port's DTR pin to low or high
|
|
|
|
* flow 0 no flow control
|
|
|
|
* 1 hardware-based (RTS/CTS) flow control
|
|
|
|
* 2 software-based (XON/XOFF) flow control
|
|
|
|
*
|
|
|
|
* This is always an optional parameter, since a driver typically
|
|
|
|
* knows the speed at which the device wants to communicate.
|
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_SERIALCOMM,
|
2013-01-21 20:58:19 +00:00
|
|
|
|
2012-07-01 20:37:15 +00:00
|
|
|
/*--- Device configuration ------------------------------------------*/
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/** The device supports setting/changing its samplerate. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_SAMPLERATE = 30000,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/** The device supports setting a pre/post-trigger capture ratio. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CAPTURE_RATIO,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/** The device supports setting a pattern (pattern generator mode). */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_PATTERN_MODE,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
2011-10-29 02:57:17 +00:00
|
|
|
/** The device supports Run Length Encoding. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_RLE,
|
2011-10-29 02:57:17 +00:00
|
|
|
|
2012-04-22 16:11:31 +00:00
|
|
|
/** The device supports setting trigger slope. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_TRIGGER_SLOPE,
|
2012-05-15 18:45:46 +00:00
|
|
|
|
|
|
|
/** Trigger source. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_TRIGGER_SOURCE,
|
2012-05-15 18:45:46 +00:00
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Horizontal trigger position. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_HORIZ_TRIGGERPOS,
|
2012-05-15 18:45:46 +00:00
|
|
|
|
|
|
|
/** Buffer size. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_BUFFERSIZE,
|
2012-05-15 18:45:46 +00:00
|
|
|
|
|
|
|
/** Time base. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_TIMEBASE,
|
2012-04-22 16:11:31 +00:00
|
|
|
|
2012-05-15 20:39:32 +00:00
|
|
|
/** Filter. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_FILTER,
|
2012-05-15 20:39:32 +00:00
|
|
|
|
2012-05-16 23:55:59 +00:00
|
|
|
/** Volts/div. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_VDIV,
|
2012-05-16 23:55:59 +00:00
|
|
|
|
2012-05-17 01:16:01 +00:00
|
|
|
/** Coupling. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_COUPLING,
|
2012-05-17 01:16:01 +00:00
|
|
|
|
2013-01-25 10:52:27 +00:00
|
|
|
/** Trigger types. */
|
|
|
|
SR_CONF_TRIGGER_TYPE,
|
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/*--- Special stuff -------------------------------------------------*/
|
|
|
|
|
2013-01-25 14:01:49 +00:00
|
|
|
/** Scan options supported by the driver. */
|
2013-01-25 14:16:39 +00:00
|
|
|
SR_CONF_SCAN_OPTIONS = 40000,
|
2013-01-25 14:01:49 +00:00
|
|
|
|
|
|
|
/** Device options for a particular device. */
|
|
|
|
SR_CONF_DEVICE_OPTIONS,
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Session filename. */
|
2013-01-25 14:16:39 +00:00
|
|
|
SR_CONF_SESSIONFILE,
|
2012-07-03 10:55:46 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/** The device supports specifying a capturefile to inject. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CAPTUREFILE,
|
2011-01-15 04:11:40 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/** The device supports specifying the capturefile unit size. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CAPTURE_UNITSIZE,
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/** The device supports setting the number of probes. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CAPTURE_NUM_PROBES,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/*--- Acquisition modes ---------------------------------------------*/
|
|
|
|
|
|
|
|
/**
|
2012-10-21 23:13:36 +00:00
|
|
|
* The device supports setting a sample time limit (how long
|
|
|
|
* the sample acquisition should run, in ms).
|
2011-05-04 20:26:55 +00:00
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LIMIT_MSEC = 50000,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/**
|
2012-10-21 23:13:36 +00:00
|
|
|
* The device supports setting a sample number limit (how many
|
|
|
|
* samples should be acquired).
|
2011-05-04 20:26:55 +00:00
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
2012-04-30 17:55:06 +00:00
|
|
|
/**
|
2012-10-21 23:13:36 +00:00
|
|
|
* The device supports setting a frame limit (how many
|
|
|
|
* frames should be acquired).
|
2012-04-30 17:55:06 +00:00
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LIMIT_FRAMES,
|
2012-04-30 17:55:06 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/**
|
2012-10-21 23:13:36 +00:00
|
|
|
* The device supports continuous sampling. Neither a time limit
|
2011-05-04 20:26:55 +00:00
|
|
|
* nor a sample number limit has to be supplied, it will just acquire
|
|
|
|
* samples continuously, until explicitly stopped by a certain command.
|
|
|
|
*/
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CONTINUOUS,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst {
|
2012-07-12 19:00:18 +00:00
|
|
|
struct sr_dev_driver *driver;
|
2010-04-02 18:18:27 +00:00
|
|
|
int index;
|
|
|
|
int status;
|
2012-02-17 22:55:27 +00:00
|
|
|
int inst_type;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *vendor;
|
|
|
|
char *model;
|
|
|
|
char *version;
|
2012-07-08 14:37:39 +00:00
|
|
|
GSList *probes;
|
2011-01-09 05:50:45 +00:00
|
|
|
void *priv;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Types of device instances (sr_dev_inst). */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2012-03-14 19:02:48 +00:00
|
|
|
/** Device instance type for USB devices. */
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_INST_USB = 10000,
|
2012-03-14 19:02:48 +00:00
|
|
|
/** Device instance type for serial port devices. */
|
|
|
|
SR_INST_SERIAL,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/** Device instance status. */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2012-10-21 15:49:22 +00:00
|
|
|
/** The device instance was not found. */
|
2012-11-02 16:56:56 +00:00
|
|
|
SR_ST_NOT_FOUND = 10000,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** The device instance was found, but is still booting. */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_INITIALIZING,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** The device instance is live, but not in use. */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_INACTIVE,
|
2012-10-21 15:49:22 +00:00
|
|
|
/** The device instance is actively in use in a session. */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_ACTIVE,
|
2012-11-06 14:02:37 +00:00
|
|
|
/** The device is winding down its session. */
|
|
|
|
SR_ST_STOPPING,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2010-04-15 18:07:16 +00:00
|
|
|
/*
|
|
|
|
* A device supports either a range of samplerates with steps of a given
|
|
|
|
* granularity, or is limited to a set of defined samplerates. Use either
|
2010-04-02 18:18:27 +00:00
|
|
|
* step or list, but not both.
|
|
|
|
*/
|
2011-02-08 17:07:19 +00:00
|
|
|
struct sr_samplerates {
|
2010-04-02 18:18:27 +00:00
|
|
|
uint64_t low;
|
|
|
|
uint64_t high;
|
|
|
|
uint64_t step;
|
2012-05-07 14:07:06 +00:00
|
|
|
const uint64_t *list;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
struct sr_dev_driver {
|
|
|
|
/* Driver-specific */
|
2010-04-02 18:18:27 +00:00
|
|
|
char *name;
|
2011-01-29 16:10:24 +00:00
|
|
|
char *longname;
|
2010-04-02 18:18:27 +00:00
|
|
|
int api_version;
|
2012-12-03 01:47:55 +00:00
|
|
|
int (*init) (struct sr_context *sr_ctx);
|
2012-02-12 19:52:42 +00:00
|
|
|
int (*cleanup) (void);
|
2012-07-08 14:25:23 +00:00
|
|
|
GSList *(*scan) (GSList *options);
|
2012-08-05 22:59:25 +00:00
|
|
|
GSList *(*dev_list) (void);
|
|
|
|
int (*dev_clear) (void);
|
2013-01-24 18:19:09 +00:00
|
|
|
int (*config_get) (int id, const void **value,
|
|
|
|
const struct sr_dev_inst *sdi);
|
|
|
|
int (*config_set) (int id, const void *value,
|
|
|
|
const struct sr_dev_inst *sdi);
|
2013-01-25 00:24:42 +00:00
|
|
|
int (*config_list) (int info_id, const void **data,
|
|
|
|
const struct sr_dev_inst *sdi);
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 18:07:16 +00:00
|
|
|
/* Device-specific */
|
2012-07-21 20:04:47 +00:00
|
|
|
int (*dev_open) (struct sr_dev_inst *sdi);
|
|
|
|
int (*dev_close) (struct sr_dev_inst *sdi);
|
2012-07-21 20:41:58 +00:00
|
|
|
int (*dev_acquisition_start) (const struct sr_dev_inst *sdi,
|
|
|
|
void *cb_data);
|
2012-11-06 14:02:37 +00:00
|
|
|
int (*dev_acquisition_stop) (struct sr_dev_inst *sdi,
|
2012-07-21 20:41:58 +00:00
|
|
|
void *cb_data);
|
2012-07-08 14:40:54 +00:00
|
|
|
|
|
|
|
/* Dynamic */
|
2012-07-29 22:22:26 +00:00
|
|
|
void *priv;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-02-08 16:50:29 +00:00
|
|
|
struct sr_session {
|
2012-10-21 15:49:22 +00:00
|
|
|
/** List of struct sr_dev pointers. */
|
2012-02-17 21:25:01 +00:00
|
|
|
GSList *devs;
|
2012-10-21 15:49:22 +00:00
|
|
|
/** List of sr_receive_data_callback_t items. */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *datafeed_callbacks;
|
|
|
|
GTimeVal starttime;
|
2012-07-06 21:23:31 +00:00
|
|
|
|
|
|
|
unsigned int num_sources;
|
|
|
|
|
2012-10-21 15:49:22 +00:00
|
|
|
/*
|
|
|
|
* Both "sources" and "pollfds" are of the same size and contain pairs
|
|
|
|
* of descriptor and callback function. We can not embed the GPollFD
|
|
|
|
* into the source struct since we want to be able to pass the array
|
|
|
|
* of all poll descriptors to g_poll().
|
2012-07-06 21:23:31 +00:00
|
|
|
*/
|
|
|
|
struct source *sources;
|
|
|
|
GPollFD *pollfds;
|
|
|
|
int source_timeout;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "proto.h"
|
|
|
|
#include "version.h"
|
2011-01-15 13:41:57 +00:00
|
|
|
|
2011-01-20 22:00:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
#endif
|