X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fcenter-3xx%2Fapi.c;h=68fa1d5509632e363c063041091f86d0c3af8e93;hb=56d0d24535700fb53e47a25ad5c73d34697695fa;hp=9c3bba7a6ea9735f1cca1010d75515f63a47a1bc;hpb=91aea754aaed0f0f2a6fc4b2b875f0d0b7c01f8e;p=libsigrok.git diff --git a/hardware/center-3xx/api.c b/hardware/center-3xx/api.c index 9c3bba7a..68fa1d55 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_channel *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_PROBE_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);