]> sigrok.org Git - libsigrok.git/blobdiff - hardware/fluke-dmm/fluke-dmm.h
asix-sigma: Adjust to GVariant-based sr_config_* functions
[libsigrok.git] / hardware / fluke-dmm / fluke-dmm.h
index 2dc6af57ed6d81da171193a68ff510494a1900a5..ec48678d6e33e66ae694e82c741c15ed838d7a5b 100644 (file)
@@ -36,6 +36,7 @@
 enum {
        FLUKE_187 = 1,
        FLUKE_287,
+       FLUKE_190,
 };
 
 /* Supported device profiles */
@@ -44,6 +45,8 @@ struct flukedmm_profile {
        const char *modelname;
        /* How often to poll, in ms. */
        int poll_period;
+       /* If no response received, how long to wait before retrying. */
+       int timeout;
 };
 
 /* Private, per-device-instance driver context. */
@@ -62,6 +65,11 @@ struct dev_context {
        int buflen;
        int64_t cmd_sent_at;
        int expect_response;
+       int meas_type;
+       int is_relative;
+       int mq;
+       int unit;
+       int mqflags;
 };
 
 SR_PRIV int fluke_receive_data(int fd, int revents, void *cb_data);