]> sigrok.org Git - libsigrok.git/blame - src/hardware/korad-kaxxxxp/protocol.h
kingst-la2016: add another supported LA5016 model (bytes 0x0c 0x10)
[libsigrok.git] / src / hardware / korad-kaxxxxp / protocol.h
CommitLineData
e75ee7de
HV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2015 Hannu Vuolasaho <vuokkosetae@gmail.com>
2e129b8b 5 * Copyright (C) 2018-2019 Frank Stettner <frank-stettner@gmx.net>
e75ee7de
HV
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
16fc7ee2
UH
21#ifndef LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
22#define LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
e75ee7de
HV
23
24#include <stdint.h>
d7083042 25#include <string.h>
e75ee7de
HV
26#include <glib.h>
27#include <libsigrok/libsigrok.h>
28#include "libsigrok-internal.h"
29
16fc7ee2 30#define LOG_PREFIX "korad-kaxxxxp"
e75ee7de 31
16fc7ee2 32#define KAXXXXP_POLL_INTERVAL_MS 80
d7083042
HV
33
34enum {
ae9ca5b1
UH
35 VELLEMAN_PS3005D,
36 VELLEMAN_LABPS3005D,
bcf9384d 37 KORAD_KA3005P,
a078d3ec 38 KORAD_KA3005P_0X01,
1c0e1baa 39 KORAD_KA3005P_0XBC,
7415217e 40 KORAD_KA3005P_V42,
8b58a519 41 KORAD_KA3005P_V55,
d154c6b6 42 KORAD_KD3005P_V20,
76f712a7 43 KORAD_KD3005P_V20_NOSP,
051d85f2 44 KORAD_KD3005P_V21_NOSP,
d154c6b6 45 KORAD_KD3005P_V41,
cf6beeb2 46 RND_320_KD3005P,
c8dcd3ab 47 RND_320_KA3005P,
e843992d 48 RND_320K30PV,
f5083435 49 TENMA_72_2550_V2,
0540954d
UH
50 TENMA_72_2540_V20,
51 TENMA_72_2540_V21,
082ca8d8 52 TENMA_72_2540_V52,
ddbe6880 53 TENMA_72_2535_V21,
909a41c5 54 TENMA_72_2710_V66,
27a9b663 55 STAMOS_SLS31_V20,
b1b8a7d0 56 KORAD_KD6005P,
d7083042
HV
57 /* Support for future devices with this protocol. */
58};
59
60/* Information on single model */
16fc7ee2 61struct korad_kaxxxxp_model {
d7083042 62 int model_id; /**< Model info */
2c240774
UH
63 const char *vendor; /**< Vendor name */
64 const char *name; /**< Model name */
65 const char *id; /**< Model ID, as delivered by interface */
d7083042
HV
66 int channels; /**< Number of channels */
67 double voltage[3]; /**< Min, max, step */
68 double current[3]; /**< Min, max, step */
69};
70
71/* Reply targets */
72enum {
16fc7ee2 73 KAXXXXP_CURRENT,
8da30037 74 KAXXXXP_CURRENT_LIMIT,
16fc7ee2 75 KAXXXXP_VOLTAGE,
8da30037 76 KAXXXXP_VOLTAGE_TARGET,
16fc7ee2
UH
77 KAXXXXP_STATUS,
78 KAXXXXP_OUTPUT,
79 KAXXXXP_BEEP,
80 KAXXXXP_OCP,
81 KAXXXXP_OVP,
82 KAXXXXP_SAVE,
83 KAXXXXP_RECALL,
d7083042
HV
84};
85
e75ee7de 86struct dev_context {
16fc7ee2 87 const struct korad_kaxxxxp_model *model; /**< Model information. */
e75ee7de 88
597deef9 89 struct sr_sw_limits limits;
d7083042 90 int64_t req_sent_at;
3f9b48ae 91 GMutex rw_mutex;
d7083042 92
d7083042 93 float current; /**< Last current value [A] read from device. */
8da30037 94 float current_limit; /**< Output current set. */
d7083042 95 float voltage; /**< Last voltage value [V] read from device. */
8da30037 96 float voltage_target; /**< Output voltage set. */
d7083042 97 gboolean cc_mode[2]; /**< Device is in CC mode (otherwise CV). */
e75ee7de 98
d7083042
HV
99 gboolean output_enabled; /**< Is the output enabled? */
100 gboolean beep_enabled; /**< Enable beeper. */
9e5366df
UH
101 gboolean ocp_enabled; /**< Output current protection enabled. */
102 gboolean ovp_enabled; /**< Output voltage protection enabled. */
e75ee7de 103
2e129b8b
FS
104 gboolean cc_mode_1_changed; /**< CC mode of channel 1 has changed. */
105 gboolean cc_mode_2_changed; /**< CC mode of channel 2 has changed. */
106 gboolean output_enabled_changed; /**< Output enabled state has changed. */
107 gboolean ocp_enabled_changed; /**< OCP enabled state has changed. */
108 gboolean ovp_enabled_changed; /**< OVP enabled state has changed. */
109
3f9b48ae 110 int acquisition_target; /**< What reply to expect. */
d7083042 111 int program; /**< Program to store or recall. */
8da30037
FS
112
113 float set_current_limit; /**< New output current to set. */
114 float set_voltage_target; /**< New output voltage to set. */
115 gboolean set_output_enabled; /**< New output enabled to set. */
116 gboolean set_beep_enabled; /**< New enable beeper to set. */
117 gboolean set_ocp_enabled; /**< New OCP enabled to set. */
118 gboolean set_ovp_enabled; /**< New OVP enabled to set. */
e75ee7de
HV
119};
120
16fc7ee2 121SR_PRIV int korad_kaxxxxp_send_cmd(struct sr_serial_dev_inst *serial,
d7083042 122 const char *cmd);
16fc7ee2 123SR_PRIV int korad_kaxxxxp_read_chars(struct sr_serial_dev_inst *serial,
d2cc60bd 124 size_t count, char *buf);
16fc7ee2 125SR_PRIV int korad_kaxxxxp_set_value(struct sr_serial_dev_inst *serial,
3f9b48ae
FS
126 int target, struct dev_context *devc);
127SR_PRIV int korad_kaxxxxp_get_value(struct sr_serial_dev_inst *serial,
128 int target, struct dev_context *devc);
16fc7ee2 129SR_PRIV int korad_kaxxxxp_get_all_values(struct sr_serial_dev_inst *serial,
d7083042 130 struct dev_context *devc);
16fc7ee2 131SR_PRIV int korad_kaxxxxp_receive_data(int fd, int revents, void *cb_data);
e75ee7de
HV
132
133#endif