Each LA16 sample is 16bits wide (LA8 samples are 8 bits wide). Adapt the
number returned for SR_CONF_LIMIT_SAMPLES in config_list() accordingly.
*data = g_variant_builder_end(&gvb);
break;
case SR_CONF_LIMIT_SAMPLES:
+ if (!sdi || !sdi->priv || !(devc = sdi->priv) || !devc->prof)
+ return SR_ERR_BUG;
grange[0] = g_variant_new_uint64(0);
- grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES);
+ if (devc->prof->model == CHRONOVU_LA8)
+ grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES);
+ else
+ grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES / 2);
*data = g_variant_new_tuple(grange, 2);
break;
case SR_CONF_TRIGGER_TYPE: