X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fcenter-3xx%2Fapi.c;h=ddac1540bd4cfa62c8f14cd293d56d3f4752880e;hb=58d6f20748e6b33677da3b4a388ac3b8fcaa12f7;hp=b85273e51d2942ebde8aa034112a46d4fae77ed4;hpb=854434de0bc581f16f87f85595f473ee41ca9e0c;p=libsigrok.git diff --git a/hardware/center-3xx/api.c b/hardware/center-3xx/api.c index b85273e5..ddac1540 100644 --- a/hardware/center-3xx/api.c +++ b/hardware/center-3xx/api.c @@ -32,7 +32,7 @@ static const int32_t hwcaps[] = { SR_CONF_CONTINUOUS, }; -static const char *probe_names[] = { +static const char *channel_names[] = { "T1", "T2", "T3", "T4", NULL, }; @@ -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 *ch; struct sr_serial_dev_inst *serial; GSList *devices; @@ -103,10 +103,10 @@ static GSList *center_scan(const char *conn, const char *serialcomm, int idx) sdi->driver = center_devs[idx].di; for (i = 0; i < center_devs[idx].num_channels; i++) { - if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, - TRUE, probe_names[i]))) + if (!(ch = sr_channel_new(i, SR_CHANNEL_ANALOG, + TRUE, channel_names[i]))) goto scan_cleanup; - sdi->probes = g_slist_append(sdi->probes, probe); + sdi->channels = g_slist_append(sdi->channels, ch); } drvc->instances = g_slist_append(drvc->instances, sdi); @@ -161,11 +161,11 @@ static int cleanup(int idx) } static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi, - const struct sr_probe_group *probe_group) + const struct sr_channel_group *cg) { struct dev_context *devc; - (void)probe_group; + (void)cg; if (sdi->status != SR_ST_ACTIVE) return SR_ERR_DEV_CLOSED; @@ -191,10 +191,10 @@ 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_probe_group *probe_group) + const struct sr_channel_group *cg) { (void)sdi; - (void)probe_group; + (void)cg; switch (key) { case SR_CONF_SCAN_OPTIONS: