]> sigrok.org Git - libsigrok.git/blob - src/hardware/hantek-4032l/protocol.h
hantek-4032l: Unify style.
[libsigrok.git] / src / hardware / hantek-4032l / protocol.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2016 Andreas Zschunke <andreas.zschunke@gmx.net>
5  * Copyright (C) 2017 Andrej Valek <andy@skyrain.eu>
6  * Copyright (C) 2017 Uwe Hermann <uwe@hermann-uwe.de>
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_HANTEK_4032L_PROTOCOL_H
23 #define LIBSIGROK_HARDWARE_HANTEK_4032L_PROTOCOL_H
24
25 #include <stdint.h>
26 #include <glib.h>
27 #include <string.h>
28 #include <libsigrok/libsigrok.h>
29 #include "libsigrok-internal.h"
30
31 #define LOG_PREFIX "hantek-4032l"
32
33 #define H4032L_USB_VENDOR 0x04b5
34 #define H4032L_USB_PRODUCT 0x4032
35
36 #define H4032L_CMD_PKT_MAGIC 0x017f
37 #define H4032L_STATUS_PACKET_MAGIC 0x2B1A037F
38 #define H4032L_START_PACKET_MAGIC 0x2B1A027F
39 #define H4032L_END_PACKET_MAGIC 0x4D3C037F
40
41 enum h4032l_trigger_edge_type {
42         H4032L_TRIGGER_EDGE_TYPE_RISE,
43         H4032L_TRIGGER_EDGE_TYPE_FALL,
44         H4032L_TRIGGER_EDGE_TYPE_TOGGLE,
45         H4032L_TRIGGER_EDGE_TYPE_DISABLED
46 };
47
48 enum h4032l_trigger_data_range_type {
49         H4032L_TRIGGER_DATA_RANGE_TYPE_MAX,
50         H4032L_TRIGGER_DATA_RANGE_TYPE_MIN_OR_MAX,
51         H4032L_TRIGGER_DATA_RANGE_TYPE_OUT_OF_RANGE,
52         H4032L_TRIGGER_DATA_RANGE_TYPE_WITHIN_RANGE
53 };
54
55 enum h4032l_trigger_time_range_type {
56         H4032L_TRIGGER_TIME_RANGE_TYPE_MAX,
57         H4032L_TRIGGER_TIME_RANGE_TYPE_MIN_OR_MAX,
58         H4032L_TRIGGER_TIME_RANGE_TYPE_OUT_OF_RANGE,
59         H4032L_TRIGGER_TIME_RANGE_TYPE_WITHIN_RANGE
60 };
61
62 enum h4032l_trigger_data_selection {
63         H4032L_TRIGGER_DATA_SELECTION_NEXT,
64         H4032L_TRIGGER_DATA_SELECTION_CURRENT,
65         H4032L_TRIGGER_DATA_SELECTION_PREV
66 };
67
68 enum h4032l_status {
69         H4032L_STATUS_IDLE,
70         H4032L_STATUS_CMD_CONFIGURE,
71         H4032L_STATUS_CMD_STATUS,
72         H4032L_STATUS_RESPONSE_STATUS,
73         H4032L_STATUS_RESPONSE_STATUS_RETRY,
74         H4032L_STATUS_RESPONSE_STATUS_CONTINUE,
75         H4032L_STATUS_CMD_GET,
76         H4032L_STATUS_FIRST_TRANSFER,
77         H4032L_STATUS_TRANSFER
78 };
79
80 #pragma pack(push,2)
81 struct h4032l_trigger {
82         struct {
83                 uint32_t edge_signal:5;
84                 uint32_t edge_type:2;
85                 uint32_t :1;
86                 uint32_t data_range_type:2;
87                 uint32_t time_range_type:2;
88                 uint32_t data_range_enabled:1;
89                 uint32_t time_range_enabled:1;
90                 uint32_t :2;
91                 uint32_t data_sel:2;
92                 uint32_t combined_enabled:1;
93         } flags;
94         uint32_t data_range_min;
95         uint32_t data_range_max;
96         uint32_t time_range_min;
97         uint32_t time_range_max;
98         uint32_t data_range_mask;
99         uint32_t combine_mask;
100         uint32_t combine_data;
101 };
102
103 struct h4032l_cmd_pkt {
104         uint16_t magic; /* 0x017f */
105         uint8_t sample_rate;
106         struct {
107                 uint8_t enable_trigger1:1;
108                 uint8_t enable_trigger2:1;
109                 uint8_t trigger_and_logic:1;
110         } trig_flags;
111         uint16_t pwm_a;
112         uint16_t pwm_b;
113         uint16_t reserved;
114         uint32_t sample_size; /* Sample depth in bits per channel, 2k-64M, must be multiple of 512. */
115         uint32_t pre_trigger_size; /* Pretrigger buffer depth in bits, must be < sample_size. */
116         struct h4032l_trigger trigger[2];
117         uint16_t cmd;
118 };
119 #pragma pack(pop)
120
121 struct dev_context {
122         enum h4032l_status status;
123         uint32_t remaining_samples;
124         gboolean acq_aborted;
125         struct h4032l_cmd_pkt cmd_pkt;
126         struct libusb_transfer *usb_transfer;
127         uint8_t buffer[512];
128         uint64_t capture_ratio;
129 };
130
131 SR_PRIV int h4032l_receive_data(int fd, int revents, void *cb_data);
132 SR_PRIV uint16_t h4032l_voltage2pwm(double voltage);
133 SR_PRIV void LIBUSB_CALL h4032l_usb_callback(struct libusb_transfer *transfer);
134 SR_PRIV int h4032l_start(const struct sr_dev_inst *sdi);
135 SR_PRIV int h4032l_dev_open(struct sr_dev_inst *sdi);
136
137 #endif