X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Fchronovu_la8.c;h=625d839be1b1e8a48e6b0657004eeb44b21d907a;hb=ec4063b83c9b8a0693b9837787306dd5405e076b;hp=70e6f217818825dbf0072284d8bb172e6cf23c26;hpb=a944a84b17c5f5544b45e27dc07d7f60a4fd6ba8;p=libsigrok.git diff --git a/output/chronovu_la8.c b/output/chronovu_la8.c index 70e6f217..625d839b 100644 --- a/output/chronovu_la8.c +++ b/output/chronovu_la8.c @@ -94,7 +94,7 @@ static int init(struct sr_output *o) struct context *ctx; struct sr_probe *probe; GSList *l; - uint64_t *samplerate; + GVariant *gvar; if (!o) { sr_warn("%s: o was NULL", __func__); @@ -128,10 +128,10 @@ static int init(struct sr_output *o) ctx->probelist[ctx->num_enabled_probes] = 0; ctx->unitsize = (ctx->num_enabled_probes + 7) / 8; - if (sr_dev_has_hwcap(o->sdi, SR_HWCAP_SAMPLERATE)) { - o->sdi->driver->info_get(SR_DI_CUR_SAMPLERATE, - (const void **)&samplerate, o->sdi); - ctx->samplerate = *samplerate; + if (sr_dev_has_option(o->sdi, SR_CONF_SAMPLERATE)) { + o->sdi->driver->config_get(SR_CONF_SAMPLERATE, &gvar, o->sdi); + ctx->samplerate = g_variant_get_uint64(gvar); + g_variant_unref(gvar); } else ctx->samplerate = 0;