]> sigrok.org Git - libsigrok.git/blame - src/hardware/manson-hcs-3xxx/protocol.h
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / hardware / manson-hcs-3xxx / protocol.h
CommitLineData
8f4e922f
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
25abc8dd 5 * Copyright (C) 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
8f4e922f
UH
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 2 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, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
9740d9bf
MH
22/** @file
23 * <em>Manson HCS-3xxx Series</em> power supply driver
24 * @internal
25 */
26
8f4e922f
UH
27#ifndef LIBSIGROK_HARDWARE_MANSON_HCS_3XXX_PROTOCOL_H
28#define LIBSIGROK_HARDWARE_MANSON_HCS_3XXX_PROTOCOL_H
29
30#include <stdint.h>
b5e92647
UH
31#include <string.h>
32#include <math.h>
8f4e922f 33#include <glib.h>
c1aae900 34#include <libsigrok/libsigrok.h>
8f4e922f
UH
35#include "libsigrok-internal.h"
36
37#define LOG_PREFIX "manson-hcs-3xxx"
38
b5e92647 39enum {
25abc8dd
MH
40 MANSON_HCS_3100,
41 MANSON_HCS_3102,
42 MANSON_HCS_3104,
43 MANSON_HCS_3150,
b5e92647
UH
44 MANSON_HCS_3200,
45 MANSON_HCS_3202,
46 MANSON_HCS_3204,
25abc8dd
MH
47 MANSON_HCS_3300,
48 MANSON_HCS_3302,
49 MANSON_HCS_3304,
50 MANSON_HCS_3400,
51 MANSON_HCS_3402,
52 MANSON_HCS_3404,
53 MANSON_HCS_3600,
54 MANSON_HCS_3602,
55 MANSON_HCS_3604,
b5e92647
UH
56};
57
9740d9bf 58/** Information on a single model. */
b5e92647 59struct hcs_model {
25abc8dd
MH
60 int model_id; /**< Model info */
61 char *name; /**< Model name */
62 char *id; /**< Model ID, like delivered by interface */
63 double voltage[3]; /**< Min, max, step */
64 double current[3]; /**< Min, max, step */
b5e92647
UH
65};
66
8f4e922f
UH
67/** Private, per-device-instance driver context. */
68struct dev_context {
f3f19d11 69 const struct hcs_model *model; /**< Model information. */
b5e92647
UH
70
71 uint64_t limit_samples;
72 uint64_t limit_msec;
73 uint64_t num_samples;
74 int64_t starttime;
75 int64_t req_sent_at;
76 gboolean reply_pending;
77
78 void *cb_data;
79
9740d9bf 80 float current; /**< Last current value [A] read from device. */
5437a0ad
MH
81 float current_max; /**< Output current set. */
82 float current_max_device;/**< Device-provided maximum output current. */
811d6255 83 float voltage; /**< Last voltage value [V] read from device. */
5437a0ad
MH
84 float voltage_max; /**< Output voltage set. */
85 float voltage_max_device;/**< Device-provided maximum output voltage. */
9740d9bf
MH
86 gboolean cc_mode; /**< Device is in constant current mode (otherwise constant voltage). */
87
88 gboolean output_enabled; /**< Is the output enabled? */
b5e92647
UH
89
90 char buf[50];
91 int buflen;
8f4e922f
UH
92};
93
9740d9bf 94SR_PRIV int hcs_parse_volt_curr_mode(struct sr_dev_inst *sdi, char **tokens);
c442ffda 95SR_PRIV int hcs_read_reply(struct sr_serial_dev_inst *serial, int lines, char *buf, int buflen);
9740d9bf 96SR_PRIV int hcs_send_cmd(struct sr_serial_dev_inst *serial, const char *cmd, ...);
b5e92647 97SR_PRIV int hcs_receive_data(int fd, int revents, void *cb_data);
8f4e922f
UH
98
99#endif