]> sigrok.org Git - libsigrok.git/blame - src/hardware/zeroplus-logic-cube/analyzer.h
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / zeroplus-logic-cube / analyzer.h
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
fed16f06
UH
3 *
4 * Copyright (C) 2010 Sven Peter <sven@fail0verflow.com>
5 * Copyright (C) 2010 Haxx Enterprises <bushing@gmail.com>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or
9 * without modification, are permitted provided that the following
10 * conditions are met:
11 *
12 * * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 * THE POSSIBILITY OF SUCH DAMAGE.
30 */
a1bb33af 31
0f8522bf
UH
32#ifndef LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_ANALYZER_H
33#define LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_ANALYZER_H
fed16f06 34
a1bb33af 35#include <libusb.h>
c1aae900 36#include <libsigrok/libsigrok.h>
a1bb33af 37
fed16f06
UH
38#define STATUS_FLAG_NONE 0x00
39#define STATUS_FLAG_RESET 0x01
40#define STATUS_FLAG_INIT 0x02
41#define STATUS_FLAG_GO 0x04
42#define STATUS_FLAG_PAUSE 0x08
43#define STATUS_FLAG_READ 0x10
44#define STATUS_FLAG_20 0x20
45
3e43da1f 46/* In bytes */
fed16f06
UH
47#define MEMORY_SIZE_8K 0x00
48#define MEMORY_SIZE_64K 0x01
49#define MEMORY_SIZE_128K 0x02
3e43da1f 50#define MEMORY_SIZE_256K 0x03
fed16f06 51#define MEMORY_SIZE_512K 0x04
3e43da1f
RD
52#define MEMORY_SIZE_1M 0x05
53#define MEMORY_SIZE_2M 0x06
54#define MEMORY_SIZE_4M 0x07
55#define MEMORY_SIZE_8M 0x08
a1bb33af 56
fed16f06
UH
57#define STATUS_BUSY 0x01 /* WTF / ??? */
58#define STATUS_READY 0x02
59#define STATUS_BUTTON_PRESSED 0x04
a1bb33af 60
fed16f06
UH
61#define CHANNEL_A 0x1000
62#define CHANNEL_B 0x2000
63#define CHANNEL_C 0x3000
64#define CHANNEL_D 0x4000
a1bb33af 65
fed16f06
UH
66#define FREQ_SCALE_HZ 0
67#define FREQ_SCALE_KHZ 1
68#define FREQ_SCALE_MHZ 2
a1bb33af 69
fed16f06
UH
70#define FILTER_HIGH 0
71#define FILTER_LOW 1
a1bb33af 72
fed16f06
UH
73#define COMPRESSION_NONE 0x0001
74#define COMPRESSION_ENABLE 0x8001
75#define COMPRESSION_DOUBLE 0x8002
a1bb33af 76
ca070ed9
UH
77SR_PRIV void analyzer_set_freq(int freq, int scale);
78SR_PRIV void analyzer_set_ramsize_trigger_address(unsigned int address);
79SR_PRIV void analyzer_set_triggerbar_address(unsigned int address);
d9251a2c 80SR_PRIV unsigned int analyzer_get_ramsize_trigger_address(void );
a864a05b 81SR_PRIV unsigned int analyzer_get_triggerbar_address(void);
ca070ed9
UH
82SR_PRIV void analyzer_set_compression(unsigned int type);
83SR_PRIV void analyzer_set_memory_size(unsigned int size);
28731bab 84SR_PRIV int analyzer_add_triggers(const struct sr_dev_inst *sdi);
ca070ed9
UH
85SR_PRIV void analyzer_set_trigger_count(int count);
86SR_PRIV void analyzer_add_filter(int channel, int type);
7142d6b9 87SR_PRIV void analyzer_set_voltage_threshold(int thresh);
a1bb33af 88
0ab0cb94 89SR_PRIV unsigned int analyzer_read_status(libusb_device_handle *devh);
ca070ed9
UH
90SR_PRIV unsigned int analyzer_read_id(libusb_device_handle *devh);
91SR_PRIV unsigned int analyzer_get_stop_address(libusb_device_handle *devh);
92SR_PRIV unsigned int analyzer_get_now_address(libusb_device_handle *devh);
93SR_PRIV unsigned int analyzer_get_trigger_address(libusb_device_handle *devh);
94SR_PRIV int analyzer_decompress(void *input, unsigned int input_len,
95 void *output, unsigned int output_len);
a1bb33af 96
ca070ed9
UH
97SR_PRIV void analyzer_reset(libusb_device_handle *devh);
98SR_PRIV void analyzer_initialize(libusb_device_handle *devh);
99SR_PRIV void analyzer_wait(libusb_device_handle *devh, int set, int unset);
100SR_PRIV void analyzer_read_start(libusb_device_handle *devh);
101SR_PRIV int analyzer_read_data(libusb_device_handle *devh, void *buffer,
d9251a2c 102 unsigned int size);
ca070ed9
UH
103SR_PRIV void analyzer_read_stop(libusb_device_handle *devh);
104SR_PRIV void analyzer_start(libusb_device_handle *devh);
105SR_PRIV void analyzer_configure(libusb_device_handle *devh);
a1bb33af 106
ca070ed9
UH
107SR_PRIV void analyzer_wait_button(libusb_device_handle *devh);
108SR_PRIV void analyzer_wait_data(libusb_device_handle *devh);
fed16f06 109
a1bb33af 110#endif