]> sigrok.org Git - libsigrok.git/commitdiff
Rename 'struct sr_probe' to 'struct sr_channel' everywhere.
authorUwe Hermann <redacted>
Thu, 20 Mar 2014 20:58:57 +0000 (21:58 +0100)
committerUwe Hermann <redacted>
Tue, 25 Mar 2014 19:58:54 +0000 (20:58 +0100)
This fixes parts of bug #259.

66 files changed:
bindings/python/sigrok/core/classes.py
bindings/swig/libsigrok.i
device.c
hardware/agilent-dmm/api.c
hardware/alsa/protocol.c
hardware/appa-55ii/api.c
hardware/appa-55ii/protocol.c
hardware/asix-sigma/asix-sigma.c
hardware/atten-pps3xxx/api.c
hardware/brymen-bm86x/api.c
hardware/brymen-dmm/api.c
hardware/cem-dt-885x/api.c
hardware/center-3xx/api.c
hardware/chronovu-la8/api.c
hardware/chronovu-la8/protocol.c
hardware/colead-slm/api.c
hardware/conrad-digi-35-cpu/api.c
hardware/demo/demo.c
hardware/fluke-dmm/api.c
hardware/fx2lafw/api.c
hardware/fx2lafw/protocol.c
hardware/gmc-mh-1x-2x/api.c
hardware/hameg-hmo/api.c
hardware/hameg-hmo/protocol.c
hardware/hantek-dso/api.c
hardware/ikalogic-scanalogic2/api.c
hardware/ikalogic-scanalogic2/protocol.c
hardware/ikalogic-scanalogic2/protocol.h
hardware/ikalogic-scanaplus/api.c
hardware/kecheng-kc-330b/api.c
hardware/lascar-el-usb/protocol.c
hardware/link-mso19/api.c
hardware/link-mso19/protocol.c
hardware/mic-985xx/api.c
hardware/norma-dmm/api.c
hardware/openbench-logic-sniffer/api.c
hardware/openbench-logic-sniffer/protocol.c
hardware/rigol-ds/api.c
hardware/rigol-ds/protocol.c
hardware/saleae-logic16/api.c
hardware/serial-dmm/api.c
hardware/sysclk-lwla/api.c
hardware/teleinfo/api.c
hardware/teleinfo/protocol.c
hardware/tondaj-sl-814/api.c
hardware/uni-t-dmm/api.c
hardware/uni-t-ut32x/api.c
hardware/victor-dmm/api.c
hardware/zeroplus-logic-cube/api.c
input/binary.c
input/chronovu_la8.c
input/csv.c
input/vcd.c
input/wav.c
libsigrok-internal.h
libsigrok.h
output/analog.c
output/chronovu_la8.c
output/csv.c
output/gnuplot.c
output/ols.c
output/text/text.c
output/vcd.c
session_file.c
strutil.c
tests/lib.c

index 2dcd1d95a71812eaebe0c92c50a3f9f5b3de1d92..d5038a0c20762e7ffe5e85f27383df332744f496 100644 (file)
@@ -196,7 +196,7 @@ class Device(object):
             self._probes = {}
             probe_list = self.struct.probes
             while (probe_list):
-                probe_ptr = void_ptr_to_sr_probe_ptr(probe_list.data)
+                probe_ptr = void_ptr_to_sr_channel_ptr(probe_list.data)
                 self._probes[probe_ptr.name] = Probe(self, probe_ptr)
                 probe_list = probe_list.next
         return self._probes
@@ -306,7 +306,7 @@ class ChannelGroup(object):
             self._channels = []
             channel_list = self.struct.channels
             while (channel_list):
-                channel_ptr = void_ptr_to_sr_probe_ptr(channel_list.data)
+                channel_ptr = void_ptr_to_sr_channel_ptr(channel_list.data)
                 self._channels.append(Probe(self, probe_ptr))
                 channel_list = channel_list.next
         return self._channels
index 5b59148948cb817ac1a2d3047173f1132a50db89..8b7a2dfd6c2774a39c1d2cb6ed8bd90ef6c41441 100644 (file)
@@ -98,7 +98,7 @@ gchar *g_string_free(GString *string, gboolean free_segment);
 %pointer_cast(gpointer, struct sr_dev_inst *, gpointer_to_sr_dev_inst_ptr);
 %pointer_cast(void *, struct sr_datafeed_logic *, void_ptr_to_sr_datafeed_logic_ptr)
 %pointer_cast(void *, struct sr_datafeed_analog *, void_ptr_to_sr_datafeed_analog_ptr)
-%pointer_cast(void *, struct sr_probe *, void_ptr_to_sr_probe_ptr)
+%pointer_cast(void *, struct sr_channel *, void_ptr_to_sr_channel_ptr)
 %pointer_cast(void *, struct sr_channel_group *, void_ptr_to_sr_channel_group_ptr)
 
 %extend sr_input_format {
index c01bc92f09d0fd8f772c6ff6ee52016632ff1218..4c8e9d1a742512ef91afd2be20371d8d1d04b1ef 100644 (file)
--- a/device.c
+++ b/device.c
  */
 
 /** @private
- *  Allocate and initialize new struct sr_probe
- *  @param[in]  index @copydoc sr_probe::index
- *  @param[in]  type @copydoc sr_probe::type
- *  @param[in]  enabled @copydoc sr_probe::enabled
- *  @param[in]  name @copydoc sr_probe::name
+ *  Allocate and initialize new struct sr_channel
+ *  @param[in]  index @copydoc sr_channel::index
+ *  @param[in]  type @copydoc sr_channel::type
+ *  @param[in]  enabled @copydoc sr_channel::enabled
+ *  @param[in]  name @copydoc sr_channel::name
  *
- *  @return NULL (failure) or new struct sr_probe*.
+ *  @return NULL (failure) or new struct sr_channel*.
  */
-SR_PRIV struct sr_probe *sr_probe_new(int index, int type,
+SR_PRIV struct sr_channel *sr_probe_new(int index, int type,
                gboolean enabled, const char *name)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
 
-       if (!(probe = g_try_malloc0(sizeof(struct sr_probe)))) {
+       if (!(probe = g_try_malloc0(sizeof(struct sr_channel)))) {
                sr_err("Probe malloc failed.");
                return NULL;
        }
@@ -87,7 +87,7 @@ SR_API int sr_dev_probe_name_set(const struct sr_dev_inst *sdi,
                int probenum, const char *name)
 {
        GSList *l;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int ret;
 
        if (!sdi) {
@@ -126,7 +126,7 @@ SR_API int sr_dev_probe_enable(const struct sr_dev_inst *sdi, int probenum,
                gboolean state)
 {
        GSList *l;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int ret;
        gboolean was_enabled;
 
@@ -175,7 +175,7 @@ SR_API int sr_dev_trigger_set(const struct sr_dev_inst *sdi, int probenum,
                const char *trigger)
 {
        GSList *l;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        char *old_trigger;
        int ret;
 
@@ -298,7 +298,7 @@ SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
  */
 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
 
        for (l = sdi->probes; l; l = l->next) {
index 8c1f3b4a85da97b2ba686978a56f4e89892c6c8c..395b711e4d9c6927a912f27944c9d43a17c11b3e 100644 (file)
@@ -72,7 +72,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
        int len, i;
index eea2f5bd427159faff0ee160f4474952659037e8..ff785277a5dec770ca07f3e76fc33e0453e97c38 100644 (file)
@@ -63,7 +63,7 @@ static void alsa_scan_handle_dev(GSList **devices,
        struct drv_context *drvc = NULL;
        struct sr_dev_inst *sdi = NULL;
        struct dev_context *devc = NULL;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int ret;
        unsigned int i, offset, channels, minrate, maxrate, rate;
        uint64_t hwrates[ARRAY_SIZE(rates)];
index 77bd50a716e10ab8a7c9aa4e0d0294b5aed774a6..997da7f758bb63ad9ef39dfd8ad47cacc8ccb3b3 100644 (file)
@@ -52,7 +52,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_serial_dev_inst *serial;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_config *src;
        GSList *devices, *l;
        const char *conn, *serialcomm;
index fabd2556678480bdbd3177e98f4929741eefb826..e78b33ff27c2c48448ad3021bd9652c28b8bcf4e 100644 (file)
@@ -92,7 +92,7 @@ static void appa_55ii_live_data(struct sr_dev_inst *sdi, const uint8_t *buf)
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
        struct sr_datafeed_analog analog;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        float values[APPA_55II_NUM_PROBES], *val_ptr;
        int i;
 
@@ -138,7 +138,7 @@ static void appa_55ii_log_data_parse(struct sr_dev_inst *sdi)
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
        struct sr_datafeed_analog analog;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        float values[APPA_55II_NUM_PROBES], *val_ptr;
        const uint8_t *buf;
        int16_t temp;
index 5b39f0a25a27c9f18f3b7fb6e122eee4c0238048..1a56cf3999830168657df9c86202bac679e702b1 100644 (file)
@@ -402,7 +402,7 @@ static int init(struct sr_context *sr_ctx)
 static GSList *scan(GSList *options)
 {
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct drv_context *drvc;
        struct dev_context *devc;
        GSList *devices;
@@ -654,7 +654,7 @@ static int set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate)
 static int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc = sdi->priv;
-       const struct sr_probe *probe;
+       const struct sr_channel *probe;
        const GSList *l;
        int trigger_set = 0;
        int probebit;
@@ -662,7 +662,7 @@ static int configure_probes(const struct sr_dev_inst *sdi)
        memset(&devc->trigger, 0, sizeof(struct sigma_trigger));
 
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                probebit = 1 << (probe->index);
 
                if (!probe->enabled || !probe->trigger)
index 102940b792809faf437888de0dc6a4c3a7363eb0..94e8fe44f5c32a8d3fefcf0cce9e2fc0c1e41235 100644 (file)
@@ -87,7 +87,7 @@ static GSList *scan(GSList *options, int modelid)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_channel_group *cg;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
@@ -209,7 +209,7 @@ static int config_get(int key, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int channel, ret;
 
        if (!sdi)
@@ -278,7 +278,7 @@ static int config_set(int key, GVariant *data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        gdouble dval;
        int channel, ret, ival;
        const char *sval;
@@ -362,7 +362,7 @@ static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GVariant *gvar;
        GVariantBuilder gvb;
        int channel, ret, i;
index a42aebca383a6cb0122f0263415d66b924012c7c..07f2e49e393be9482d9149ac1d2a2c2cb416921d 100644 (file)
@@ -48,7 +48,7 @@ static GSList *scan(GSList *options)
        struct sr_dev_inst *sdi;
        struct sr_usb_dev_inst *usb;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        const char *conn;
 
        drvc = di->priv;
index 9af92f1da15e2f4eb334d1c7995d5813e11b713e..df89fbbeadaa422dab41c2bb6a9fcfaaa947f1e5 100644 (file)
@@ -44,7 +44,7 @@ static GSList *brymen_scan(const char *conn, const char *serialcomm)
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
        struct drv_context *drvc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *devices;
        int ret;
index d996b03d14f24ef8df8f91a78c2f8ade6a1f8c37..e42f859854852c8ab2d0388f0848ce2afc08170e 100644 (file)
@@ -79,7 +79,7 @@ static GSList *scan(GSList *options)
        struct sr_config *src;
        struct sr_serial_dev_inst *serial;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l, *devices;
        gint64 start;
        const char *conn;
index 376563a78b62d9ddf24007783d7aa941c35149c8..9c3bba7a6ea9735f1cca1010d75515f63a47a1bc 100644 (file)
@@ -71,7 +71,7 @@ static GSList *center_scan(const char *conn, const char *serialcomm, int idx)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *devices;
 
index f73a7fd470a85690f634967c2c5a10908e13d409..2d6a00ad67fcd83dea282cf4f4b7e9e28559a839 100644 (file)
@@ -79,7 +79,7 @@ static int init(struct sr_context *sr_ctx)
 static GSList *scan(GSList *options)
 {
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct drv_context *drvc;
        struct dev_context *devc;
        GSList *devices;
index 90bef5a45ae0edf9fd2361cc7d7b1e49ef261627..4dcf26ff4a68311176c2d2362331c49825e3231e 100644 (file)
@@ -287,7 +287,7 @@ SR_PRIV int la8_reset(struct dev_context *devc)
 SR_PRIV int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       const struct sr_probe *probe;
+       const struct sr_channel *probe;
        const GSList *l;
        uint8_t probe_bit;
        char *tc;
@@ -297,7 +297,7 @@ SR_PRIV int configure_probes(const struct sr_dev_inst *sdi)
        devc->trigger_mask = 0; /* Default to "don't care" for all probes. */
 
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
 
                if (!probe) {
                        sr_err("%s: probe was NULL.", __func__);
index 99773a80b8fc6af8ec26dbe922ddedf2ae6aca4c..58b8dfb60c68de49b941702bf6b6b779cb775b07 100644 (file)
@@ -56,7 +56,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *devices, *l;
        const char *conn, *serialcomm;
 
index 99e9916fdfc56704097864e900c2f6fa47641184..2a8c6dc0cfa50cc9b0fe9449f03ae3600b70667c 100644 (file)
@@ -52,7 +52,7 @@ static GSList *scan(GSList *options)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
        const char *conn, *serialcomm;
index 3a8d277dac88f7ccb147a294e87ae393b91209dc..45a6a13c5f002740ae9bd4101794fd820cab81c2 100644 (file)
@@ -255,7 +255,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_channel_group *cg;
        struct sr_config *src;
        struct analog_gen *ag;
@@ -385,7 +385,7 @@ static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct analog_gen *ag;
        int pattern;
 
@@ -435,7 +435,7 @@ static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
 {
        struct dev_context *devc;
        struct analog_gen *ag;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int pattern, ret;
        unsigned int i;
        const char *stropt;
@@ -511,7 +511,7 @@ static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
 static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GVariant *gvar;
        GVariantBuilder gvb;
 
index 3613e9b4e41c15125d3a071c4e75ffd080416118..5a5323e5684388d2511282e452539d4b41ff5bbb 100644 (file)
@@ -69,7 +69,7 @@ static GSList *fluke_scan(const char *conn, const char *serialcomm)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *devices;
        int retry, len, i, s;
index 777bd1488f3782ae8fa8678fac230a4ae5d4ad6f..7f35ea81574fe2909d6350dcb98f6ec535f45761 100644 (file)
@@ -126,7 +126,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
        struct sr_usb_dev_inst *usb;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_config *src;
        const struct fx2lafw_profile *prof;
        GSList *l, *devices, *conn_devices;
index 1ea9020958c4dabc6f0ca08e2e6013d00d6d63c4..60dd9e6914a05de7807f343f1664cbbc91fa97d3 100644 (file)
@@ -295,7 +295,7 @@ SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di)
 SR_PRIV int fx2lafw_configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        int probe_bit, stage, i;
        char *tc;
@@ -308,7 +308,7 @@ SR_PRIV int fx2lafw_configure_probes(const struct sr_dev_inst *sdi)
 
        stage = -1;
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                if (probe->enabled == FALSE)
                        continue;
 
index 33a3eee7177c36249b39b9e389d223551ad61cb6..ce849765a0fd1b61f89177d794f34c20c3feea05 100644 (file)
@@ -162,7 +162,7 @@ static GSList *scan_1x_2x_rs232(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
        const char *conn, *serialcomm;
@@ -259,7 +259,7 @@ static GSList *scan_2x_bd232(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
        const char *conn, *serialcomm;
index 3200d64c3b03fddae333f234a82109517466f9ad..2988823b5a7f5a3691e881bcfefc6b7d079330f2 100644 (file)
@@ -565,7 +565,7 @@ static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
 SR_PRIV int hmo_request_data(const struct sr_dev_inst *sdi)
 {
        char command[MAX_COMMAND_SIZE];
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct dev_context *devc;
        struct scope_config *model;
 
@@ -596,7 +596,7 @@ SR_PRIV int hmo_request_data(const struct sr_dev_inst *sdi)
 static int hmo_check_probes(GSList *probes)
 {
        GSList *l;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        gboolean enabled_pod1, enabled_pod2, enabled_chan3, enabled_chan4;
 
        enabled_pod1 = enabled_pod2 = enabled_chan3 = enabled_chan4 = FALSE;
@@ -636,7 +636,7 @@ static int hmo_setup_probes(const struct sr_dev_inst *sdi)
        char command[MAX_COMMAND_SIZE];
        struct scope_state *state;
        struct scope_config *model;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct dev_context *devc;
        struct sr_scpi_dev_inst *scpi;
 
@@ -712,7 +712,7 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
 {
        GSList *l;
        gboolean digital_added;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct dev_context *devc;
        struct sr_scpi_dev_inst *scpi;
 
index 6dda2d353b14b81fffeedbe5e2eb406c33524152..c364d2245574aedd49cf1eb766ea32d156dfca1a 100644 (file)
@@ -581,7 +581,7 @@ SR_PRIV int hmo_init_device(struct sr_dev_inst *sdi)
        char tmp[25];
        int model_index;
        unsigned int i, j;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct dev_context *devc;
 
        devc = sdi->priv;
@@ -657,7 +657,7 @@ SR_PRIV int hmo_init_device(struct sr_dev_inst *sdi)
 
 SR_PRIV int hmo_receive_data(int fd, int revents, void *cb_data)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
index a10af6c55c9e480f3deae213fc309095153132b2..bb7529586f2ea7dd93f8c8e2840384140e4702a6 100644 (file)
@@ -160,7 +160,7 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
 static struct sr_dev_inst *dso_dev_new(int index, const struct dso_profile *prof)
 {
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct drv_context *drvc;
        struct dev_context *devc;
        int i;
@@ -213,7 +213,7 @@ static struct sr_dev_inst *dso_dev_new(int index, const struct dso_profile *prof
 static int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        const GSList *l;
        int p;
 
index ac5084d3be2f76fa28544042748bd192b96297a9..b00f9adf3711d0a51e8b3e300410383a56cbc7e1 100644 (file)
@@ -59,7 +59,7 @@ static GSList *scan(GSList *options)
        GSList *usb_devices, *devices, *l;
        struct drv_context *drvc;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct dev_context *devc;
        struct sr_usb_dev_inst *usb;
        struct device_info dev_info;
index 87218de57eb09d5f057b673f9f142f988fb477ff..475b6225b4c3290111e0041a7c724c08a4da1921 100644 (file)
@@ -482,7 +482,7 @@ SR_PRIV int sl2_set_limit_samples(const struct sr_dev_inst *sdi,
 SR_PRIV void sl2_configure_trigger(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        uint8_t trigger_type;
        int probe_index, num_triggers_anyedge;
        char *trigger;
index add5dda89553dfcff8b36e40693f4789a5fd8841..6cdb607254a0d10b3eb69649d57133ff05ac5567 100644 (file)
@@ -152,7 +152,7 @@ struct dev_context {
        void *cb_data;
 
        /* Array to provide an index based access to all probes. */
-       const struct sr_probe *probes[NUM_PROBES];
+       const struct sr_channel *probes[NUM_PROBES];
 
        struct libusb_transfer *xfer_in, *xfer_out;
 
index 04ae5c998e59f330c00e61f9548d700da38515a8..ad39c9a0da602172a88eb5ffaad979ce1200c780 100644 (file)
@@ -74,7 +74,7 @@ static int init(struct sr_context *sr_ctx)
 static GSList *scan(GSList *options)
 {
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct drv_context *drvc;
        struct dev_context *devc;
        GSList *devices;
index d9e4d5cf3a03032ef698eff89784477dfc3b0fc0..279b7d626813204e80d60f33909387b7923be2d0 100644 (file)
@@ -112,7 +112,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *usb_devices, *devices, *l;
        char *model;
 
index b1f39ccddab98a50df120ac0360cfdb4343d95d1..bf85900809da08f1bea4d7de0e4bba207320f4e6 100644 (file)
@@ -293,7 +293,7 @@ static struct sr_dev_inst *lascar_identify(unsigned char *config)
        struct dev_context *devc;
        const struct elusb_profile *profile;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int modelid, i;
        char firmware[5];
 
@@ -398,7 +398,7 @@ static void lascar_el_usb_dispatch(struct sr_dev_inst *sdi, unsigned char *buf,
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
        struct sr_datafeed_analog analog;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        float *temp, *rh;
        uint16_t s;
        int samples, samples_left, i, j;
index 3d40015cfdec2bf3aa97c977b246d0329cb80e9c..daa08d1c4663c2c4df12bea15678778657f2126b 100644 (file)
@@ -217,7 +217,7 @@ static GSList *scan(GSList *options)
                sdi->priv = devc;
 
                for (i = 0; i < NUM_PROBES; i++) {
-                       struct sr_probe *probe;
+                       struct sr_channel *probe;
                        ptype = (i == 0) ? SR_PROBE_ANALOG : SR_PROBE_LOGIC;
                        if (!(probe = sr_probe_new(i, ptype, TRUE,
                                                   mso19_probe_names[i])))
index fbb50054ab24f8194d6989985677212eb9184377..942f0488c6d1eea39e62d6f78cd1e9dd40ed2616 100644 (file)
@@ -438,7 +438,7 @@ SR_PRIV int mso_receive_data(int fd, int revents, void *cb_data)
 SR_PRIV int mso_configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        char *tc;
 
@@ -453,7 +453,7 @@ SR_PRIV int mso_configure_probes(const struct sr_dev_inst *sdi)
        devc->use_trigger = FALSE;
 
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                if (probe->enabled == FALSE)
                        continue;
 
index 1368b35ec66766e80399b6dba2a894fbba776c36..0cb029cc6093394892b0bd88e4c71cc926b83ce1 100644 (file)
@@ -66,7 +66,7 @@ static GSList *mic_scan(const char *conn, const char *serialcomm, int idx)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *devices;
 
index 35a5d7068434fa8451ae28b41287666f153f4047..a11812e9c704a269a361b81ebaa332d595393c77 100644 (file)
@@ -49,7 +49,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *l, *devices;
        int len, cnt;
index 76942437d9475d2a53b1df2c7ac05fe157ff8713..c45b931ce63bbd40a125e93c61181e041f08653c 100644 (file)
@@ -90,7 +90,7 @@ static GSList *scan(GSList *options)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GPollFD probefd;
        GSList *l, *devices;
index 5e8dc76ace37667b50a3dbc9a60f7402f81494bb..46316db44923183883805c3a6844e994382584ce 100644 (file)
@@ -57,7 +57,7 @@ SR_PRIV int send_longcommand(struct sr_serial_dev_inst *serial,
 SR_PRIV int ols_configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       const struct sr_probe *probe;
+       const struct sr_channel *probe;
        const GSList *l;
        int probe_bit, stage, i;
        char *tc;
@@ -72,7 +72,7 @@ SR_PRIV int ols_configure_probes(const struct sr_dev_inst *sdi)
 
        devc->num_stages = 0;
        for (l = sdi->probes; l; l = l->next) {
-               probe = (const struct sr_probe *)l->data;
+               probe = (const struct sr_channel *)l->data;
                if (!probe->enabled)
                        continue;
 
@@ -134,7 +134,7 @@ SR_PRIV struct sr_dev_inst *get_metadata(struct sr_serial_dev_inst *serial)
 {
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        uint32_t tmp_int, ui;
        uint8_t key, type, token;
        GString *tmp_str, *devname, *version;
index da1fe25054848ecf5e091cb13a292fc084fded7d..c23805c6acd1c24a0782bc4018af978ab2656cf5 100644 (file)
@@ -260,7 +260,7 @@ static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
        struct sr_scpi_hw_info *hw_info;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        long n[3];
        unsigned int i;
        const struct rigol_ds_model *model = NULL;
@@ -439,7 +439,7 @@ static int cleanup(void)
 static int analog_frame_size(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc = sdi->priv;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int analog_probes = 0;
        GSList *l;
 
@@ -480,7 +480,7 @@ static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        const char *tmp_str;
        uint64_t samplerate;
        int analog_channel = -1;
@@ -865,7 +865,7 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
 {
        struct sr_scpi_dev_inst *scpi;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_datafeed_packet packet;
        GSList *l;
 
index d1c568c2161cd87b4a67f42809d9a5834e8c8890..d609b06079dd14bc9a29c0a7535e4467fc4eb471 100644 (file)
@@ -207,7 +207,7 @@ static int rigol_ds_stop_wait(const struct sr_dev_inst *sdi)
 static int rigol_ds_check_stop(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int tmp;
 
        if (!(devc = sdi->priv))
@@ -376,7 +376,7 @@ SR_PRIV int rigol_ds_capture_start(const struct sr_dev_inst *sdi)
 SR_PRIV int rigol_ds_channel_start(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
 
        if (!(devc = sdi->priv))
                return SR_ERR;
@@ -483,7 +483,7 @@ SR_PRIV int rigol_ds_receive(int fd, int revents, void *cb_data)
        struct sr_datafeed_logic logic;
        double vdiv, offset;
        int len, i, vref;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        gsize expected_data_bytes;
 
        (void)fd;
index 40f7812c0e686ac62d266dbbce4be6f63bfcc06e..2e47899de1979d7211ab1f86eb845d467e57378a 100644 (file)
@@ -136,7 +136,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
        struct sr_usb_dev_inst *usb;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_config *src;
        GSList *l, *devices, *conn_devices;
        struct libusb_device_descriptor des;
@@ -624,7 +624,7 @@ static unsigned int get_timeout(struct dev_context *devc)
 static int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        uint16_t probe_bit;
 
@@ -633,7 +633,7 @@ static int configure_probes(const struct sr_dev_inst *sdi)
        devc->cur_channels = 0;
        devc->num_channels = 0;
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                if (probe->enabled == FALSE)
                        continue;
 
index 3efe4f6ac7bd65d57dc80f7e3ac79eeeb89a21ea..2982aaac64813eb69e48209753e39c547e0a85af 100644 (file)
@@ -337,7 +337,7 @@ static GSList *sdmm_scan(const char *conn, const char *serialcomm, int dmm)
        struct sr_dev_inst *sdi;
        struct drv_context *drvc;
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_serial_dev_inst *serial;
        GSList *devices;
        int dropped, ret;
index f693b43428339f02d2327237d8409050a4d4080c..525af58ed89ab36f6deb93c6963d4a28f4f4823b 100644 (file)
@@ -75,7 +75,7 @@ static int init(struct sr_context *sr_ctx)
 static GSList *gen_probe_list(int num_probes)
 {
        GSList *list;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int i;
        char name[8];
 
@@ -402,7 +402,7 @@ static int config_set(int key, GVariant *data, const struct sr_dev_inst *sdi,
 }
 
 static int config_probe_set(const struct sr_dev_inst *sdi,
-                           struct sr_probe *probe, unsigned int changes)
+                           struct sr_channel *probe, unsigned int changes)
 {
        uint64_t probe_bit;
        uint64_t trigger_mask;
index f8fb324325ffb40a41578f0eb1ee49b378c97101..fa3b347cdf07f91b4166dfd5e9f9c49fccab4e11 100644 (file)
@@ -49,7 +49,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_serial_dev_inst *serial;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *devices = NULL, *l;
        const char *conn = NULL, *serialcomm = NULL;
        uint8_t buf[292];
index 746d43c07210ba47af30485d82ae555ca8531bb1..5e0fa5e5a526773ec2b64a1ddb1bc8ed53fcdae5 100644 (file)
@@ -41,12 +41,12 @@ static gboolean teleinfo_control_check(char *label, char *data, char control)
 
 static gint teleinfo_probe_compare(gconstpointer a, gconstpointer b)
 {
-       const struct sr_probe *probe = a;
+       const struct sr_channel *probe = a;
        const char *name = b;
        return strcmp(probe->name, name);
 }
 
-static struct sr_probe *teleinfo_find_probe(struct sr_dev_inst *sdi,
+static struct sr_channel *teleinfo_find_probe(struct sr_dev_inst *sdi,
                                             const char *name)
 {
        GSList *elem = g_slist_find_custom(sdi->probes, name,
@@ -60,7 +60,7 @@ static void teleinfo_send_value(struct sr_dev_inst *sdi, const char *probe_name,
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
        struct sr_datafeed_analog analog;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
 
        devc = sdi->priv;
        probe = teleinfo_find_probe(sdi, probe_name);
index e6e28472632ced3e7d4324a20230cd785fd80762..613f0945f190916a74056af44d7307a18ca1b862 100644 (file)
@@ -51,7 +51,7 @@ static GSList *scan(GSList *options)
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *devices, *l;
        const char *conn, *serialcomm;
        struct sr_serial_dev_inst *serial;
index 2ec99ca176c3e568d6f567bfb808953f0f461234..40c928c76bd8426522b33e5cbfc038b86799b450 100644 (file)
@@ -181,7 +181,7 @@ static GSList *scan(GSList *options, int dmm)
        struct drv_context *drvc;
        struct sr_usb_dev_inst *usb;
        struct sr_config *src;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        const char *conn;
 
        drvc = udmms[dmm].di->priv;
index 3a0327bbdb82ec2042de882c8a317350062b3c44..67fecd327ac740ff9d485ad4210a7a8732e55579 100644 (file)
@@ -53,7 +53,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct sr_config *src;
        GSList *usb_devices, *devices, *l;
        int i;
index f794497316ec39ff2293f313f79b14cb3347aaa7..5d772e89428820a320afc97b26868a06c9a4647a 100644 (file)
@@ -56,7 +56,7 @@ static GSList *scan(GSList *options)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct libusb_device_descriptor des;
        libusb_device **devlist;
        GSList *devices;
index 63b2efd9a9edd3b7ef3f3d0ed5dd183284ba9599..f30551e828e5287531d1c7e3e9d8508b1c3bec0f 100644 (file)
@@ -127,7 +127,7 @@ static int dev_close(struct sr_dev_inst *sdi);
 static int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       const struct sr_probe *probe;
+       const struct sr_channel *probe;
        const GSList *l;
        int probe_bit, stage, i;
        char *tc;
@@ -143,7 +143,7 @@ static int configure_probes(const struct sr_dev_inst *sdi)
 
        stage = -1;
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                if (probe->enabled == FALSE)
                        continue;
                probe_bit = 1 << (probe->index);
@@ -170,7 +170,7 @@ static int configure_probes(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
        const GSList *l;
-       const struct sr_probe *probe;
+       const struct sr_channel *probe;
        char *tc;
        int type;
 
@@ -178,7 +178,7 @@ static int configure_probes(const struct sr_dev_inst *sdi)
        devc = sdi->priv;
 
        for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
+               probe = (struct sr_channel *)l->data;
                if (probe->enabled == FALSE)
                        continue;
 
@@ -247,7 +247,7 @@ static int init(struct sr_context *sr_ctx)
 static GSList *scan(GSList *options)
 {
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct drv_context *drvc;
        struct dev_context *devc;
        const struct zp_model *prof;
index dfeedee7433473ab0be857e83b3dbe3e9382fcc1..59b027ee8483031c2954415d61849fec1826501b 100644 (file)
@@ -45,7 +45,7 @@ static int format_match(const char *filename)
 
 static int init(struct sr_input *in, const char *filename)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int num_probes, i;
        char name[SR_MAX_PROBENAME_LEN + 1];
        char *param;
index 9f129be40e490629b831bc8c753da9487341df11..620b5aa3e1301bd841ad7fe0784484cfca803ad3 100644 (file)
@@ -96,7 +96,7 @@ static int format_match(const char *filename)
 
 static int init(struct sr_input *in, const char *filename)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int num_probes, i;
        char name[SR_MAX_PROBENAME_LEN + 1];
        char *param;
index 65c6b3f9fd1b691f53ffa7f0479eb35ef03007be..3b394d0b54a91bb12e38a2e29f4d9c1a691d2be9 100644 (file)
@@ -432,7 +432,7 @@ static int init(struct sr_input *in, const char *filename)
        GIOStatus status;
        gsize i, term_pos;
        char probe_name[SR_MAX_PROBENAME_LEN + 1];
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        char **columns;
        gsize num_columns;
        char *ptr;
index 66af86643fc06587583be080486a0f16412caa41..6f947977a08b6d1c941c1b481427620d47d8276f 100644 (file)
@@ -287,7 +287,7 @@ static int format_match(const char *filename)
 
 static int init(struct sr_input *in, const char *filename)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int num_probes, i;
        char name[SR_MAX_PROBENAME_LEN + 1];
        char *param;
index 0106a58670786fde5d5483510571c09928f1ff31..5b3e3c2a61b2c366b3f9f4e2dfc9892fe8ceba5f 100644 (file)
@@ -85,7 +85,7 @@ static int format_match(const char *filename)
 
 static int init(struct sr_input *in, const char *filename)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        struct context *ctx;
        char buf[40], probename[8];
        int i;
index 3d71f597a81d624f5dd593d7f81e53924649e7de..687e0327f9d62a0ed53ad8dc641a86d8ac588f8d 100644 (file)
@@ -232,7 +232,7 @@ enum {
        SR_PROBE_SET_TRIGGER = 1 << 1,
 };
 
-SR_PRIV struct sr_probe *sr_probe_new(int index, int type,
+SR_PRIV struct sr_channel *sr_probe_new(int index, int type,
                gboolean enabled, const char *name);
 
 /* Generic device instances */
index 382f502b470a3a992c868a10b4730344133f864b..34c6133464ab6a185ffcdab494bca748ef59bec9 100644 (file)
@@ -605,15 +605,15 @@ enum {
     SR_PROBE_ANALOG,
 };
 
-/** Information on single probe. */
-struct sr_probe {
-       /** Number of probes, starting at 0. */
+/** Information on single channel. */
+struct sr_channel {
+       /** Number of channels, starting at 0. */
        int index;
-       /** Probe type (SR_PROBE_LOGIC, ...) */
+       /** Channel type (SR_PROBE_LOGIC, ...) */
        int type;
-       /** Is this probe enabled? */
+       /** Is this channel enabled? */
        gboolean enabled;
-       /** Name of probe. */
+       /** Name of channel. */
        char *name;
        /** Trigger string, format like used by sigrok-cli */
        char *trigger;
@@ -623,7 +623,7 @@ struct sr_probe {
 struct sr_channel_group {
        /** Name of the channel group. */
        char *name;
-       /** List of sr_probe structs of the channels belonging to this group. */
+       /** List of sr_channel structs of the channels belonging to this group. */
        GSList *channels;
        /** Private data for driver use. */
        void *priv;
@@ -995,7 +995,7 @@ struct sr_dev_driver {
        /** Probe status change.
         *  @see sr_dev_probe_enable(), sr_dev_trigger_set(). */
        int (*config_probe_set) (const struct sr_dev_inst *sdi,
-                       struct sr_probe *probe, unsigned int changes);
+                       struct sr_channel *probe, unsigned int changes);
        /** Apply configuration settings to the device hardware.
         *  @see sr_config_commit().*/
        int (*config_commit) (const struct sr_dev_inst *sdi);
index 8141525ddbe11ec85f20a596d52a251f1ca4c2db..ca3a2a0b392481e0846f725a2c02036ec7c17fa8 100644 (file)
@@ -34,7 +34,7 @@ struct context {
 static int init(struct sr_output *o)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
 
        sr_spew("Initializing output module.");
@@ -210,7 +210,7 @@ static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
                const struct sr_datafeed_packet *packet, GString **out)
 {
        const struct sr_datafeed_analog *analog;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        const float *fdata;
        int i, p;
index e16f6174ec77e1bf7a40a3c8e40469391299413c..0d050fc034e6b92b998ae9072a885a574a96dd4b 100644 (file)
@@ -84,7 +84,7 @@ static uint8_t samplerate_to_divcount(uint64_t samplerate)
 static int init(struct sr_output *o)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
 
index 28eedd6eadc02b55da4cec2cbfa6af0a28bf54cc..ab6217dfe77e6cb400a5819502c70de6e4d94b47 100644 (file)
@@ -50,7 +50,7 @@ struct context {
 static int init(struct sr_output *o)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
        int num_probes;
index cadd4fa3b8c2f4f46fdc742674e348561d975efa..8976263a37d179a253d837a6fe0466e54fb1e83b 100644 (file)
@@ -51,7 +51,7 @@ static const char *gnuplot_header_comment = "\
 static int init(struct sr_output *o)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
        uint64_t samplerate;
index 9f9cc957bdb743566e01a96570b46bafb8f6b8d2..19c4d993163e8c62a2295d1e8e9b3927a35c83b8 100644 (file)
@@ -56,7 +56,7 @@ static int init(struct sr_output *o)
 
 static GString *gen_header(const struct sr_dev_inst *sdi, struct context *ctx)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GString *s;
        GVariant *gvar;
index 47d0542b889e2bf4d2639c36764a04d725daca98..54350b88ffcc5de394108eb4f56cff824d5b15f3 100644 (file)
@@ -74,7 +74,7 @@ SR_PRIV void flush_linebufs(struct context *ctx, uint8_t *outbuf)
 SR_PRIV int init(struct sr_output *o, int default_spl, enum outputmode mode)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
        uint64_t samplerate;
index 79145c1ae0b4f8d9e41dc3d58dea47b04b5f0168..7df345213250f2bc407d3821ba28c45aa0a6ea3d 100644 (file)
@@ -45,7 +45,7 @@ static const char *const vcd_header_comment =
 static int init(struct sr_output *o)
 {
        struct context *ctx;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
        int num_probes, i;
index 11adb47f957836f427f1bf5d2128a2d1425650e1..84163a30e65dfd38b1610a08b708c434dbc11725 100644 (file)
@@ -113,7 +113,7 @@ SR_API int sr_session_load(const char *filename)
        struct zip_file *zf;
        struct zip_stat zs;
        struct sr_dev_inst *sdi;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int ret, probenum, devcnt, i, j;
        uint64_t tmp_u64, total_probes, enabled_probes, p;
        char **sections, **keys, *metafile, *val;
@@ -234,7 +234,7 @@ SR_API int sr_session_load(const char *filename)
 SR_API int sr_session_save(const char *filename, const struct sr_dev_inst *sdi,
                unsigned char *buf, int unitsize, int units)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GSList *l;
        GVariant *gvar;
        uint64_t samplerate;
index 0438c5ecc03cf74516c1be3bda1f8876ed419758..356f6f8384efcdf7a8303c153bf482fff9009705 100644 (file)
--- a/strutil.c
+++ b/strutil.c
@@ -381,7 +381,7 @@ SR_API char **sr_parse_triggerstring(const struct sr_dev_inst *sdi,
 {
        GSList *l;
        GVariant *gvar;
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        int max_probes, probenum, i;
        char **tokens, **triggerlist, *trigger, *tc;
        const char *trigger_types;
@@ -406,7 +406,7 @@ SR_API char **sr_parse_triggerstring(const struct sr_dev_inst *sdi,
        for (i = 0; tokens[i]; i++) {
                probenum = -1;
                for (l = sdi->probes; l; l = l->next) {
-                       probe = (struct sr_probe *)l->data;
+                       probe = (struct sr_channel *)l->data;
                        if (probe->enabled
                                && !strncmp(probe->name, tokens[i],
                                        strlen(probe->name))) {
index faffc3a9f64d452c439736924772baf8ac29f7fa..09b697e817024d8e4c28cadf0acb353f9c27338b 100644 (file)
@@ -213,7 +213,7 @@ void srtest_buf_to_file(const char *filename, const uint8_t *buf, uint64_t len)
 
 GArray *srtest_get_enabled_logic_probes(const struct sr_dev_inst *sdi)
 {
-       struct sr_probe *probe;
+       struct sr_channel *probe;
        GArray *probes;
        GSList *l;