]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/manson-hcs-3xxx/protocol.h
Constify a lot more items.
[libsigrok.git] / src / hardware / manson-hcs-3xxx / protocol.h
index b4441d070658d65f23187a6556492bb2703be536..8e614ce2a335621932a9869c99358d6aea5ac268 100644 (file)
@@ -31,7 +31,7 @@
 #include <string.h>
 #include <math.h>
 #include <glib.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
 #define LOG_PREFIX "manson-hcs-3xxx"
@@ -58,15 +58,15 @@ enum {
 /** Information on a single model. */
 struct hcs_model {
        int model_id;      /**< Model info */
-       char *name;        /**< Model name */
-       char *id;          /**< Model ID, like delivered by interface */
+       const char *name;  /**< Model name */
+       const char *id;    /**< Model ID, like delivered by interface */
        double voltage[3]; /**< Min, max, step */
        double current[3]; /**< Min, max, step */
 };
 
 /** Private, per-device-instance driver context. */
 struct dev_context {
-       struct hcs_model *model; /**< Model informaion. */
+       const struct hcs_model *model; /**< Model information. */
 
        uint64_t limit_samples;
        uint64_t limit_msec;
@@ -92,7 +92,7 @@ struct dev_context {
 };
 
 SR_PRIV int hcs_parse_volt_curr_mode(struct sr_dev_inst *sdi, char **tokens);
-SR_PRIV int hcs_read_reply(struct sr_serial_dev_inst *serial, int lines, charbuf, int buflen);
+SR_PRIV int hcs_read_reply(struct sr_serial_dev_inst *serial, int lines, char *buf, int buflen);
 SR_PRIV int hcs_send_cmd(struct sr_serial_dev_inst *serial, const char *cmd, ...);
 SR_PRIV int hcs_receive_data(int fd, int revents, void *cb_data);