X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fchronovu-la%2Fapi.c;h=526d51cf3bba27f05dcd820e7c213f5fa5d9335c;hb=a4e435eb49c1fa30c31d5851b404001324cafe33;hp=d258d370054a4745b6d1db70c818faf3b28a86e0;hpb=38d32464973b828bf327b9271ef4b0437d85c9f2;p=libsigrok.git diff --git a/hardware/chronovu-la/api.c b/hardware/chronovu-la/api.c index d258d370..526d51cf 100644 --- a/hardware/chronovu-la/api.c +++ b/hardware/chronovu-la/api.c @@ -26,11 +26,18 @@ static struct sr_dev_driver *di = &chronovu_la_driver_info; static const int32_t hwcaps[] = { SR_CONF_LOGIC_ANALYZER, SR_CONF_SAMPLERATE, - SR_CONF_TRIGGER_TYPE, + SR_CONF_TRIGGER_MATCH, SR_CONF_LIMIT_MSEC, /* TODO: Not yet implemented. */ SR_CONF_LIMIT_SAMPLES, /* TODO: Not yet implemented. */ }; +static const int32_t trigger_matches[] = { + SR_TRIGGER_ZERO, + SR_TRIGGER_ONE, + SR_TRIGGER_RISING, + SR_TRIGGER_FALLING, +}; + /* The ChronoVu LA8/LA16 can have multiple VID/PID pairs. */ static struct { uint16_t vid; @@ -168,8 +175,12 @@ static GSList *scan(GSList *options) for (i = 0; i < ARRAY_SIZE(vid_pid); i++) { ret = ftdi_usb_open_desc(ftdic, vid_pid[i].vid, vid_pid[i].pid, vid_pid[i].iproduct, NULL); + /* Show errors other than "device not found". */ + if (ret < 0 && ret != -3) + sr_dbg("Error finding/opening device (%d): %s.", + ret, ftdi_get_error_string(ftdic)); if (ret < 0) - continue; /* No device found. */ + continue; /* No device found, or not usable. */ sr_dbg("Found %s device (%04x:%04x).", vid_pid[i].iproduct, vid_pid[i].vid, vid_pid[i].pid); @@ -365,10 +376,12 @@ static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi, grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES / 2); *data = g_variant_new_tuple(grange, 2); break; - case SR_CONF_TRIGGER_TYPE: + case SR_CONF_TRIGGER_MATCH: if (!sdi || !sdi->priv || !(devc = sdi->priv) || !devc->prof) return SR_ERR_BUG; - *data = g_variant_new_string(devc->prof->trigger_type); + *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32, + trigger_matches, devc->prof->num_trigger_matches, + sizeof(int32_t)); break; default: return SR_ERR_NA; @@ -457,8 +470,8 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data) return SR_ERR; } - if (cv_configure_channels(sdi) != SR_OK) { - sr_err("Failed to configure channels."); + if (cv_convert_trigger(sdi) != SR_OK) { + sr_err("Failed to configure trigger."); return SR_ERR; }