]> sigrok.org Git - libsigrok.git/blame_incremental - src/hardware/rdtech-dps/protocol.h
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / rdtech-dps / protocol.h
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2018 James Churchill <pelrun@gmail.com>
5 * Copyright (C) 2019 Frank Stettner <frank-stettner@gmx.net>
6 * Copyright (C) 2021 Gerhard Sittig <gerhard.sittig@gmx.net>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef LIBSIGROK_HARDWARE_RDTECH_DPS_PROTOCOL_H
23#define LIBSIGROK_HARDWARE_RDTECH_DPS_PROTOCOL_H
24
25#include "config.h"
26
27#include <glib.h>
28#include <libsigrok/libsigrok.h>
29#include <stdint.h>
30
31#include "libsigrok-internal.h"
32
33#define LOG_PREFIX "rdtech-dps"
34
35enum rdtech_dps_model_type {
36 MODEL_NONE,
37 MODEL_DPS,
38 MODEL_RD,
39};
40
41struct rdtech_dps_range {
42 const char *range_str;
43 unsigned int max_current;
44 unsigned int max_voltage;
45 unsigned int max_power;
46 unsigned int current_digits;
47 unsigned int voltage_digits;
48};
49
50struct rdtech_dps_model {
51 enum rdtech_dps_model_type model_type;
52 unsigned int id;
53 const char *name;
54 const struct rdtech_dps_range *ranges;
55 size_t n_ranges;
56};
57
58struct dev_context {
59 const struct rdtech_dps_model *model;
60 double current_multiplier;
61 double voltage_multiplier;
62 struct sr_sw_limits limits;
63 GMutex rw_mutex;
64 gboolean curr_ovp_state;
65 gboolean curr_ocp_state;
66 gboolean curr_cc_state;
67 gboolean curr_out_state;
68 size_t curr_range;
69 gboolean acquisition_started;
70};
71
72/* Container to get and set parameter values. */
73struct rdtech_dps_state {
74 enum rdtech_dps_state_mask {
75 STATE_LOCK = 1 << 0,
76 STATE_OUTPUT_ENABLED = 1 << 1,
77 STATE_REGULATION_CC = 1 << 2,
78 STATE_PROTECT_OVP = 1 << 3,
79 STATE_PROTECT_OCP = 1 << 4,
80 STATE_PROTECT_ENABLED = 1 << 5,
81 STATE_VOLTAGE_TARGET = 1 << 6,
82 STATE_CURRENT_LIMIT = 1 << 7,
83 STATE_OVP_THRESHOLD = 1 << 8,
84 STATE_OCP_THRESHOLD = 1 << 9,
85 STATE_VOLTAGE = 1 << 10,
86 STATE_CURRENT = 1 << 11,
87 STATE_POWER = 1 << 12,
88 STATE_RANGE = 1 << 13,
89 } mask;
90 gboolean lock;
91 gboolean output_enabled, regulation_cc;
92 gboolean protect_ovp, protect_ocp, protect_enabled;
93 float voltage_target, current_limit;
94 float ovp_threshold, ocp_threshold;
95 float voltage, current, power;
96 size_t range;
97};
98
99enum rdtech_dps_state_context {
100 ST_CTX_NONE,
101 ST_CTX_CONFIG,
102 ST_CTX_PRE_ACQ,
103 ST_CTX_IN_ACQ,
104};
105SR_PRIV int rdtech_dps_get_state(const struct sr_dev_inst *sdi,
106 struct rdtech_dps_state *state, enum rdtech_dps_state_context reason);
107SR_PRIV int rdtech_dps_set_state(const struct sr_dev_inst *sdi,
108 struct rdtech_dps_state *state);
109
110SR_PRIV int rdtech_dps_get_model_version(struct sr_modbus_dev_inst *modbus,
111 enum rdtech_dps_model_type model_type,
112 uint16_t *model, uint16_t *version, uint32_t *serno);
113SR_PRIV void rdtech_dps_update_multipliers(const struct sr_dev_inst *sdi);
114SR_PRIV int rdtech_dps_update_range(const struct sr_dev_inst *sdi);
115SR_PRIV int rdtech_dps_seed_receive(const struct sr_dev_inst *sdi);
116SR_PRIV int rdtech_dps_receive_data(int fd, int revents, void *cb_data);
117
118#endif