]> sigrok.org Git - libsigrok.git/commitdiff
Deprecate SR_DI_TRIGGER_SOURCES.
authorBert Vermeulen <redacted>
Fri, 25 Jan 2013 10:25:32 +0000 (11:25 +0100)
committerBert Vermeulen <redacted>
Fri, 25 Jan 2013 10:25:32 +0000 (11:25 +0100)
This is replaced by SR_CONF_TRIGGER_SOURCE.

hardware/hantek-dso/api.c
hardware/rigol-ds1xx2/api.c
libsigrok.h

index 474b96ed624b93f14c7dde000cb3bc9ab0512985..1e0a4a17a12d44cf18f97fb658d41d3b478c205c 100644 (file)
@@ -432,9 +432,6 @@ static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
        case SR_DI_HWCAPS:
                *data = hwcaps;
                break;
-       case SR_DI_TRIGGER_SOURCES:
-               *data = trigger_sources;
-               break;
        /* TODO remove this */
        case SR_CONF_SAMPLERATE:
                *data = &tmp;
@@ -586,6 +583,9 @@ static int config_list(int key, const void **data, const struct sr_dev_inst *sdi
        case SR_CONF_TIMEBASE:
                *data = timebases;
                break;
+       case SR_CONF_TRIGGER_SOURCE:
+               *data = trigger_sources;
+               break;
        default:
                return SR_ERR_ARG;
        }
index 7a5912920d2ea1a943d741bde50e54ffb0a171eb..83323114fe412a467cdb45a6eafeceb1c979ef81 100644 (file)
@@ -332,9 +332,6 @@ static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
        case SR_DI_HWCAPS:
                *data = hwcaps;
                break;
-       case SR_DI_TRIGGER_SOURCES:
-               *data = trigger_sources;
-               break;
        default:
                return SR_ERR_ARG;
        }
@@ -445,6 +442,9 @@ static int config_list(int key, const void **data, const struct sr_dev_inst *sdi
        case SR_CONF_TIMEBASE:
                *data = timebases;
                break;
+       case SR_CONF_TRIGGER_SOURCE:
+               *data = trigger_sources;
+               break;
        default:
                return SR_ERR_ARG;
        }
index 88faae2536bc5937fbe62ed6b77228c53e96bc07..9b40230ad3544a93347c9455508a306b42c5a06b 100644 (file)
@@ -553,8 +553,6 @@ enum {
        SR_DI_HWCAPS,
        /** Types of logic trigger supported, out of "01crf" (char *). */
        SR_DI_TRIGGER_TYPES,
-       /** Supported trigger sources. */
-       SR_DI_TRIGGER_SOURCES,
 };
 
 /*