2010-04-02 18:18:27 +00:00
|
|
|
/*
|
2013-04-23 20:24:30 +00:00
|
|
|
* This file is part of the libsigrok project.
|
2010-04-02 18:18:27 +00:00
|
|
|
*
|
2013-03-24 10:21:00 +00:00
|
|
|
* Copyright (C) 2013 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
|
2013-04-06 17:18:37 +00:00
|
|
|
* use and \#include. There are other header files which get installed with
|
2012-10-21 23:21:20 +00:00
|
|
|
* 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. */
|
2013-04-16 00:33:03 +00:00
|
|
|
SR_ERR_NA = -6, /**< Not applicable. */
|
2013-04-23 13:14:42 +00:00
|
|
|
SR_ERR_DEV_CLOSED = -7, /**< Device is closed, but needs to be open. */
|
2013-06-13 12:23:06 +00:00
|
|
|
SR_ERR_TIMEOUT = -8, /**< A timeout occurred. */
|
2013-04-27 08:49:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: When adding entries here, don't forget to also update the
|
|
|
|
* sr_strerror() and sr_strerror_name() functions in error.c.
|
|
|
|
*/
|
2012-10-21 15:49:22 +00:00
|
|
|
};
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-13 01:16:32 +00:00
|
|
|
#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)
|
2013-03-09 11:20:17 +00:00
|
|
|
#define SR_KHZ(n) ((n) * (uint64_t)(1000ULL))
|
|
|
|
#define SR_MHZ(n) ((n) * (uint64_t)(1000000ULL))
|
|
|
|
#define SR_GHZ(n) ((n) * (uint64_t)(1000000000ULL))
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2013-03-09 11:20:17 +00:00
|
|
|
#define SR_HZ_TO_NS(n) ((uint64_t)(1000000000ULL) / (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,
|
2013-06-16 23:25:41 +00:00
|
|
|
SR_T_UINT64_RANGE,
|
2013-08-04 14:20:07 +00:00
|
|
|
SR_T_DOUBLE_RANGE,
|
2012-05-15 18:45:46 +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,
|
2013-10-03 19:37:14 +00:00
|
|
|
SR_UNIT_REVOLUTIONS_PER_MINUTE,
|
2013-10-10 20:28:35 +00:00
|
|
|
SR_UNIT_VOLT_AMPERE,
|
|
|
|
SR_UNIT_WATT,
|
|
|
|
SR_UNIT_WATT_HOUR,
|
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;
|
|
|
|
};
|
|
|
|
|
2013-02-21 20:27:27 +00:00
|
|
|
/** Input (file) format struct. */
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input {
|
2013-02-21 20:27:27 +00:00
|
|
|
/**
|
|
|
|
* A pointer to this input format's 'struct sr_input_format'.
|
|
|
|
* The frontend can use this to call the module's callbacks.
|
|
|
|
*/
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input_format *format;
|
2013-02-21 20:27:27 +00:00
|
|
|
|
2012-07-29 00:13:22 +00:00
|
|
|
GHashTable *param;
|
2013-02-21 20:27:27 +00:00
|
|
|
|
2012-07-20 19:37:36 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2013-02-21 20:27:27 +00:00
|
|
|
|
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 {
|
2013-02-21 20:27:27 +00:00
|
|
|
/** The unique ID for this input format. Must not be NULL. */
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2013-02-21 20:27:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A short description of the input format, which can (for example)
|
|
|
|
* be displayed to the user by frontends. Must not be NULL.
|
|
|
|
*/
|
2010-04-30 22:54:39 +00:00
|
|
|
char *description;
|
2013-02-21 20:27:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this input module can load and parse the specified file.
|
|
|
|
*
|
|
|
|
* @param filename The name (and path) of the file to check.
|
|
|
|
*
|
|
|
|
* @return TRUE if this module knows the format, FALSE if it doesn't.
|
|
|
|
*/
|
2011-01-07 18:55:25 +00:00
|
|
|
int (*format_match) (const char *filename);
|
2013-02-21 20:27:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the input module.
|
|
|
|
*
|
|
|
|
* @param in A pointer to a valid 'struct sr_input' that the caller
|
|
|
|
* has to allocate and provide to this function. It is also
|
|
|
|
* the responsibility of the caller to free it later.
|
|
|
|
* @param filename The name (and path) of the file to use.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code upon failure.
|
|
|
|
*/
|
2013-02-21 13:48:43 +00:00
|
|
|
int (*init) (struct sr_input *in, const char *filename);
|
2013-02-21 20:27:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a file, parsing the input according to the file's format.
|
|
|
|
*
|
|
|
|
* This function will send datafeed packets to the session bus, so
|
|
|
|
* the calling frontend must have registered its session callbacks
|
|
|
|
* beforehand.
|
|
|
|
*
|
|
|
|
* The packet types sent across the session bus by this function must
|
|
|
|
* include at least SR_DF_HEADER, SR_DF_END, and an appropriate data
|
|
|
|
* type such as SR_DF_LOGIC. It may also send a SR_DF_TRIGGER packet
|
|
|
|
* if appropriate.
|
|
|
|
*
|
|
|
|
* @param in A pointer to a valid 'struct sr_input' that the caller
|
|
|
|
* has to allocate and provide to this function. It is also
|
|
|
|
* the responsibility of the caller to free it later.
|
|
|
|
* @param filename The name (and path) of the file to use.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code upon failure.
|
|
|
|
*/
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*loadfile) (struct sr_input *in, const char *filename);
|
2010-04-30 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
2013-02-22 14:12:32 +00:00
|
|
|
/** Output (file) format struct. */
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output {
|
2013-02-22 14:12:32 +00:00
|
|
|
/**
|
|
|
|
* A pointer to this output format's 'struct sr_output_format'.
|
|
|
|
* The frontend can use this to call the module's callbacks.
|
|
|
|
*/
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output_format *format;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The device for which this output module is creating output. This
|
|
|
|
* can be used by the module to find out probe names and numbers.
|
|
|
|
*/
|
2012-07-20 19:37:36 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An optional parameter which the frontend can pass in to the
|
|
|
|
* output module. How the string is interpreted is entirely up to
|
|
|
|
* the module.
|
|
|
|
*/
|
2010-04-02 18:18:27 +00:00
|
|
|
char *param;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A generic pointer which can be used by the module to keep internal
|
|
|
|
* state between calls into its callback functions.
|
|
|
|
*
|
|
|
|
* For example, the module might store a pointer to a chunk of output
|
|
|
|
* there, and only flush it when it reaches a certain size.
|
|
|
|
*/
|
2010-04-02 18:18:27 +00:00
|
|
|
void *internal;
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output_format {
|
2013-02-22 14:12:32 +00:00
|
|
|
/**
|
|
|
|
* A unique ID for this output format. Must not be NULL.
|
|
|
|
*
|
|
|
|
* It can be used by frontends to select this output format for use.
|
|
|
|
*
|
|
|
|
* For example, calling sigrok-cli with <code>-O hex</code> will
|
|
|
|
* select the hexadecimal text output format.
|
|
|
|
*/
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A short description of the output format. Must not be NULL.
|
|
|
|
*
|
|
|
|
* This can be displayed by frontends, e.g. when selecting the output
|
|
|
|
* format for saving a file.
|
|
|
|
*/
|
2010-04-02 18:18:27 +00:00
|
|
|
char *description;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
2011-01-09 22:22:48 +00:00
|
|
|
int df_type;
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called once, at the beginning of an output stream.
|
|
|
|
*
|
|
|
|
* The device struct will be available in the output struct passed in,
|
|
|
|
* as well as the param field -- which may be NULL or an empty string,
|
|
|
|
* if no parameter was passed.
|
|
|
|
*
|
|
|
|
* The module can use this to initialize itself, create a struct for
|
|
|
|
* keeping state and storing it in the <code>internal</code> field.
|
|
|
|
*
|
|
|
|
* @param o Pointer to the respective 'struct sr_output'.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code otherwise.
|
|
|
|
*/
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*init) (struct sr_output *o);
|
2013-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whenever a chunk of data comes in, it will be passed to the
|
|
|
|
* output module via this function. The <code>data_in</code> and
|
|
|
|
* <code>length_in</code> values refers to this data; the module
|
|
|
|
* must not alter or g_free() this buffer.
|
|
|
|
*
|
|
|
|
* The function must allocate a buffer for storing its output, and
|
|
|
|
* pass along a pointer to this buffer in the <code>data_out</code>
|
|
|
|
* parameter, as well as storing the length of the buffer in
|
|
|
|
* <code>length_out</code>. The calling frontend will g_free()
|
|
|
|
* this buffer when it's done with it.
|
|
|
|
*
|
|
|
|
* IMPORTANT: The memory allocation much happen using a glib memory
|
|
|
|
* allocation call (not a "normal" malloc) since g_free() will be
|
|
|
|
* used to free the memory!
|
|
|
|
*
|
|
|
|
* If there is no output, this function MUST store NULL in the
|
|
|
|
* <code>data_out</code> parameter, so the caller knows not to try
|
|
|
|
* and g_free() it.
|
|
|
|
*
|
2013-04-27 15:29:46 +00:00
|
|
|
* Note: This API call is obsolete, use receive() instead.
|
2013-02-22 14:12:32 +00:00
|
|
|
*
|
|
|
|
* @param o Pointer to the respective 'struct sr_output'.
|
|
|
|
* @param data_in Pointer to the input data buffer.
|
|
|
|
* @param length_in Length of the input.
|
|
|
|
* @param data_out Pointer to the allocated output buffer.
|
|
|
|
* @param length_out Length (in bytes) of the output.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code otherwise.
|
|
|
|
*/
|
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-02-22 14:12:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called when an event occurs in the datafeed
|
|
|
|
* which the output module may need to be aware of. No data is
|
|
|
|
* passed in, only the fact that the event occurs. The following
|
|
|
|
* events can currently be passed in:
|
|
|
|
*
|
|
|
|
* - SR_DF_TRIGGER: At this point in the datafeed, the trigger
|
|
|
|
* matched. The output module may mark this in some way, e.g. by
|
|
|
|
* plotting a red line on a graph.
|
|
|
|
*
|
|
|
|
* - SR_DF_END: This marks the end of the datafeed. No more calls
|
|
|
|
* into the output module will be done, so this is a good time to
|
|
|
|
* free up any memory used to keep state, for example.
|
|
|
|
*
|
|
|
|
* Any output generated by this function must have a reference to
|
|
|
|
* it stored in the <code>data_out</code> and <code>length_out</code>
|
|
|
|
* parameters, or NULL if no output was generated.
|
|
|
|
*
|
2013-04-27 15:29:46 +00:00
|
|
|
* Note: This API call is obsolete, use receive() instead.
|
2013-02-22 14:12:32 +00:00
|
|
|
*
|
|
|
|
* @param o Pointer to the respective 'struct sr_output'.
|
|
|
|
* @param event_type Type of event that occured.
|
|
|
|
* @param data_out Pointer to the allocated output buffer.
|
|
|
|
* @param length_out Length (in bytes) of the output.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code otherwise.
|
|
|
|
*/
|
2012-03-28 18:00:13 +00:00
|
|
|
int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
|
2013-04-27 15:29:46 +00:00
|
|
|
uint64_t *length_out);
|
2013-02-22 14:12:32 +00:00
|
|
|
|
2013-04-27 15:29:46 +00:00
|
|
|
/**
|
|
|
|
* This function is passed a copy of every packed in the data feed.
|
|
|
|
* Any output generated by the output module in response to the
|
|
|
|
* packet should be returned in a newly allocated GString
|
|
|
|
* <code>out</code>, which will be freed by the caller.
|
|
|
|
*
|
|
|
|
* Packets not of interest to the output module can just be ignored,
|
|
|
|
* and the <code>out</code> parameter set to NULL.
|
|
|
|
*
|
|
|
|
* @param o Pointer to the respective 'struct sr_output'.
|
|
|
|
* @param sdi The device instance that generated the packet.
|
|
|
|
* @param packet The complete packet.
|
|
|
|
* @param out A pointer where a GString * should be stored if
|
|
|
|
* the module generates output, or NULL if not.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code otherwise.
|
|
|
|
*/
|
|
|
|
int (*receive) (struct sr_output *o, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_datafeed_packet *packet, GString **out);
|
2013-02-22 14:12:32 +00:00
|
|
|
|
2013-04-27 15:29:46 +00:00
|
|
|
/**
|
|
|
|
* This function is called after the caller is finished using
|
|
|
|
* the output module, and can be used to free any internal
|
|
|
|
* resources the module may keep.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a negative error code otherwise.
|
|
|
|
*/
|
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;
|
2013-03-25 14:38:44 +00:00
|
|
|
GVariant *data;
|
2012-07-08 12:56:54 +00:00
|
|
|
};
|
|
|
|
|
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-10-10 20:28:35 +00:00
|
|
|
/** The device can measure energy consumption. */
|
|
|
|
SR_CONF_ENERGYMETER,
|
|
|
|
|
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
|
|
|
|
2013-03-16 19:17:41 +00:00
|
|
|
/** The device supports setting its samplerate, in Hz. */
|
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,
|
|
|
|
|
2013-03-16 19:17:41 +00:00
|
|
|
/** The device supports setting its sample interval, in ms. */
|
|
|
|
SR_CONF_SAMPLE_INTERVAL,
|
|
|
|
|
2013-04-07 22:29:37 +00:00
|
|
|
/** Number of timebases, as related to SR_CONF_TIMEBASE. */
|
|
|
|
SR_CONF_NUM_TIMEBASE,
|
|
|
|
|
|
|
|
/** Number of vertical divisions, as related to SR_CONF_VDIV. */
|
|
|
|
SR_CONF_NUM_VDIV,
|
|
|
|
|
2013-06-15 10:09:31 +00:00
|
|
|
/** Sound pressure level frequency weighting. */
|
|
|
|
SR_CONF_SPL_WEIGHT_FREQ,
|
|
|
|
|
|
|
|
/** Sound pressure level time weighting. */
|
|
|
|
SR_CONF_SPL_WEIGHT_TIME,
|
|
|
|
|
2013-06-16 23:25:41 +00:00
|
|
|
/** Sound pressure level measurement range. */
|
|
|
|
SR_CONF_SPL_MEASUREMENT_RANGE,
|
|
|
|
|
2013-06-16 10:12:20 +00:00
|
|
|
/** Max hold mode. */
|
|
|
|
SR_CONF_HOLD_MAX,
|
|
|
|
|
|
|
|
/** Min hold mode. */
|
|
|
|
SR_CONF_HOLD_MIN,
|
|
|
|
|
2013-08-04 14:20:07 +00:00
|
|
|
/** Logic low-high threshold range. */
|
|
|
|
SR_CONF_VOLTAGE_THRESHOLD,
|
|
|
|
|
2013-09-24 07:00:16 +00:00
|
|
|
/** The device supports using a external clock. */
|
|
|
|
SR_CONF_EXTERNAL_CLOCK,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The device supports swapping channels. Typical this is between
|
|
|
|
* buffered and unbuffered channels.
|
|
|
|
*/
|
|
|
|
SR_CONF_SWAP,
|
|
|
|
|
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
|
|
|
|
2013-06-17 09:54:37 +00:00
|
|
|
/** Power off the device. */
|
|
|
|
SR_CONF_POWER_OFF,
|
|
|
|
|
2013-06-19 10:18:00 +00:00
|
|
|
/** Data source for acquisition. If not present, acquisition from
|
|
|
|
* the device is always "live", i.e. acquisition starts when the
|
|
|
|
* frontend asks and the results are sent out as soon as possible.
|
|
|
|
*
|
|
|
|
* If present, it indicates that either the device has no live
|
|
|
|
* acquisition capability (for example a pure data logger), or
|
|
|
|
* there is a choice. sr_config_list() returns those choices.
|
|
|
|
*
|
|
|
|
* In any case if a device has live acquisition capabilities, it
|
|
|
|
* is always the default. */
|
|
|
|
SR_CONF_DATA_SOURCE,
|
|
|
|
|
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,
|
2013-03-11 15:35:18 +00:00
|
|
|
|
|
|
|
/** The device has internal storage, into which data is logged. This
|
|
|
|
* starts or stops the internal logging. */
|
|
|
|
SR_CONF_DATALOG,
|
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;
|
2012-10-01 01:03:24 +00:00
|
|
|
void *conn;
|
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
|
|
|
};
|
|
|
|
|
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-03-25 14:38:44 +00:00
|
|
|
int (*config_get) (int id, GVariant **data,
|
2013-01-24 18:19:09 +00:00
|
|
|
const struct sr_dev_inst *sdi);
|
2013-03-25 14:38:44 +00:00
|
|
|
int (*config_set) (int id, GVariant *data,
|
2013-01-24 18:19:09 +00:00
|
|
|
const struct sr_dev_inst *sdi);
|
2013-03-25 14:38:44 +00:00
|
|
|
int (*config_list) (int info_id, GVariant **data,
|
2013-01-25 00:24:42 +00:00
|
|
|
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;
|
2013-04-15 20:08:55 +00:00
|
|
|
/** List of struct datafeed_callback pointers. */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *datafeed_callbacks;
|
|
|
|
GTimeVal starttime;
|
2013-09-21 15:44:49 +00:00
|
|
|
gboolean running;
|
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;
|
2013-02-02 06:50:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These are our synchronization primitives for stopping the session in
|
|
|
|
* an async fashion. We need to make sure the session is stopped from
|
|
|
|
* within the session thread itself.
|
|
|
|
*/
|
|
|
|
GMutex stop_mutex;
|
|
|
|
gboolean abort_session;
|
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
|