]> sigrok.org Git - libsigrok.git/blob - src/hardware/korad-kaxxxxp/protocol.h
korad-kaxxxxp: Add support for Korad KD3005P
[libsigrok.git] / src / hardware / korad-kaxxxxp / protocol.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2015 Hannu Vuolasaho <vuokkosetae@gmail.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
21 #define LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
22
23 #include <stdint.h>
24 #include <string.h>
25 #include <glib.h>
26 #include <libsigrok/libsigrok.h>
27 #include "libsigrok-internal.h"
28
29 #define LOG_PREFIX "korad-kaxxxxp"
30
31 #define KAXXXXP_POLL_INTERVAL_MS 80
32
33 enum {
34         VELLEMAN_PS3005D,
35         VELLEMAN_LABPS3005D,
36         KORAD_KA3005P,
37         KORAD_KA3005P_0X01,
38         KORAD_KD3005P,
39         /* Support for future devices with this protocol. */
40 };
41
42 /* Information on single model */
43 struct korad_kaxxxxp_model {
44         int model_id; /**< Model info */
45         const char *vendor; /**< Vendor name */
46         const char *name; /**< Model name */
47         const char *id; /**< Model ID, as delivered by interface */
48         int channels; /**< Number of channels */
49         double voltage[3]; /**< Min, max, step */
50         double current[3]; /**< Min, max, step */
51 };
52
53 /* Reply targets */
54 enum {
55         KAXXXXP_CURRENT,
56         KAXXXXP_CURRENT_MAX,
57         KAXXXXP_VOLTAGE,
58         KAXXXXP_VOLTAGE_MAX,
59         KAXXXXP_STATUS,
60         KAXXXXP_OUTPUT,
61         KAXXXXP_BEEP,
62         KAXXXXP_OCP,
63         KAXXXXP_OVP,
64         KAXXXXP_SAVE,
65         KAXXXXP_RECALL,
66 };
67
68 struct dev_context {
69         const struct korad_kaxxxxp_model *model; /**< Model information. */
70
71         struct sr_sw_limits limits;
72         int64_t req_sent_at;
73         gboolean reply_pending;
74
75         float current;          /**< Last current value [A] read from device. */
76         float current_max;      /**< Output current set. */
77         float voltage;          /**< Last voltage value [V] read from device. */
78         float voltage_max;      /**< Output voltage set. */
79         gboolean cc_mode[2];    /**< Device is in CC mode (otherwise CV). */
80
81         gboolean output_enabled; /**< Is the output enabled? */
82         gboolean beep_enabled;   /**< Enable beeper. */
83         gboolean ocp_enabled;    /**< Output current protection enabled. */
84         gboolean ovp_enabled;    /**< Output voltage protection enabled. */
85
86         int target;              /**< What reply to expect. */
87         int program;             /**< Program to store or recall. */
88         char reply[6];
89 };
90
91 SR_PRIV int korad_kaxxxxp_send_cmd(struct sr_serial_dev_inst *serial,
92                                         const char *cmd);
93 SR_PRIV int korad_kaxxxxp_read_chars(struct sr_serial_dev_inst *serial,
94                                         int count, char *buf);
95 SR_PRIV int korad_kaxxxxp_set_value(struct sr_serial_dev_inst *serial,
96                                         struct dev_context *devc);
97 SR_PRIV int korad_kaxxxxp_query_value(struct sr_serial_dev_inst *serial,
98                                         struct dev_context *devc);
99 SR_PRIV int korad_kaxxxxp_get_reply(struct sr_serial_dev_inst *serial,
100                                         struct dev_context *devc);
101 SR_PRIV int korad_kaxxxxp_get_all_values(struct sr_serial_dev_inst *serial,
102                                         struct dev_context *devc);
103 SR_PRIV int korad_kaxxxxp_receive_data(int fd, int revents, void *cb_data);
104
105 #endif