This is replaced by SR_CONF_TIMEBASE.
case SR_DI_HWCAPS:
*data = hwcaps;
break;
- case SR_DI_TIMEBASES:
- *data = timebases;
- break;
case SR_DI_TRIGGER_SOURCES:
*data = trigger_sources;
break;
case SR_CONF_FILTER:
*data = filter_targets;
break;
+ case SR_CONF_TIMEBASE:
+ *data = timebases;
+ break;
default:
return SR_ERR_ARG;
}
case SR_DI_HWCAPS:
*data = hwcaps;
break;
- case SR_DI_TIMEBASES:
- *data = timebases;
- break;
case SR_DI_TRIGGER_SOURCES:
*data = trigger_sources;
break;
case SR_CONF_VDIV:
*data = vdivs;
break;
+ case SR_CONF_TIMEBASE:
+ *data = timebases;
+ break;
default:
return SR_ERR_ARG;
}
SR_DI_HWCAPS,
/** Types of logic trigger supported, out of "01crf" (char *). */
SR_DI_TRIGGER_TYPES,
- /** Supported time bases. */
- SR_DI_TIMEBASES,
/** Supported trigger sources. */
SR_DI_TRIGGER_SOURCES,
};