]> sigrok.org Git - libsigrok.git/blame - src/hardware/korad-kaxxxxp/protocol.h
Makefile.am: Add/update udev rules files.
[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>
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
16fc7ee2
UH
20#ifndef LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_KORAD_KAXXXXP_PROTOCOL_H
e75ee7de
HV
22
23#include <stdint.h>
d7083042 24#include <string.h>
e75ee7de
HV
25#include <glib.h>
26#include <libsigrok/libsigrok.h>
27#include "libsigrok-internal.h"
28
16fc7ee2 29#define LOG_PREFIX "korad-kaxxxxp"
e75ee7de 30
16fc7ee2 31#define KAXXXXP_POLL_INTERVAL_MS 80
d7083042
HV
32
33enum {
ae9ca5b1
UH
34 VELLEMAN_PS3005D,
35 VELLEMAN_LABPS3005D,
bcf9384d 36 KORAD_KA3005P,
a078d3ec 37 KORAD_KA3005P_0X01,
d7083042
HV
38 /* Support for future devices with this protocol. */
39};
40
41/* Information on single model */
16fc7ee2 42struct korad_kaxxxxp_model {
d7083042 43 int model_id; /**< Model info */
2c240774
UH
44 const char *vendor; /**< Vendor name */
45 const char *name; /**< Model name */
46 const char *id; /**< Model ID, as delivered by interface */
d7083042
HV
47 int channels; /**< Number of channels */
48 double voltage[3]; /**< Min, max, step */
49 double current[3]; /**< Min, max, step */
50};
51
52/* Reply targets */
53enum {
16fc7ee2
UH
54 KAXXXXP_CURRENT,
55 KAXXXXP_CURRENT_MAX,
56 KAXXXXP_VOLTAGE,
57 KAXXXXP_VOLTAGE_MAX,
58 KAXXXXP_STATUS,
59 KAXXXXP_OUTPUT,
60 KAXXXXP_BEEP,
61 KAXXXXP_OCP,
62 KAXXXXP_OVP,
63 KAXXXXP_SAVE,
64 KAXXXXP_RECALL,
d7083042
HV
65};
66
e75ee7de 67struct dev_context {
16fc7ee2 68 const struct korad_kaxxxxp_model *model; /**< Model information. */
e75ee7de 69
597deef9 70 struct sr_sw_limits limits;
d7083042
HV
71 int64_t req_sent_at;
72 gboolean reply_pending;
73
d7083042
HV
74 float current; /**< Last current value [A] read from device. */
75 float current_max; /**< Output current set. */
76 float voltage; /**< Last voltage value [V] read from device. */
77 float voltage_max; /**< Output voltage set. */
78 gboolean cc_mode[2]; /**< Device is in CC mode (otherwise CV). */
e75ee7de 79
d7083042
HV
80 gboolean output_enabled; /**< Is the output enabled? */
81 gboolean beep_enabled; /**< Enable beeper. */
9e5366df
UH
82 gboolean ocp_enabled; /**< Output current protection enabled. */
83 gboolean ovp_enabled; /**< Output voltage protection enabled. */
e75ee7de 84
9e5366df 85 int target; /**< What reply to expect. */
d7083042
HV
86 int program; /**< Program to store or recall. */
87 char reply[6];
e75ee7de
HV
88};
89
16fc7ee2 90SR_PRIV int korad_kaxxxxp_send_cmd(struct sr_serial_dev_inst *serial,
d7083042 91 const char *cmd);
16fc7ee2 92SR_PRIV int korad_kaxxxxp_read_chars(struct sr_serial_dev_inst *serial,
d7083042 93 int count, char *buf);
16fc7ee2 94SR_PRIV int korad_kaxxxxp_set_value(struct sr_serial_dev_inst *serial,
d7083042 95 struct dev_context *devc);
16fc7ee2 96SR_PRIV int korad_kaxxxxp_query_value(struct sr_serial_dev_inst *serial,
d7083042 97 struct dev_context *devc);
16fc7ee2 98SR_PRIV int korad_kaxxxxp_get_reply(struct sr_serial_dev_inst *serial,
d7083042 99 struct dev_context *devc);
16fc7ee2 100SR_PRIV int korad_kaxxxxp_get_all_values(struct sr_serial_dev_inst *serial,
d7083042 101 struct dev_context *devc);
16fc7ee2 102SR_PRIV int korad_kaxxxxp_receive_data(int fd, int revents, void *cb_data);
e75ee7de
HV
103
104#endif