]> sigrok.org Git - libsigrok.git/blobdiff - libsigrok.h
Minor documentation fixes
[libsigrok.git] / libsigrok.h
index 7019fdb21e7685292cc3136a7db7f3c5c165e837..b686c6e5463c8a37680fda29a0566756489888a1 100644 (file)
@@ -142,6 +142,7 @@ enum {
        SR_T_RATIONAL_VOLT,
        SR_T_KEYVALUE,
        SR_T_UINT64_RANGE,
+       SR_T_DOUBLE_RANGE,
 };
 
 /** Value for sr_datafeed_packet.type. */
@@ -627,6 +628,14 @@ enum {
        /** The device supports setting a pattern (pattern generator mode). */
        SR_CONF_PATTERN_MODE,
 
+       /** The devices supports using a external clock. */
+       SR_CONF_EXTERNAL_CLOCK,
+
+       /** The device supports swapping channels. Typical this is between
+        *  buffered and unbuffered channels.
+        */
+       SR_CONF_SWAP,
+
        /** The device supports Run Length Encoding. */
        SR_CONF_RLE,
 
@@ -681,6 +690,9 @@ enum {
        /** Min hold mode. */
        SR_CONF_HOLD_MIN,
 
+       /** Logic low-high threshold range. */
+       SR_CONF_VOLTAGE_THRESHOLD,
+
        /*--- Special stuff -------------------------------------------------*/
 
        /** Scan options supported by the driver. */
@@ -704,6 +716,18 @@ enum {
        /** Power off the device. */
        SR_CONF_POWER_OFF,
 
+       /** Data source for acquisition. If not present, acquisition from
+        * the device is always "live", i.e. acquisition starts when the
+        * frontend asks and the results are sent out as soon as possible.
+        *
+        * If present, it indicates that either the device has no live
+        * acquisition capability (for example a pure data logger), or
+        * there is a choice. sr_config_list() returns those choices.
+        *
+        * In any case if a device has live acquisition capabilities, it
+        * is always the default. */
+       SR_CONF_DATA_SOURCE,
+
        /*--- Acquisition modes ---------------------------------------------*/
 
        /**
@@ -806,6 +830,7 @@ struct sr_session {
        /** List of struct datafeed_callback pointers. */
        GSList *datafeed_callbacks;
        GTimeVal starttime;
+       gboolean running;
 
        unsigned int num_sources;