X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Ftext%2Ftext.c;h=98735eb41c7f5c4c6cfdb242a2ad9ba13b060ea0;hb=c49111295f0b2e50044923897d99ca84f65b75db;hp=ded3adf17647f4cc1a4c15965a4090997282683f;hpb=5a2326a71b3a7d3bc6b367a7a3dfa6f137f5f0ec;p=libsigrok.git diff --git a/output/text/text.c b/output/text/text.c index ded3adf1..98735eb4 100644 --- a/output/text/text.c +++ b/output/text/text.c @@ -67,7 +67,7 @@ void flush_linebufs(struct context *ctx, char *outbuf) int init(struct sr_output *o, int default_spl, enum outputmode mode) { struct context *ctx; - struct probe *probe; + struct sr_probe *probe; GSList *l; uint64_t samplerate; int num_probes; @@ -107,7 +107,7 @@ int init(struct sr_output *o, int default_spl, enum outputmode mode) snprintf(ctx->header, 511, "%s\n", PACKAGE_STRING); num_probes = g_slist_length(o->device->probes); - if (o->device->plugin) { + if (o->device->plugin || sr_device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) { samplerate = *((uint64_t *) o->device->plugin->get_device_info( o->device->plugin_index, SR_DI_CUR_SAMPLERATE)); if (!(samplerate_s = sr_samplerate_string(samplerate))) {