]> sigrok.org Git - libsigrok.git/blobdiff - hardware/fluke-dmm/fluke-dmm.h
GPL headers: Use correct project name.
[libsigrok.git] / hardware / fluke-dmm / fluke-dmm.h
index 1d77ac857869ab5f8a25b3bc347e2fb8b56bf778..152e09c4dcc9135e358c4bed056cbd17c0fbd271 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
  * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
  *
@@ -36,6 +36,7 @@
 enum {
        FLUKE_187 = 1,
        FLUKE_287,
+       FLUKE_190,
 };
 
 /* Supported device profiles */
@@ -53,7 +54,6 @@ struct dev_context {
        const struct flukedmm_profile *profile;
        uint64_t limit_samples;
        uint64_t limit_msec;
-       struct sr_serial_dev_inst *serial;
 
        /* Opaque pointer passed in by the frontend. */
        void *cb_data;
@@ -64,6 +64,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);